CMS 3D CMS Logo

L1GtHfBitCountsCondition.cc
Go to the documentation of this file.
1 
15 // this class header
17 
18 // system include files
19 #include <iomanip>
20 #include <iostream>
21 
22 #include <vector>
23 
24 // user include files
25 // base class
27 
30 
32 
34 
35 // constructors
36 // default
38  // empty
39 }
40 
41 // from base template condition (from event setup usually)
44  m_gtHfBitCountsTemplate(static_cast<const L1GtHfBitCountsTemplate *>(bcTemplate)),
45  m_gtPSB(ptrPSB) {
46  // maximum number of objects received for the evaluation of the condition
47  // no objects, in fact, just a count
49 }
50 
51 // copy constructor
53  m_gtHfBitCountsTemplate = cp.gtHfBitCountsTemplate();
54  m_gtPSB = cp.gtPSB();
55 
56  m_condMaxNumberObjects = cp.condMaxNumberObjects();
57  m_condLastResult = cp.condLastResult();
58  m_combinationsInCond = cp.getCombinationsInCond();
59 
60  m_verbosity = cp.m_verbosity;
61 }
62 
64  copy(cp);
65 }
66 
67 // destructor
69  // empty
70 }
71 
72 // equal operator
74  copy(cp);
75  return *this;
76 }
77 
78 // methods
80  m_gtHfBitCountsTemplate = bcTemplate;
81 }
82 
85 
86 // try all object permutations and check spatial correlations, if required
88  // number of trigger objects in the condition
89  // no objects, in fact, just a count
90  int iCondition = 0;
91 
92  // condition result condResult will be set to true if the HF bit counts
93  // passes the requirement
94  bool condResult = false;
95 
96  // store the index of the HfBitCounts object
97  // from the combination evaluated in the condition
98  SingleCombInCond objectsInComb;
99 
100  // clear the m_combinationsInCond vector
102 
103  // get the HF bit counts (event / condition)
104  const L1GctHFBitCounts *bitCounts = m_gtPSB->getCandL1HfBitCounts();
105 
106  // protection against missing HF bit counts collection
107  if (bitCounts == nullptr) {
108  return false;
109  }
110 
112 
113  // FIXME ask GCT to provide a method to retrieve it
114  const unsigned int numberL1HfBitCounts = 4;
115 
116  const unsigned int cIndex = objPar.countIndex;
117  if (cIndex >= numberL1HfBitCounts) {
118  edm::LogError("L1GlobalTrigger") << "\nL1GtHfBitCountsCondition error: countIndex " << cIndex
119  << "greater than GCT maximum index = " << numberL1HfBitCounts
120  << "\n ==> condResult = false " << std::endl;
121  return false;
122  }
123 
124  const unsigned int countValue = bitCounts->bitCount(cIndex);
125 
126  // check countThreshold
127  if (!checkThreshold(objPar.countThreshold, countValue, m_gtHfBitCountsTemplate->condGEq())) {
128  return false;
129  }
130 
131  // index is always zero - the object is in fact a count
132  int indexObj = 0;
133 
134  objectsInComb.push_back(indexObj);
135  (combinationsInCond()).push_back(objectsInComb);
136 
137  // if we get here all checks were successful for this combination
138  // set the general result for evaluateCondition to "true"
139 
140  condResult = true;
141  return condResult;
142 }
143 
144 void L1GtHfBitCountsCondition::print(std::ostream &myCout) const {
147 }
void copy(const L1GtHfBitCountsCondition &cp)
copy function for copy constructor and operator=
void setGtPSB(const L1GlobalTriggerPSB *)
set the pointer to PSB
bool m_condLastResult
the last result of evaluateCondition()
typedef for a single object template
CombinationsInCond m_combinationsInCond
store all the object combinations evaluated to true in the condition
void setGtHfBitCountsTemplate(const L1GtHfBitCountsTemplate *)
std::vector< int > SingleCombInCond
typedefs
const bool evaluateCondition() const override
the core function to check if the condition matches
CombinationsInCond & combinationsInCond() const
get all the object combinations (to fill it...)
Log< level::Error, false > LogError
virtual void print(std::ostream &myCout) const
print condition
const L1GtHfBitCountsTemplate * m_gtHfBitCountsTemplate
pointer to a L1GtHfBitCountsTemplate
L1GtHfBitCountsCondition & operator=(const L1GtHfBitCountsCondition &)
L1 GCT HF ring Et sums.
const bool checkThreshold(const Type1 &threshold, const Type2 &value, const bool condGEqValue) const
const L1GlobalTriggerPSB * m_gtPSB
pointer to PSB, to be able to get the trigger objects
const bool condGEq() const
get / set condition GEq flag
Definition: L1GtCondition.h:72
void print(std::ostream &myCout) const override
print the condition
deadvectors [0] push_back({0.0175431, 0.538005, 6.80997, 13.29})
uint16_t bitCount(unsigned const i) const
const L1GctHFBitCounts * getCandL1HfBitCounts() const
pointer to HfBitCounts data list
void clear(EGIsoObj &c)
Definition: egamma.h:82
void print(std::ostream &myCout) const override
print condition
const std::vector< ObjectParameter > * objectParameter() const