CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes | Friends
GlobalCondition Class Reference

#include <GlobalCondition.h>

Inheritance diagram for GlobalCondition:
CaloTemplate CorrelationTemplate CorrelationWithOverlapRemovalTemplate EnergySumTemplate ExternalTemplate MuonTemplate

Public Member Functions

const l1t::GtConditionCategorycondCategory () const
 get / set the category of the condition More...
 
const int & condChipNr () const
 get / set the condition-chip number the condition is located on More...
 
const bool condGEq () const
 get / set condition GEq flag More...
 
const std::string & condName () const
 get / set condition name More...
 
const int & condRelativeBx () const
 get / set the condition relative bx More...
 
const l1t::GtConditionTypecondType () const
 get / set the type of the condition (1s, etc) More...
 
const bool corr () const
 
 GlobalCondition ()
 
 GlobalCondition (const std::string &)
 constructor from condition name More...
 
 GlobalCondition (const std::string &, const l1t::GtConditionCategory &, const l1t::GtConditionType &)
 constructor from condition name, category and type More...
 
const int nrObjects () const
 get number of trigger objects More...
 
const std::vector< l1t::GlobalObject > & objectType () const
 get / set the trigger object type(s) in the condition More...
 
virtual void print (std::ostream &myCout) const
 print condition More...
 
void setCondCategory (const l1t::GtConditionCategory &cCategory)
 
void setCondChipNr (const int &cChipNr)
 
void setCondGEq (const bool &cGEq)
 
void setCondName (const std::string &cName)
 
void setCondRelativeBx (const int &cRelativeBx)
 
void setCondType (const l1t::GtConditionType &cType)
 
void setObjectType (const std::vector< l1t::GlobalObject > &objType)
 
const bool wsc () const
 
virtual ~GlobalCondition ()
 destructor More...
 

Protected Attributes

l1t::GtConditionCategory m_condCategory
 the category of the condition More...
 
int m_condChipNr
 condition is located on condition chip m_condChipNr More...
 
bool m_condGEq
 the operator used for the condition (>=, =): true for >= More...
 
std::string m_condName
 the name of the condition More...
 
int m_condRelativeBx
 
l1t::GtConditionType m_condType
 the type of the condition (1s, etc) More...
 
std::vector< l1t::GlobalObjectm_objectType
 the trigger object type(s) More...
 

Friends

std::ostream & operator<< (std::ostream &, const GlobalCondition &)
 output stream operator More...
 

Detailed Description

Description: base class for L1 Global Trigger object templates (condition).

Implementation: <TODO: enter implementation details>

Author
: Brian Winer, OSU Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Description: base class for L1 Global Trigger object templates (condition).

Implementation: <TODO: enter implementation details>

Author
: Vladimir Rekovic, Brian Winer, OSU Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Definition at line 33 of file GlobalCondition.h.

Constructor & Destructor Documentation

◆ GlobalCondition() [1/3]

GlobalCondition::GlobalCondition ( )

constructor(s)

Definition at line 28 of file GlobalCondition.cc.

28  {
31  m_condChipNr = -1;
32  m_condRelativeBx = 0;
33 
34  // the rest of private members are C++ initialized
35 }

References l1t::CondNull, m_condCategory, m_condChipNr, m_condRelativeBx, m_condType, and l1t::TypeNull.

◆ GlobalCondition() [2/3]

GlobalCondition::GlobalCondition ( const std::string &  cName)

constructor from condition name

Definition at line 38 of file GlobalCondition.cc.

38  {
39  m_condName = cName;
40 
43  m_condChipNr = -1;
44  m_condRelativeBx = 0;
45 }

References l1t::CondNull, m_condCategory, m_condChipNr, m_condName, m_condRelativeBx, m_condType, and l1t::TypeNull.

◆ GlobalCondition() [3/3]

GlobalCondition::GlobalCondition ( const std::string &  cName,
const l1t::GtConditionCategory cCategory,
const l1t::GtConditionType cType 
)

