CMS 3D CMS Logo

L1GtJetCountsTemplate.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 
39 }
40 
42  : L1GtCondition(cName, CondJetCounts, cType) {
44 
45  // should be always 1 - they are global quantities...
46  int nObjects = nrObjects();
47 
48  if (nObjects > 0) {
49  m_objectParameter.reserve(nObjects);
50 
51  m_objectType.reserve(nObjects);
52  m_objectType.assign(nObjects, JetCounts);
53  }
54 }
55 
56 // copy constructor
58  copy(cp);
59 }
60 
61 // destructor
63  // empty now
64 }
65 
66 // assign operator
68  copy(cp);
69  return *this;
70 }
71 
72 // setConditionParameter - set the parameters of the condition
73 void L1GtJetCountsTemplate::setConditionParameter(const std::vector<ObjectParameter>& objParameter) {
74  m_objectParameter = objParameter;
75 }
76 
77 void L1GtJetCountsTemplate::print(std::ostream& myCout) const {
78  myCout << "\n L1GtJetCountsTemplate print..." << std::endl;
79 
80  L1GtCondition::print(myCout);
81 
82  int nObjects = nrObjects();
83 
84  for (int i = 0; i < nObjects; i++) {
85  myCout << std::endl;
86  myCout << " Template for object " << i << std::endl;
87  myCout << " countIndex = " << std::hex << m_objectParameter[i].countIndex << " [ dec ]" << std::endl;
88  myCout << " countThreshold = " << std::hex << m_objectParameter[i].countThreshold << " [ hex ]" << std::endl;
89  myCout << " countOverflow = " << std::hex << m_objectParameter[0].countOverflow << std::endl;
90  }
91 
92  // reset to decimal output
93  myCout << std::dec << std::endl;
94 }
95 
97  m_condName = cp.condName();
98  m_condCategory = cp.condCategory();
99  m_condType = cp.condType();
100  m_objectType = cp.objectType();
101  m_condGEq = cp.condGEq();
102  m_condChipNr = cp.condChipNr();
103 
104  m_objectParameter = *(cp.objectParameter());
105 }
106 
107 // output stream operator
108 std::ostream& operator<<(std::ostream& os, const L1GtJetCountsTemplate& result) {
109  result.print(os);
110  return os;
111 }
void copy(const L1GtJetCountsTemplate &cp)
copy function for copy constructor and operator=
L1GtConditionType
void setConditionParameter(const std::vector< ObjectParameter > &)
set functions
std::vector< L1GtObject > m_objectType
the trigger object type(s)
std::ostream & operator<<(std::ostream &os, const L1GtJetCountsTemplate &result)
L1GtConditionType m_condType
the type of the condition (1s, etc)
L1GtConditionCategory m_condCategory
the category of the condition
std::string m_condName
the name of the condition
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
L1GtJetCountsTemplate & operator=(const L1GtJetCountsTemplate &)
bool m_condGEq
the operator used for the condition (>=, =): true for >=
const int nrObjects() const
get number of trigger objects
void print(std::ostream &myCout) const override
print the condition
int m_condChipNr
condition is located on condition chip m_condChipNr
virtual void print(std::ostream &myCout) const
print condition