/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/GeometryCommonDetAlgo/interface/MeasurementError.h
24 строки
528 B
Cms Build
Clang-Format
09 май 2019, 07:14
09 май 2019, 07:14
57cea53
Код
Авторство
О чём код?
#ifndef MeasurementError_H #define MeasurementError_H /** A very simple class for 2D error matrix components, * used for the measurement frame. */ class MeasurementError { public: MeasurementError() : theuu(0), theuv(0), thevv(0) {} MeasurementError(float uu, float uv, float vv) : theuu(uu), theuv(uv), thevv(vv) {} float uu() const { return theuu; } float uv() const { return theuv; } float vv() const { return thevv; } private: float theuu; float theuv; float thevv; }; #endif // MeasurementError_H