CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1GtEnergySumTemplate.cc
Go to the documentation of this file.
1 
17 // this class header
19 
20 // system include files
21 
22 #include <iostream>
23 #include <iomanip>
24 
25 // user include files
26 
27 // base class
28 
31 
32 // forward declarations
33 
34 // constructors
36  : L1GtCondition()
37 {
38 
40 
41 }
42 
44  : L1GtCondition(cName)
45 {
46 
48 
49 }
50 
51 L1GtEnergySumTemplate::L1GtEnergySumTemplate(const std::string& cName, const L1GtConditionType& cType)
52  : L1GtCondition(cName, CondEnergySum, cType)
53 {
54 
56 
57  // should be always 1 - they are global quantities...
58  int nObjects = nrObjects();
59 
60  if (nObjects > 0) {
61  m_objectParameter.reserve(nObjects);
62  m_objectType.reserve(nObjects);
63  }
64 
65 }
66 
67 // copy constructor
69  : L1GtCondition(cp.m_condName)
70 {
71  copy(cp);
72 }
73 
74 // destructor
76 {
77  // empty now
78 }
79 
80 // assign operator
82 {
83 
84  copy(cp);
85  return *this;
86 }
87 
88 
89 // setConditionParameter - set the parameters of the condition
91  const std::vector<ObjectParameter>& objParameter)
92 {
93 
94  m_objectParameter = objParameter;
95 
96 }
97 
98 void L1GtEnergySumTemplate::print(std::ostream& myCout) const
99 {
100 
101  myCout << "\n L1GtEnergySumTemplate print..." << std::endl;
102 
103  L1GtCondition::print(myCout);
104 
105  int nObjects = nrObjects();
106 
107  for (int i = 0; i < nObjects; i++) {
108  myCout << std::endl;
109  myCout << " Template for object " << i << " [ hex ]" << std::endl;
110  myCout << " etThreshold = "
111  << std::hex << m_objectParameter[i].etThreshold << std::endl;
112  myCout << " energyOverflow = "
113  << std::hex << m_objectParameter[0].energyOverflow << std::endl;
114 
115  if (m_condType == TypeETM) {
116  myCout << " phi = "
117  << std::hex << m_objectParameter[i].phiRange1Word
118  << std::hex << m_objectParameter[i].phiRange0Word
119  << std::endl;
120  } else if (m_condType == TypeHTM) {
121  myCout << " phi = "
122  << std::hex << m_objectParameter[i].phiRange0Word
123  << std::endl;
124  }
125 
126  }
127 
128  // reset to decimal output
129  myCout << std::dec << std::endl;
130 }
131 
133 {
134 
135  m_condName = cp.condName();
137  m_condType = cp.condType();
138  m_objectType = cp.objectType();
139  m_condGEq = cp.condGEq();
140  m_condChipNr = cp.condChipNr();
141 
143 
144 }
145 
146 // output stream operator
147 std::ostream& operator<<(std::ostream& os, const L1GtEnergySumTemplate& result)
148 {
149  result.print(os);
150  return os;
151 
152 }
153 
154 
int i
Definition: DBlmapReader.cc:9
const int nrObjects() const
get number of trigger objects
const std::string & condName() const
get / set condition name
Definition: L1GtCondition.h:55
const int & condChipNr() const
get / set the condition-chip number the condition is located on
const std::vector< L1GtObject > & objectType() const
get / set the trigger object type(s) in the condition
Definition: L1GtCondition.h:88
std::vector< L1GtObject > m_objectType
the trigger object type(s)
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
L1GtConditionType
virtual void print(std::ostream &myCout) const
print condition
L1GtConditionType m_condType
the type of the condition (1s, etc)
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
L1GtConditionCategory m_condCategory
the category of the condition
const std::vector< ObjectParameter > * objectParameter() const
const L1GtConditionType & condType() const
get / set the type of the condition (1s, etc)
Definition: L1GtCondition.h:77
tuple result
Definition: query.py:137
std::string m_condName
the name of the condition
const L1GtConditionCategory & condCategory() const
get / set the category of the condition
Definition: L1GtCondition.h:66
void copy(const L1GtEnergySumTemplate &cp)
copy function for copy constructor and operator=
L1GtEnergySumTemplate & operator=(const L1GtEnergySumTemplate &)
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
const bool condGEq() const
get / set condition GEq flag
Definition: L1GtCondition.h:99
virtual void print(std::ostream &myCout) const
print the condition
int m_condChipNr
condition is located on condition chip m_condChipNr
void setConditionParameter(const std::vector< ObjectParameter > &)
set functions