CMS 3D CMS Logo

EnergySumCondition.cc
Go to the documentation of this file.
1 
13 // this class header
15 
16 // system include files
17 #include <iostream>
18 #include <iomanip>
19 
20 #include <string>
21 #include <vector>
22 #include <algorithm>
23 
24 // user include files
25 // base classes
30 
33 
34 // constructors
35 // default
37  //empty
38 }
39 
40 // from base template condition (from event setup usually)
43  m_gtEnergySumTemplate(static_cast<const EnergySumTemplate*>(eSumTemplate)),
44  m_uGtB(ptrGTB)
45 
46 {
47  // maximum number of objects received for the evaluation of the condition
48  // energy sums are global quantities - one object per event
49 
51 }
52 
53 // copy constructor
55  m_gtEnergySumTemplate = cp.gtEnergySumTemplate();
56  m_uGtB = cp.getuGtB();
57 
58  m_condMaxNumberObjects = cp.condMaxNumberObjects();
59  m_condLastResult = cp.condLastResult();
60  m_combinationsInCond = cp.getCombinationsInCond();
61 
62  m_verbosity = cp.m_verbosity;
63 }
64 
66 
67 // destructor
69  // empty
70 }
71 
72 // equal operator
74  copy(cp);
75  return *this;
76 }
77 
78 // methods
80  m_gtEnergySumTemplate = eSumTempl;
81 }
82 
84 void l1t::EnergySumCondition::setuGtB(const GlobalBoard* ptrGTB) { m_uGtB = ptrGTB; }
85 
86 // try all object permutations and check spatial correlations, if required
87 const bool l1t::EnergySumCondition::evaluateCondition(const int bxEval) const {
88  // number of trigger objects in the condition
89  // in fact, there is only one object
90  int iCondition = 0;
91 
92  // condition result condResult set to true if the energy sum
93  // passes all requirements
94  bool condResult = false;
95 
96  // store the indices of the calorimeter objects
97  // from the combination evaluated in the condition
98  SingleCombInCond objectsInComb;
99 
100  // clear the m_combinationsInCond vector
101  (combinationsInCond()).clear();
102 
103  // clear the indices in the combination
104  objectsInComb.clear();
105 
106  const BXVector<const l1t::EtSum*>* candVec = m_uGtB->getCandL1EtSum();
107 
108  // Look at objects in bx = bx + relativeBx
109  int useBx = bxEval + m_gtEnergySumTemplate->condRelativeBx();
110 
111  // Fail condition if attempting to get Bx outside of range
112  if ((useBx < candVec->getFirstBX()) || (useBx > candVec->getLastBX())) {
113  return false;
114  }
115 
116  // If no candidates, no use looking any further.
117  int numberObjects = candVec->size(useBx);
118  if (numberObjects < 1) {
119  return false;
120  }
121 
123  bool MissingEnergy = false;
124  int centbit = 0;
125  switch ((m_gtEnergySumTemplate->objectType())[0]) {
126  case gtETM:
128  MissingEnergy = true;
129  break;
130  case gtETT:
132  MissingEnergy = false;
133  break;
134  case gtETTem:
136  MissingEnergy = false;
137  break;
138  case gtHTM:
140  MissingEnergy = true;
141  break;
142  case gtHTT:
144  MissingEnergy = false;
145  break;
146  case gtETMHF:
148  MissingEnergy = true;
149  break;
150  case gtTowerCount:
152  MissingEnergy = false;
153  break;
154  case gtMinBiasHFP0:
156  MissingEnergy = false;
157  break;
158  case gtMinBiasHFM0:
160  MissingEnergy = false;
161  break;
162  case gtMinBiasHFP1:
164  MissingEnergy = false;
165  break;
166  case gtMinBiasHFM1:
168  MissingEnergy = false;
169  break;
170  case gtAsymmetryEt:
172  MissingEnergy = false;
173  break;
174  case gtAsymmetryHt:
176  MissingEnergy = false;
177  break;
178  case gtAsymmetryEtHF:
180  MissingEnergy = false;
181  break;
182  case gtAsymmetryHtHF:
184  MissingEnergy = false;
185  break;
186  case gtCentrality0:
187  centbit = 0;
189  MissingEnergy = false;
190  break;
191  case gtCentrality1:
192  centbit = 1;
194  MissingEnergy = false;
195  break;
196  case gtCentrality2:
197  centbit = 2;
199  MissingEnergy = false;
200  break;
201  case gtCentrality3:
202  centbit = 3;
204  MissingEnergy = false;
205  break;
206  case gtCentrality4:
207  centbit = 4;
209  MissingEnergy = false;
210  break;
211  case gtCentrality5:
212  centbit = 5;
214  MissingEnergy = false;
215  break;
216  case gtCentrality6:
217  centbit = 6;
219  MissingEnergy = false;
220  break;
221  case gtCentrality7:
222  centbit = 7;
224  MissingEnergy = false;
225  break;
226  case gtZDCP:
228  MissingEnergy = false;
229  break;
230  case gtZDCM:
232  MissingEnergy = false;
233  break;
234  default:
235  edm::LogError("L1TGlobal")
236  << "\n Error: "
237  << "Unmatched object type from template to EtSumType, (m_gtEnergySumTemplate->objectType())[0] = "
238  << (m_gtEnergySumTemplate->objectType())[0] << std::endl;
240  break;
241  }
242 
243  // get energy, phi (ETM and HTM) and overflow for the trigger object
244  unsigned int candEt = 0;
245  unsigned int candPhi = 0;
246  bool candOverflow = false;
247  for (int iEtSum = 0; iEtSum < numberObjects; ++iEtSum) {
248  l1t::EtSum cand = *(candVec->at(useBx, iEtSum));
249  if (cand.getType() != type)
250  continue;
251  candEt = cand.hwPt();
252  candPhi = cand.hwPhi();
253  }
254 
255  const EnergySumTemplate::ObjectParameter objPar = (*(m_gtEnergySumTemplate->objectParameter()))[iCondition];
256 
257  // check energy threshold and overflow
258  // overflow evaluation:
259  // for condGEq >=
260  // candidate overflow true -> condition true
261  // candidate overflow false -> evaluate threshold
262  // for condGEq =
263  // candidate overflow true -> condition false
264  // candidate overflow false -> evaluate threshold
265  //
266 
267  bool condGEqVal = m_gtEnergySumTemplate->condGEq();
268 
270  bool myres = checkBit(candEt, centbit);
271  //std::cout << "CCLC: Checking bit " << centbit << "\tResult is: " << myres << std::endl;
272  if (!myres) {
273  LogDebug("L1TGlobal") << "\t\t l1t::EtSum failed Centrality bit" << std::endl;
274  return false;
275  }
277  return false;
278  } else {
279  // check energy threshold
280  if (!checkThreshold(objPar.etLowThreshold, objPar.etHighThreshold, candEt, condGEqVal)) {
281  LogDebug("L1TGlobal") << "\t\t l1t::EtSum failed checkThreshold" << std::endl;
282  return false;
283  }
284 
285  if (!condGEqVal && candOverflow)
286  return false;
287 
288  // for ETM and HTM check phi also
289  // for overflow, the phi requirements are ignored
290  if (MissingEnergy) {
291  // check phi
292  if (!checkRangePhi(
293  candPhi, objPar.phiWindow1Lower, objPar.phiWindow1Upper, objPar.phiWindow2Lower, objPar.phiWindow2Upper)) {
294  LogDebug("L1TGlobal") << "\t\t l1t::EtSum failed checkRange(phi)" << std::endl;
295  return false;
296  }
297  }
298  }
299 
300  // index is always zero, as they are global quantities (there is only one object)
301  int indexObj = 0;
302 
303  objectsInComb.push_back(indexObj);
304  (combinationsInCond()).push_back(objectsInComb);
305 
306  // if we get here all checks were successfull for this combination
307  // set the general result for evaluateCondition to "true"
308 
309  condResult = true;
310  return condResult;
311 }
312 
313 void l1t::EnergySumCondition::print(std::ostream& myCout) const {
314  m_gtEnergySumTemplate->print(myCout);
316 }
int getLastBX() const
std::vector< int > SingleCombInCond
typedefs
void setuGtB(const GlobalBoard *)
set the pointer to uGT GlobalBoard
Log< level::Error, false > LogError
unsigned size(int bx) const
EnergySumCondition & operator=(const EnergySumCondition &)
void print(std::ostream &myCout) const override
print condition
typedef for a single object template
const T & at(int bx, unsigned i) const
virtual void print(std::ostream &myCout) const
print condition
deadvectors [0] push_back({0.0175431, 0.538005, 6.80997, 13.29})
const bool evaluateCondition(const int bxEval) const override
the core function to check if the condition matches
void clear(EGIsoObj &c)
Definition: egamma.h:82
EtSumType
Definition: EtSum.h:27
void setGtEnergySumTemplate(const EnergySumTemplate *)
void copy(const EnergySumCondition &cp)
copy function for copy constructor and operator=
#define LogDebug(id)