CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MeasurementError.h
Go to the documentation of this file.
1 #ifndef MeasurementError_H
2 #define MeasurementError_H
3 
9 public:
10 
11  MeasurementError() : theuu(0), theuv(0), thevv(0) {}
12 
13  MeasurementError( float uu, float uv, float vv) :
14  theuu(uu), theuv(uv), thevv(vv) {}
15 
16  float uu() const { return theuu;}
17  float uv() const { return theuv;}
18  float vv() const { return thevv;}
19 
20 private:
21 
22  float theuu;
23  float theuv;
24  float thevv;
25 
26 };
27 
28 
29 #endif // MeasurementError_H
float vv() const
float uu() const
float uv() const
MeasurementError(float uu, float uv, float vv)