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
float uu() const
float uv() const
float vv() const
MeasurementError(float uu, float uv, float vv)