constructor from condition name, category and type

Definition at line 48 of file GlobalCondition.cc.

50  {
51  m_condName = cName;
52  m_condCategory = cCategory;
53  m_condType = cType;
54 
55  m_condChipNr = -1;
56  m_condRelativeBx = 0;
57 }

References m_condCategory, m_condChipNr, m_condName, m_condRelativeBx, and m_condType.

◆ ~GlobalCondition()

GlobalCondition::~GlobalCondition ( )
virtual

destructor

Definition at line 59 of file GlobalCondition.cc.

59  {
60  // empty
61 }

Member Function Documentation

◆ condCategory()

const l1t::GtConditionCategory& GlobalCondition::condCategory ( ) const
inline

get / set the category of the condition

Definition at line 55 of file GlobalCondition.h.

55 { return m_condCategory; }

References m_condCategory.

◆ condChipNr()

const int& GlobalCondition::condChipNr ( ) const
inline

get / set the condition-chip number the condition is located on

Definition at line 75 of file GlobalCondition.h.

75 { return m_condChipNr; }

References m_condChipNr.

◆ condGEq()

const bool GlobalCondition::condGEq ( ) const
inline

get / set condition GEq flag

Definition at line 70 of file GlobalCondition.h.

70 { return m_condGEq; }

References m_condGEq.

◆ condName()

const std::string& GlobalCondition::condName ( ) const
inline

get / set condition name

Definition at line 50 of file GlobalCondition.h.

50 { return m_condName; }

References m_condName.

◆ condRelativeBx()

const int& GlobalCondition::condRelativeBx ( ) const
inline

get / set the condition relative bx

Definition at line 80 of file GlobalCondition.h.

80 { return m_condRelativeBx; }

References m_condRelativeBx.

Referenced by l1t::CorrCondition::evaluateCondition(), and l1t::CorrWithOverlapRemovalCondition::evaluateCondition().

◆ condType()

const l1t::GtConditionType& GlobalCondition::condType ( ) const
inline

get / set the type of the condition (1s, etc)

Definition at line 60 of file GlobalCondition.h.

60 { return m_condType; }

References m_condType.

◆ corr()

const bool GlobalCondition::corr ( ) const

get logic flag for conditions, different type of trigger objects, and with spatial correlations

Definition at line 147 of file GlobalCondition.cc.

147  {
148  if (m_condType == l1t::Type2cor) {
149  return true;
150  }
151 
152  return false;
153 }

References m_condType, and l1t::Type2cor.

◆ nrObjects()

const int GlobalCondition::nrObjects ( ) const

get number of trigger objects

Definition at line 64 of file GlobalCondition.cc.

64  {
65  switch (m_condType) {
66  case l1t::TypeNull:
67  case l1t::TypeExternal: {
68  return 0;
69  }
70 
71  break;
72  case l1t::TypeCent0:
73  case l1t::TypeCent1:
74  case l1t::TypeCent2:
75  case l1t::TypeCent3:
76  case l1t::TypeCent4:
77  case l1t::TypeCent5:
78  case l1t::TypeCent6:
79  case l1t::TypeCent7: {
80  return 0;
81  }
82 
83  case l1t::Type1s: {
84  return 1;
85  }
86 
87  break;
88  case l1t::Type2s:
89  case l1t::Type2wsc:
90  case l1t::Type2cor: {
91  return 2;
92  }
93 
94  break;
96  return 3;
97  }
98 
99  break;
100  case l1t::Type3s: {
101  return 3;
102  }
103 
104  break;
105  case l1t::Type4s: {
106  return 4;
107  }
108 
109  break;
110  case l1t::TypeETT:
111  case l1t::TypeETM:
112  case l1t::TypeHTT:
113  case l1t::TypeHTM:
114  case l1t::TypeETMHF:
115  case l1t::TypeTowerCount:
120  case l1t::TypeAsymEt:
121  case l1t::TypeAsymHt:
122  case l1t::TypeAsymEtHF:
123  case l1t::TypeAsymHtHF: {
124  return 1;
125  }
126 
127  break;
128  default: {
129  // TODO no such type, throw exception?
130  return 0;
131  } break;
132  }
133 }

