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>
35  values_; //names of measurement values (H:, V:, T:, ...) Dimension of this vector gives dimension of Measurement
36  unsigned int ID_;
37 
38  void clear() {
39  ID_ = 0;
40  type_ = "";
41  name_ = "";
42  measObjectNames_.clear();
43  values_.clear();
44  isSimulatedValue_.clear();
45  }
46 
48 };
49 
50 #endif //OpticalAlignMeasureInfo_H
std::vector< std::string > measObjectNames_
#define COND_SERIALIZABLE
Definition: Serializable.h:39
std::vector< OpticalAlignParam > values_
std::ostream & operator<<(std::ostream &, const OpticalAlignMeasurementInfo &)