CMS 3D CMS Logo

MeasurementError.h
Go to the documentation of this file.
1 #ifndef MeasurementError_H
2 #define MeasurementError_H
3 
9 public:
10  MeasurementError() : theuu(0), theuv(0), thevv(0) {}
11 
12  MeasurementError(float uu, float uv, float vv) : theuu(uu), theuv(uv), thevv(vv) {}
13 
14  float uu() const { return theuu; }
15  float uv() const { return theuv; }
16  float vv() const { return thevv; }
17 
18 private:
19  float theuu;
20  float theuv;
21  float thevv;
22 };
23 
24 #endif // MeasurementError_H
MeasurementError::MeasurementError
MeasurementError()
Definition: MeasurementError.h:10
MeasurementError::thevv
float thevv
Definition: MeasurementError.h:21
MeasurementError::theuu
float theuu
Definition: MeasurementError.h:19
MeasurementError::theuv
float theuv
Definition: MeasurementError.h:20
MeasurementError
Definition: MeasurementError.h:8
MeasurementError::uv
float uv() const
Definition: MeasurementError.h:15
MeasurementError::MeasurementError
MeasurementError(float uu, float uv, float vv)
Definition: MeasurementError.h:12
MeasurementError::vv
float vv() const
Definition: MeasurementError.h:16
MeasurementError::uu
float uu() const
Definition: MeasurementError.h:14