References m_condType, l1t::Type1s, l1t::Type2cor, l1t::Type2corWithOverlapRemoval, l1t::Type2s, l1t::Type2wsc, l1t::Type3s, l1t::Type4s, l1t::TypeAsymEt, l1t::TypeAsymEtHF, l1t::TypeAsymHt, l1t::TypeAsymHtHF, l1t::TypeCent0, l1t::TypeCent1, l1t::TypeCent2, l1t::TypeCent3, l1t::TypeCent4, l1t::TypeCent5, l1t::TypeCent6, l1t::TypeCent7, l1t::TypeETM, l1t::TypeETMHF, l1t::TypeETT, l1t::TypeExternal, l1t::TypeHTM, l1t::TypeHTT, l1t::TypeMinBiasHFM0, l1t::TypeMinBiasHFM1, l1t::TypeMinBiasHFP0, l1t::TypeMinBiasHFP1, l1t::TypeNull, and l1t::TypeTowerCount.

Referenced by CaloTemplate::CaloTemplate(), CorrelationTemplate::CorrelationTemplate(), CorrelationWithOverlapRemovalTemplate::CorrelationWithOverlapRemovalTemplate(), EnergySumTemplate::EnergySumTemplate(), MuonTemplate::MuonTemplate(), EnergySumTemplate::print(), CaloTemplate::print(), and MuonTemplate::print().

◆ objectType()

const std::vector<l1t::GlobalObject>& GlobalCondition::objectType ( ) const
inline

get / set the trigger object type(s) in the condition

Definition at line 65 of file GlobalCondition.h.

65 { return m_objectType; }

References m_objectType.

Referenced by l1t::CaloCondition::CaloCondition(), l1t::CorrCondition::evaluateCondition(), and l1t::CorrWithOverlapRemovalCondition::evaluateCondition().

◆ print()

void GlobalCondition::print ( std::ostream &  myCout) const
virtual

print condition

Reimplemented in CorrelationWithOverlapRemovalTemplate, MuonTemplate, CorrelationTemplate, CaloTemplate, EnergySumTemplate, and ExternalTemplate.

Definition at line 156 of file GlobalCondition.cc.

