CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EnergySumTemplate.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 
30 
31 // forward declarations
32 
33 // constructors
35  : GtCondition()
36 {
37 
39 
40 }
41 
43  : GtCondition(cName)
44 {
45 
47 
48 }
49 
51  : GtCondition(cName, l1t::CondEnergySum, cType)
52 {
53 
55 
56  // should be always 1 - they are global quantities...
57  int nObjects = nrObjects();
58 
59  if (nObjects > 0) {
60  m_objectParameter.reserve(nObjects);
61  m_objectType.reserve(nObjects);
62  }
63 
64 }
65 
66 // copy constructor
68  : GtCondition(cp.m_condName)
69 {
70  copy(cp);
71 }
72 
73 // destructor
75 {
76  // empty now
77 }
78 
79 // assign operator
81 {
82 
83  copy(cp);
84  return *this;
85 }
86 
87 
88 // setConditionParameter - set the parameters of the condition
90  const std::vector<ObjectParameter>& objParameter)
91 {
92 
93  m_objectParameter = objParameter;
94 
95 }
96 
97 void EnergySumTemplate::print(std::ostream& myCout) const
98 {
99 
100  myCout << "\n EnergySumTemplate print..." << std::endl;
101 
102  GtCondition::print(myCout);
103 
104  int nObjects = nrObjects();
105 
106  for (int i = 0; i < nObjects; i++) {
107  myCout << std::endl;
108  myCout << " Template for object " << i << " [ hex ]" << std::endl;
109  myCout << " etThreshold = "
110  << std::hex << m_objectParameter[i].etLowThreshold << " - " << m_objectParameter[i].etHighThreshold << std::endl;
111  myCout << " energyOverflow = "
112  << std::hex << m_objectParameter[0].energyOverflow << std::endl;
113 
114  if (m_condType == l1t::TypeETM) {
115  myCout << " phi = "
116  << std::hex << m_objectParameter[i].phiRange1Word
117  << std::hex << m_objectParameter[i].phiRange0Word
118  << std::endl;
119  } else if (m_condType == l1t::TypeHTM) {
120  myCout << " phi = "
121  << std::hex << m_objectParameter[i].phiRange0Word
122  << std::endl;
123  }
124 
125  }
126 
127  // reset to decimal output
128  myCout << std::dec << std::endl;
129 }
130 
132 {
133 
134  m_condName = cp.condName();
136  m_condType = cp.condType();
137  m_objectType = cp.objectType();
138  m_condGEq = cp.condGEq();
139  m_condChipNr = cp.condChipNr();
141 
143 
144 }
145 
146 // output stream operator
147 std::ostream& operator<<(std::ostream& os, const EnergySumTemplate& result)
148 {
149  result.print(os);
150  return os;
151 
152 }
153 
154 
int i
Definition: DBlmapReader.cc:9
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
Definition: GtCondition.h:168
EnergySumTemplate & operator=(const EnergySumTemplate &)
const int & condChipNr() const
get / set the condition-chip number the condition is located on
Definition: GtCondition.h:112
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:162
GtConditionType
Definition: GtDefinitions.h:99
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GtCondition.h:171
void copy(const EnergySumTemplate &cp)
copy function for copy constructor and operator=
virtual void print(std::ostream &myCout) const
print condition
Definition: GtCondition.cc:154
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
virtual void print(std::ostream &myCout) const
print the condition
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:165
const std::vector< ObjectParameter > * objectParameter() const
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
std::string m_condName
the name of the condition
Definition: GtCondition.h:156
const int & condRelativeBx() const
get / set the condition relative bx
Definition: GtCondition.h:123
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:159
tuple result
Definition: query.py:137
const l1t::GtConditionType & condType() const
get / set the type of the condition (1s, etc)
Definition: GtCondition.h:79
const std::vector< L1GtObject > & objectType() const
get / set the trigger object type(s) in the condition
Definition: GtCondition.h:90
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
const std::string & condName() const
get / set condition name
Definition: GtCondition.h:57
const l1t::GtConditionCategory & condCategory() const
get / set the category of the condition
Definition: GtCondition.h:68
int m_condRelativeBx
Definition: GtCondition.h:174
const bool condGEq() const
get / set condition GEq flag
Definition: GtCondition.h:101
void setConditionParameter(const std::vector< ObjectParameter > &)
set functions
virtual ~EnergySumTemplate()