CMS 3D CMS Logo

TTUBoardSpecsIO.cc
Go to the documentation of this file.
1 // Include files
2 
3 // local
5 
6 //-----------------------------------------------------------------------------
7 // Implementation file for class : TTUBoardSpecsIO
8 //
9 // 2008-12-16 : Andres Osorio
10 //-----------------------------------------------------------------------------
11 
12 //=============================================================================
13 // Standard constructor, initializes variables
14 //=============================================================================
16 //=============================================================================
17 // Destructor
18 //=============================================================================
20 
21 //=============================================================================
22 std::istream &operator>>(std::istream &istr, TTUBoardSpecsIO::TTUBoardConfig &rhs) {
23  std::string logitype;
24 
25  istr >> rhs.m_runId;
26  istr >> rhs.m_runType;
27  istr >> rhs.m_triggerMode;
28  istr >> rhs.m_Firmware;
29  istr >> rhs.m_LengthOfFiber;
30  istr >> rhs.m_Delay;
31  istr >> rhs.m_MaxNumWheels;
32  istr >> rhs.m_Wheel1Id;
33  istr >> rhs.m_Wheel2Id;
34  istr >> logitype;
35  istr >> rhs.m_TrackLength;
36 
37  //...m_MaskedSectors is a vector of size 12
38  for (int i = 0; i < 12; ++i) {
39  int mask(0);
40  istr >> mask;
41  rhs.m_MaskedSectors.push_back(mask);
42  }
43 
44  //...m_ForcedSectors is a vector of size 12
45  for (int i = 0; i < 12; ++i) {
46  int force(0);
47  istr >> force;
48  rhs.m_ForcedSectors.push_back(force);
49  }
50 
51  rhs.m_LogicType = logitype;
52 
53  return istr;
54 }
~TTUBoardSpecsIO() override
Destructor.
constexpr uint32_t mask
Definition: gpuClustering.h:24
std::vector< int > m_ForcedSectors
Definition: TTUBoardSpecs.h:39
std::vector< int > m_MaskedSectors
Definition: TTUBoardSpecs.h:38
TTUBoardSpecsIO()
Standard constructor.
std::istream & operator>>(std::istream &istr, TTUBoardSpecsIO::TTUBoardConfig &rhs)