156  {
157  myCout << "\n Condition name: " << m_condName << std::endl;
158 
159  switch (m_condCategory) {
160  case l1t::CondNull: {
161  myCout << " Condition category: "
162  << "l1t::CondNull"
163  << " - it means not defined!" << std::endl;
164  }
165 
166  break;
167  case l1t::CondMuon: {
168  myCout << " Condition category: "
169  << "l1t::CondMuon" << std::endl;
170  }
171 
172  break;
173  case l1t::CondCalo: {
174  myCout << " Condition category: "
175  << "l1t::CondCalo" << std::endl;
176  }
177 
178  break;
179  case l1t::CondEnergySum: {
180  myCout << " Condition category: "
181  << "CondEnergySum" << std::endl;
182  }
183 
184  break;
185  case l1t::CondCorrelation: {
186  myCout << " Condition category: "
187  << "CondCorrelation" << std::endl;
188  }
189 
190  break;
192  myCout << " Condition category: "
193  << "CondCorrelationWithOverlapRemoval" << std::endl;
194  }
195 
196  break;
197  case l1t::CondExternal: {
198  myCout << " Condition category: "
199  << "CondExternal" << std::endl;
200  }
201 
202  break;
203  default: {
204  myCout << " Condition category: " << m_condCategory
205  << " - no such category defined. Check l1t::GtConditionCategory enum." << std::endl;
206 
207  } break;
208  }
209 
210  switch (m_condType) {
211  case l1t::TypeNull: {
212  myCout << " Condition type: "
213  << "l1t::TypeNull"
214  << " - it means not defined!" << std::endl;
215  }
216 
217  break;
218  case l1t::Type1s: {
219  myCout << " Condition type: "
220  << "l1t::Type1s" << std::endl;
221  }
222 
223  break;
224  case l1t::Type2s: {
225  myCout << " Condition type: "
226  << "l1t::Type2s" << std::endl;
227  }
228 
229  break;
231  myCout << " Condition type: "
232  << "l1t::Type2corWithOverlapRemoval" << std::endl;
233  }
234 
235  break;
236  case l1t::Type2wsc: {
237  myCout << " Condition type: "
238  << "l1t::Type2wsc" << std::endl;
239  }
240 
241  break;
242  case l1t::Type2cor: {
243  myCout << " Condition type: "
244  << "l1t::Type2cor" << std::endl;
245  }
246 
247  break;
248  case l1t::Type3s: {
249  myCout << " Condition type: "
250  << "l1t::Type3s" << std::endl;
251  }
252 
253  break;
254  case l1t::Type4s: {
255  myCout << " Condition type: "
256  << "l1t::Type4s" << std::endl;
257  }
258 
259  break;
260  case l1t::TypeETM: {
261  myCout << " Condition type: "
262  << "TypeETM" << std::endl;
263  }
264 
265  break;
266  case l1t::TypeETT: {
267  myCout << " Condition type: "
268  << "TypeETT" << std::endl;
269  }
270 
271  break;
272  case l1t::TypeHTT: {
273  myCout << " Condition type: "
274  << "TypeHTT" << std::endl;
275  }
276 
277  break;
278  case l1t::TypeHTM: {
279  myCout << " Condition type: "
280  << "TypeHTM" << std::endl;
281  }
282 
283  break;
284  case l1t::TypeETMHF: {
285  myCout << " Condition type: "
286  << "TypeETMHF" << std::endl;
287  }
288 
289  break;
290  case l1t::TypeTowerCount: {
291  myCout << " Condition type: "
292  << "TypeTowerCount" << std::endl;
293  }
294 
295  break;
296  case l1t::TypeMinBiasHFP0: {
297  myCout << " Condition type: "
298  << "TypeMinBiasHFP0" << std::endl;
299  }
300 
301  break;
302  case l1t::TypeMinBiasHFM0: {
303  myCout << " Condition type: "
304  << "TypeMinBiasHFM0" << std::endl;
305  }
306 
307  break;
308  case l1t::TypeMinBiasHFP1: {
309  myCout << " Condition type: "
310  << "TypeMinBiasHFP1" << std::endl;
311  }
312 
313  break;
314  case l1t::TypeMinBiasHFM1: {
315  myCout << " Condition type: "
316  << "TypeMinBiasHFM1" << std::endl;
317  }
318 
319  break;
320  case l1t::TypeETTem: {
321  myCout << " Condition type: "
322  << "TypeETTem" << std::endl;
323  }
324 
325  break;
326  case l1t::TypeAsymEt: {
327  myCout << " Condition type: "
328  << "TypeAsymEt" << std::endl;
329  }
330 
331  break;
332  case l1t::TypeAsymHt: {
333  myCout << " Condition type: "
334  << "TypeAsymHt" << std::endl;
335  }
336 
337  break;
338  case l1t::TypeAsymEtHF: {
339  myCout << " Condition type: "
340  << "TypeAsymEtHF" << std::endl;
341  }
342 
343  break;
344  case l1t::TypeAsymHtHF: {
345  myCout << " Condition type: "
346  << "TypeAsymHtHF" << std::endl;
347  }
348 
349  break;
350  case l1t::TypeCent0: {
351  myCout << " Condition type: "
352  << "TypeCent0" << std::endl;
353  }
354 
355  break;
356  case l1t::TypeCent1: {
357  myCout << " Condition type: "
358  << "TypeCent1" << std::endl;
359  }
360 
361  break;
362  case l1t::TypeCent2: {
363  myCout << " Condition type: "
364  << "TypeCent2" << std::endl;
365  }
366 
367  break;
368  case l1t::TypeCent3: {
369  myCout << " Condition type: "
370  << "TypeCent3" << std::endl;
371  }
372 
373  break;
374  case l1t::TypeCent4: {
375  myCout << " Condition type: "
376  << "TypeCent4" << std::endl;
377  }
378 
379  break;
380  case l1t::TypeCent5: {
381  myCout << " Condition type: "
382  << "TypeCent5" << std::endl;
383  }
384 
385  break;
386  case l1t::TypeCent6: {
387  myCout << " Condition type: "
388  << "TypeCent6" << std::endl;
389  }
390 
391  break;
392  case l1t::TypeCent7: {
393  myCout << " Condition type: "
394  << "TypeCent7" << std::endl;
395  }
396 
397  break;
398  case l1t::TypeExternal: {
399  myCout << " Condition type: "
400  << "TypeExternal" << std::endl;
401  }
402 
403  break;
404  default: {
405  myCout << " Condition type: " << m_condType << " - no such type defined. Check l1t::GtConditionType enum."
406  << std::endl;
407  } break;
408  }
409 
410  myCout << " Object types: ";
411 
412  for (unsigned int i = 0; i < m_objectType.size(); ++i) {
413  switch (m_objectType[i]) {
414  case l1t::gtMu: {
415  myCout << " Mu ";
416  }
417 
418  break;
419  case l1t::gtEG: {
420  myCout << " EG ";
421  }
422 
423  break;
424 
425  case l1t::gtJet: {
426  myCout << " Jet ";
427  }
428 
429  break;
430 
431  case l1t::gtTau: {
432  myCout << " Tau ";
433  }
434 
435  break;
436  case l1t::gtETM: {
437  myCout << " ETM ";
438  }
439 
440  break;
441  case l1t::gtETT: {
442  myCout << " ETT ";
443  }
444 
445  break;
446  case l1t::gtHTT: {
447  myCout << " HTT ";
448  }
449 
450  break;
451  case l1t::gtHTM: {
452  myCout << " HTM ";
453  }
454 
455  break;
456 
457  case l1t::gtETMHF: {
458  myCout << " ETMHF ";
459  }
460 
461  break;
462  case l1t::gtTowerCount: {
463  myCout << " TowerCount ";
464  }
465 
466  break;
467  case l1t::gtMinBiasHFP0: {
468  myCout << " MinBiasHFP0 ";
469  }
470 
471  break;
472  case l1t::gtMinBiasHFM0: {
473  myCout << " MinBiasHFM0 ";
474  }
475 
476  break;
477  case l1t::gtMinBiasHFP1: {
478  myCout << " MinBiasHFP1 ";
479  }
480 
481  break;
482  case l1t::gtMinBiasHFM1: {
483  myCout << " MinBiasHFM1 ";
484  }
485 
486  break;
487  case l1t::gtETTem: {
488  myCout << " ETTem ";
489  }
490 
491  break;
492  case l1t::gtAsymmetryEt: {
493  myCout << " AsymmetryEt ";
494  }
495 
496  break;
497  case l1t::gtAsymmetryHt: {
498  myCout << " AsymmetryHt ";
499  }
500 
501  break;
502  case l1t::gtAsymmetryEtHF: {
503  myCout << " AsymmetryEtHF ";
504  }
505 
506  break;
507  case l1t::gtAsymmetryHtHF: {
508  myCout << " AsymmetryHtHF ";
509  }
510 
511  break;
512  case l1t::gtCentrality0: {
513  myCout << " Centrality0 ";
514  }
515 
516  break;
517  case l1t::gtCentrality1: {
518  myCout << " Centrality1 ";
519  }
520 
521  break;
522  case l1t::gtCentrality2: {
523  myCout << " Centrality2 ";
524  }
525 
526  break;
527  case l1t::gtCentrality3: {
528  myCout << " Centrality3 ";
529  }
530 
531  break;
532  case l1t::gtCentrality4: {
533  myCout << " Centrality4 ";
534  }
535 
536  break;
537  case l1t::gtCentrality5: {
538  myCout << " Centrality5 ";
539  }
540 
541  break;
542  case l1t::gtCentrality6: {
543  myCout << " Centrality6 ";
544  }
545 
546  break;
547  case l1t::gtCentrality7: {
548  myCout << " Centrality7 ";
549  }
550 
551  break;
552 
553  case l1t::gtExternal: {
554  myCout << " External ";
555  }
556 
557  break;
558  default: {
559  myCout << " Unknown type " << m_objectType[i];
560  } break;
561  }
562  }
563 
564  myCout << std::endl;
565 
566  myCout << " \" >= \" flag: " << m_condGEq << std::endl;
567 
568  myCout << " Condition chip: " << m_condChipNr;
569 
570  if (m_condChipNr < 0) {
571  myCout << " - not properly initialized! ";
572  }
573 
574  myCout << std::endl;
575 
576  myCout << " Relative BX: " << m_condRelativeBx << std::endl;
577 }

