PandaRoot
L1XYMeasurementInfo.h
Go to the documentation of this file.
1 #ifndef L1XYMeasurementInfo_h
2 #define L1XYMeasurementInfo_h 1
3 
5 
6  //* information about measurement
7 
8  public:
9  L1XYMeasurementInfo() : C00(Vc::Zero), C10(Vc::Zero), C11(Vc::Zero) {}
10 
11  L1XYMeasurementInfo(const float_v &c00, const float_v &c10, const float_v &c11) : C00(c00), C10(c10), C11(c11) {}
12 
13  float_v C00, C10, C11;
14 };
15 
16 #endif
L1XYMeasurementInfo(const float_v &c00, const float_v &c10, const float_v &c11)