CMS 3D CMS Logo

OpticalAlignMeasurementInfo.h
Go to the documentation of this file.
1 #ifndef OpticalAlignMeasurementInfo_H
2 #define OpticalAlignMeasurementInfo_H
3 
5 
6 #include <string>
7 #include <vector>
8 #include <iostream>
9 
12 
18 
19 std::ostream & operator<<(std::ostream &, const OpticalAlignMeasurementInfo &);
20 
21 // a Class holding data for an Optical Alignment Measurement
29  public:
32  std::vector<std::string> measObjectNames_;
33  std::vector<bool> isSimulatedValue_;
34  std::vector<OpticalAlignParam> values_; //names of measurement values (H:, V:, T:, ...) Dimension of this vector gives dimension of Measurement
35  unsigned int ID_;
36 
37  void clear() {
38  ID_ = 0;
39  type_ = "";
40  name_ = "";
41  measObjectNames_.clear();
42  values_.clear();
43  isSimulatedValue_.clear();
44  }
45 
47 };
48 
49 #endif //OpticalAlignMeasureInfo_H
std::vector< std::string > measObjectNames_
#define COND_SERIALIZABLE
Definition: Serializable.h:38
std::vector< OpticalAlignParam > values_
std::ostream & operator<<(std::ostream &, const OpticalAlignMeasurementInfo &)