References l1t::CondCalo, l1t::CondCorrelation, l1t::CondCorrelationWithOverlapRemoval, l1t::CondEnergySum, l1t::CondExternal, l1t::CondMuon, l1t::CondNull, l1t::gtAsymmetryEt, l1t::gtAsymmetryEtHF, l1t::gtAsymmetryHt, l1t::gtAsymmetryHtHF, l1t::gtCentrality0, l1t::gtCentrality1, l1t::gtCentrality2, l1t::gtCentrality3, l1t::gtCentrality4, l1t::gtCentrality5, l1t::gtCentrality6, l1t::gtCentrality7, l1t::gtEG, l1t::gtETM, l1t::gtETMHF, l1t::gtETT, l1t::gtETTem, l1t::gtExternal, l1t::gtHTM, l1t::gtHTT, l1t::gtJet, l1t::gtMinBiasHFM0, l1t::gtMinBiasHFM1, l1t::gtMinBiasHFP0, l1t::gtMinBiasHFP1, l1t::gtMu, l1t::gtTau, l1t::gtTowerCount, mps_fire::i, m_condCategory, m_condChipNr, m_condGEq, m_condName, m_condRelativeBx, m_condType, m_objectType, l1t::Type1s, l1t::Type2cor, l1t::Type2corWithOverlapRemoval, l1t::Type2s, l1t::Type2wsc, l1t::Type3s, l1t::Type4s, l1t::TypeAsymEt, l1t::TypeAsymEtHF, l1t::TypeAsymHt, l1t::TypeAsymHtHF, l1t::TypeCent0, l1t::TypeCent1, l1t::TypeCent2, l1t::TypeCent3, l1t::TypeCent4, l1t::TypeCent5, l1t::TypeCent6, l1t::TypeCent7, l1t::TypeETM, l1t::TypeETMHF, l1t::TypeETT, l1t::TypeETTem, l1t::TypeExternal, l1t::TypeHTM, l1t::TypeHTT, l1t::TypeMinBiasHFM0, l1t::TypeMinBiasHFM1, l1t::TypeMinBiasHFP0, l1t::TypeMinBiasHFP1, l1t::TypeNull, and l1t::TypeTowerCount.

