CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OpticalAlignMeasurementInfo.h
Go to the documentation of this file.
1 #ifndef OpticalAlignMeasurementInfo_H
2 #define OpticalAlignMeasurementInfo_H
3 
4 #include <string>
5 #include <vector>
6 #include <iostream>
7 
10 
16 
17 std::ostream & operator<<(std::ostream &, const OpticalAlignMeasurementInfo &);
18 
19 // a Class holding data for an Optical Alignment Measurement
27  public:
30  std::vector<std::string> measObjectNames_;
31  std::vector<bool> isSimulatedValue_;
32  std::vector<OpticalAlignParam> values_; //names of measurement values (H:, V:, T:, ...) Dimension of this vector gives dimension of Measurement
33  unsigned int ID_;
34 
35  void clear() {
36  ID_ = 0;
37  type_ = "";
38  name_ = "";
39  measObjectNames_.clear();
40  values_.clear();
41  isSimulatedValue_.clear();
42  }
43 };
44 
45 #endif //OpticalAlignMeasureInfo_H
std::vector< std::string > measObjectNames_
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
std::vector< OpticalAlignParam > values_