Referenced by ExternalTemplate::print(), EnergySumTemplate::print(), CaloTemplate::print(), CorrelationTemplate::print(), MuonTemplate::print(), and CorrelationWithOverlapRemovalTemplate::print().

◆ setCondCategory()

void GlobalCondition::setCondCategory ( const l1t::GtConditionCategory cCategory)
inline

Definition at line 57 of file GlobalCondition.h.

57 { m_condCategory = cCategory; }

References m_condCategory.

◆ setCondChipNr()

void GlobalCondition::setCondChipNr ( const int &  cChipNr)
inline

◆ setCondGEq()

void GlobalCondition::setCondGEq ( const bool &  cGEq)
inline

◆ setCondName()

void GlobalCondition::setCondName ( const std::string &  cName)
inline

Definition at line 52 of file GlobalCondition.h.

52 { m_condName = cName; }

References m_condName.

◆ setCondRelativeBx()

void GlobalCondition::setCondRelativeBx ( const int &  cRelativeBx)
inline

◆ setCondType()

void GlobalCondition::setCondType ( const l1t::GtConditionType cType)
inline

◆ setObjectType()

void GlobalCondition::setObjectType ( const std::vector< l1t::GlobalObject > &  objType)
inline

◆ wsc()

const bool GlobalCondition::wsc ( ) const

get logic flag for conditions, same type of trigger objects, and with spatial correlations

Definition at line 137 of file GlobalCondition.cc.

137  {
138  if (m_condType == l1t::Type2wsc) {
139  return true;
140  }
141 
142  return false;
143 }

References m_condType, and l1t::Type2wsc.

Referenced by CaloTemplate::print(), and MuonTemplate::print().

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  os,
const GlobalCondition result 
)
friend

output stream operator

Definition at line 580 of file GlobalCondition.cc.

580  {
581  result.print(os);
582  return os;
583 }

Member Data Documentation

◆ m_condCategory

l1t::GtConditionCategory GlobalCondition::m_condCategory
protected

◆ m_condChipNr

int GlobalCondition::m_condChipNr
protected

◆ m_condGEq

bool GlobalCondition::m_condGEq
protected

◆ m_condName

std::string GlobalCondition::m_condName
protected

◆ m_condRelativeBx

int GlobalCondition::m_condRelativeBx
protected

◆ m_condType

l1t::GtConditionType GlobalCondition::m_condType
protected

◆ m_objectType

std::vector<l1t::GlobalObject> GlobalCondition::m_objectType
protected
l1t::gtHTM
Definition: GlobalObject.h:24
l1t::Type2cor
Definition: GlobalDefinitions.h:53
l1t::TypeCent5
Definition: GlobalDefinitions.h:74
l1t::gtCentrality0
Definition: GlobalObject.h:36
l1t::gtExternal
Definition: GlobalObject.h:44
mps_fire.i
i
Definition: mps_fire.py:428
l1t::TypeNull
Definition: GlobalDefinitions.h:49
l1t::TypeETM
Definition: GlobalDefinitions.h:56
l1t::gtEG
Definition: GlobalObject.h:18
l1t::Type3s
Definition: GlobalDefinitions.h:54
l1t::gtETTem
Definition: GlobalObject.h:31
l1t::CondCorrelationWithOverlapRemoval
Definition: GlobalDefinitions.h:99
l1t::gtMinBiasHFP1
Definition: GlobalObject.h:29
l1t::gtMinBiasHFM1
Definition: GlobalObject.h:30
l1t::TypeAsymEtHF
Definition: GlobalDefinitions.h:79
l1t::gtAsymmetryEt
Definition: GlobalObject.h:32
l1t::TypeMinBiasHFP0
Definition: GlobalDefinitions.h:62
GlobalCondition::m_condRelativeBx
int m_condRelativeBx
Definition: GlobalCondition.h:122
l1t::TypeCent2
Definition: GlobalDefinitions.h:71
l1t::TypeCent3
Definition: GlobalDefinitions.h:72
l1t::gtCentrality5
Definition: GlobalObject.h:41
l1t::TypeCent7
Definition: GlobalDefinitions.h:76
l1t::TypeMinBiasHFM1
Definition: GlobalDefinitions.h:65
l1t::gtCentrality7
Definition: GlobalObject.h:43
l1t::gtAsymmetryHt
Definition: GlobalObject.h:33
l1t::gtCentrality4
Definition: GlobalObject.h:40
l1t::gtJet
Definition: GlobalObject.h:19
l1t::gtTowerCount
Definition: GlobalObject.h:26
l1t::Type2corWithOverlapRemoval
Definition: GlobalDefinitions.h:68
l1t::TypeCent1
Definition: GlobalDefinitions.h:70
l1t::CondCalo
Definition: GlobalDefinitions.h:95
l1t::CondNull
Definition: GlobalDefinitions.h:93
l1t::TypeAsymEt
Definition: GlobalDefinitions.h:77
l1t::gtETMHF
Definition: GlobalObject.h:25
l1t::TypeHTT
Definition: GlobalDefinitions.h:58
l1t::gtHTT
Definition: GlobalObject.h:23
l1t::TypeCent4
Definition: GlobalDefinitions.h:73
GlobalCondition::m_condChipNr
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GlobalCondition.h:119
GlobalCondition::m_condCategory
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GlobalCondition.h:107
GlobalCondition::m_objectType
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
Definition: GlobalCondition.h:113
l1t::gtCentrality1
Definition: GlobalObject.h:37
l1t::gtETM
Definition: GlobalObject.h:21
electrons_cff.objType
objType
Definition: electrons_cff.py:514
l1t::gtMu
Definition: GlobalObject.h:17
l1t::Type1s
Definition: GlobalDefinitions.h:50
l1t::gtAsymmetryEtHF
Definition: GlobalObject.h:34
GlobalCondition::m_condGEq
bool m_condGEq
the operator used for the condition (>=, =): true for >=
Definition: GlobalCondition.h:116
l1t::gtCentrality6
Definition: GlobalObject.h:42
l1t::gtMinBiasHFP0
Definition: GlobalObject.h:27
l1t::TypeMinBiasHFP1
Definition: GlobalDefinitions.h:64
l1t::TypeTowerCount
Definition: GlobalDefinitions.h:61
GlobalCondition::m_condName
std::string m_condName
the name of the condition
Definition: GlobalCondition.h:104
l1t::CondEnergySum
Definition: GlobalDefinitions.h:96
l1t::Type2wsc
Definition: GlobalDefinitions.h:52
l1t::gtETT
Definition: GlobalObject.h:22
l1t::TypeETMHF
Definition: GlobalDefinitions.h:60
l1t::TypeAsymHt
Definition: GlobalDefinitions.h:78
l1t::gtCentrality3
Definition: GlobalObject.h:39
l1t::TypeETTem
Definition: GlobalDefinitions.h:66
l1t::Type2s
Definition: GlobalDefinitions.h:51
l1t::TypeETT
Definition: GlobalDefinitions.h:57
GlobalCondition::m_condType
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GlobalCondition.h:110
l1t::TypeHTM
Definition: GlobalDefinitions.h:59
l1t::CondCorrelation
Definition: GlobalDefinitions.h:97
l1t::gtTau
Definition: GlobalObject.h:20
l1t::TypeExternal
Definition: GlobalDefinitions.h:67
l1t::CondExternal
Definition: GlobalDefinitions.h:98
l1t::TypeCent6
Definition: GlobalDefinitions.h:75
l1t::CondMuon
Definition: GlobalDefinitions.h:94
l1t::gtMinBiasHFM0
Definition: GlobalObject.h:28
l1t::TypeAsymHtHF
Definition: GlobalDefinitions.h:80
l1t::Type4s
Definition: GlobalDefinitions.h:55
l1t::TypeMinBiasHFM0
Definition: GlobalDefinitions.h:63
mps_fire.result
result
Definition: mps_fire.py:311
l1t::TypeCent0
Definition: GlobalDefinitions.h:69
l1t::gtCentrality2
Definition: GlobalObject.h:38
l1t::gtAsymmetryHtHF
Definition: GlobalObject.h:35