CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Attributes | Friends
GlobalCondition Class Reference

#include <GlobalCondition.h>

Inheritance diagram for GlobalCondition:
CaloTemplate CorrelationTemplate 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< 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< 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< 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$

Definition at line 35 of file GlobalCondition.h.

Constructor & Destructor Documentation

GlobalCondition::GlobalCondition ( )

constructor(s)

Definition at line 29 of file GlobalCondition.cc.

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

30 {
31 
34  m_condChipNr = -1;
35  m_condRelativeBx = 0;
36 
37  // the rest of private members are C++ initialized
38 }
int m_condChipNr
condition is located on condition chip m_condChipNr
l1t::GtConditionCategory m_condCategory
the category of the condition
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
GlobalCondition::GlobalCondition ( const std::string &  cName)

constructor from condition name

Definition at line 41 of file GlobalCondition.cc.

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

42 {
43  m_condName = cName;
44 
47  m_condChipNr = -1;
48  m_condRelativeBx = 0;
49 
50 }
std::string m_condName
the name of the condition
int m_condChipNr
condition is located on condition chip m_condChipNr
l1t::GtConditionCategory m_condCategory
the category of the condition
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
GlobalCondition::GlobalCondition ( const std::string &  cName,
const l1t::GtConditionCategory cCategory,
const l1t::GtConditionType cType 
)

constructor from condition name, category and type

Definition at line 53 of file GlobalCondition.cc.

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

56 {
57 
58  m_condName = cName;
59  m_condCategory = cCategory;
60  m_condType = cType;
61 
62  m_condChipNr = -1;
63  m_condRelativeBx = 0;
64 
65 }
std::string m_condName
the name of the condition
int m_condChipNr
condition is located on condition chip m_condChipNr
l1t::GtConditionCategory m_condCategory
the category of the condition
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
GlobalCondition::~GlobalCondition ( )
virtual

destructor

Definition at line 69 of file GlobalCondition.cc.

70 {
71  // empty
72 }

Member Function Documentation

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

get / set the category of the condition

Definition at line 68 of file GlobalCondition.h.

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

69  {
70  return m_condCategory;
71  }
l1t::GtConditionCategory m_condCategory
the category of the condition
const int& GlobalCondition::condChipNr ( ) const
inline

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

Definition at line 112 of file GlobalCondition.h.

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

113  {
114  return m_condChipNr;
115  }
int m_condChipNr
condition is located on condition chip m_condChipNr
const bool GlobalCondition::condGEq ( ) const
inline

get / set condition GEq flag

Definition at line 101 of file GlobalCondition.h.

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

102  {
103  return m_condGEq;
104  }
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
const std::string& GlobalCondition::condName ( ) const
inline

get / set condition name

Definition at line 57 of file GlobalCondition.h.

Referenced by ExternalTemplate::copy(), EnergySumTemplate::copy(), CaloTemplate::copy(), MuonTemplate::copy(), CorrelationTemplate::copy(), and l1t::TriggerMenuParser::insertConditionIntoMap().

58  {
59  return m_condName;
60  }
std::string m_condName
the name of the condition
const int& GlobalCondition::condRelativeBx ( ) const
inline

get / set the condition relative bx

Definition at line 123 of file GlobalCondition.h.

Referenced by ExternalTemplate::copy(), EnergySumTemplate::copy(), CaloTemplate::copy(), and MuonTemplate::copy().

124  {
125  return m_condRelativeBx;
126  }
const l1t::GtConditionType& GlobalCondition::condType ( ) const
inline

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

Definition at line 79 of file GlobalCondition.h.

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

80  {
81  return m_condType;
82  }
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
const bool GlobalCondition::corr ( ) const

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

Definition at line 145 of file GlobalCondition.cc.

References m_condType, and l1t::Type2cor.

146 {
147 
148  if (m_condType == l1t::Type2cor) {
149  return true;
150  }
151 
152  return false;
153 }
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
const int GlobalCondition::nrObjects ( ) const

get number of trigger objects

Definition at line 75 of file GlobalCondition.cc.

References m_condType, l1t::Type1s, l1t::Type2cor, l1t::Type2s, l1t::Type2wsc, l1t::Type3s, l1t::Type4s, 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(), EnergySumTemplate::EnergySumTemplate(), MuonTemplate::MuonTemplate(), EnergySumTemplate::print(), CaloTemplate::print(), and MuonTemplate::print().

76 {
77 
78  switch (m_condType) {
79 
80  case l1t::TypeNull:
81  case l1t::TypeExternal: {
82  return 0;
83  }
84 
85  break;
86  case l1t::Type1s: {
87  return 1;
88  }
89 
90  break;
91  case l1t::Type2s:
92  case l1t::Type2wsc:
93  case l1t::Type2cor: {
94  return 2;
95  }
96 
97  break;
98  case l1t::Type3s: {
99  return 3;
100  }
101 
102  break;
103  case l1t::Type4s: {
104  return 4;
105  }
106 
107  break;
108  case l1t::TypeETT:
109  case l1t::TypeETM:
110  case l1t::TypeHTT:
111  case l1t::TypeHTM:
112  case l1t::TypeETMHF:
113  case l1t::TypeTowerCount:
117  case l1t::TypeMinBiasHFM1: {
118  return 1;
119  }
120 
121  break;
122  default: {
123  // TODO no such type, throw exception?
124  return 0;
125  }
126  break;
127  }
128 
129 }
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
const std::vector<GlobalObject>& GlobalCondition::objectType ( ) const
inline

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

Definition at line 90 of file GlobalCondition.h.

Referenced by l1t::CaloCondition::CaloCondition(), ExternalTemplate::copy(), EnergySumTemplate::copy(), CaloTemplate::copy(), MuonTemplate::copy(), CorrelationTemplate::copy(), and l1t::CorrCondition::evaluateCondition().

91  {
92  return m_objectType;
93  }
std::vector< GlobalObject > m_objectType
the trigger object type(s)
void GlobalCondition::print ( std::ostream &  myCout) const
virtual

print condition

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

Definition at line 156 of file GlobalCondition.cc.

References l1t::CondCalo, l1t::CondCorrelation, l1t::CondEnergySum, l1t::CondExternal, l1t::CondMuon, l1t::CondNull, 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, i, m_condCategory, m_condChipNr, m_condGEq, m_condName, m_condRelativeBx, m_condType, m_objectType, l1t::Type1s, l1t::Type2cor, l1t::Type2s, l1t::Type2wsc, l1t::Type3s, l1t::Type4s, 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 operator<<(), ExternalTemplate::print(), EnergySumTemplate::print(), CaloTemplate::print(), MuonTemplate::print(), and CorrelationTemplate::print().

157 {
158 
159  myCout << "\n Condition name: " << m_condName << std::endl;
160 
161  switch (m_condCategory) {
162  case l1t::CondNull: {
163  myCout << " Condition category: " << "l1t::CondNull"
164  << " - it means not defined!"
165  << std::endl;
166  }
167 
168  break;
169  case l1t::CondMuon: {
170  myCout << " Condition category: " << "l1t::CondMuon" << std::endl;
171  }
172 
173  break;
174  case l1t::CondCalo: {
175  myCout << " Condition category: " << "l1t::CondCalo" << std::endl;
176  }
177 
178  break;
179  case l1t::CondEnergySum: {
180  myCout << " Condition category: " << "CondEnergySum" << std::endl;
181  }
182 
183  break;
184  case l1t::CondCorrelation: {
185  myCout << " Condition category: " << "CondCorrelation" << std::endl;
186  }
187 
188  break;
189  case l1t::CondExternal: {
190  myCout << " Condition category: " << "CondExternal" << std::endl;
191  }
192 
193  break;
194  default: {
195  myCout << " Condition category: " << m_condCategory
196  << " - no such category defined. Check l1t::GtConditionCategory enum."
197  << std::endl;
198 
199  }
200  break;
201  }
202 
203  switch (m_condType) {
204 
205  case l1t::TypeNull: {
206  myCout << " Condition type: " << "l1t::TypeNull"
207  << " - it means not defined!"
208  << std::endl;
209  }
210 
211  break;
212  case l1t::Type1s: {
213  myCout << " Condition type: " << "l1t::Type1s" << std::endl;
214  }
215 
216  break;
217  case l1t::Type2s: {
218  myCout << " Condition type: " << "l1t::Type2s" << std::endl;
219  }
220 
221  break;
222  case l1t::Type2wsc: {
223  myCout << " Condition type: " << "l1t::Type2wsc" << std::endl;
224  }
225 
226  break;
227  case l1t::Type2cor: {
228  myCout << " Condition type: " << "l1t::Type2cor" << std::endl;
229  }
230 
231  break;
232  case l1t::Type3s: {
233  myCout << " Condition type: " << "l1t::Type3s" << std::endl;
234  }
235 
236  break;
237  case l1t::Type4s: {
238  myCout << " Condition type: " << "l1t::Type4s" << std::endl;
239  }
240 
241  break;
242  case l1t::TypeETM: {
243  myCout << " Condition type: " << "TypeETM" << std::endl;
244  }
245 
246  break;
247  case l1t::TypeETT: {
248  myCout << " Condition type: " << "TypeETT" << std::endl;
249  }
250 
251  break;
252  case l1t::TypeHTT: {
253  myCout << " Condition type: " << "TypeHTT" << std::endl;
254  }
255 
256  break;
257  case l1t::TypeHTM: {
258  myCout << " Condition type: " << "TypeHTM" << std::endl;
259  }
260 
261  break;
262  case l1t::TypeETMHF: {
263  myCout << " Condition type: " << "TypeETMHF" << std::endl;
264  }
265 
266  break;
267  case l1t::TypeTowerCount: {
268  myCout << " Condition type: " << "TypeTowerCount" << std::endl;
269  }
270 
271  break;
272  case l1t::TypeMinBiasHFP0: {
273  myCout << " Condition type: " << "TypeMinBiasHFP0" << std::endl;
274  }
275 
276  break;
277  case l1t::TypeMinBiasHFM0: {
278  myCout << " Condition type: " << "TypeMinBiasHFM0" << std::endl;
279  }
280 
281  break;
282  case l1t::TypeMinBiasHFP1: {
283  myCout << " Condition type: " << "TypeMinBiasHFP1" << std::endl;
284  }
285 
286  break;
287  case l1t::TypeMinBiasHFM1: {
288  myCout << " Condition type: " << "TypeMinBiasHFM1" << std::endl;
289  }
290 
291  break;
292  case l1t::TypeETTem: {
293  myCout << " Condition type: " << "TypeETTem" << std::endl;
294  }
295 
296  break;
297  case l1t::TypeExternal: {
298  myCout << " Condition type: " << "TypeExternal" << std::endl;
299  }
300 
301  break;
302  default: {
303  myCout << " Condition type: " << m_condType
304  << " - no such type defined. Check l1t::GtConditionType enum."
305  << std::endl;
306  }
307  break;
308  }
309 
310 
311  myCout << " Object types: ";
312 
313  for (unsigned int i = 0; i < m_objectType.size(); ++i) {
314 
315  switch (m_objectType[i]) {
316  case l1t::gtMu: {
317  myCout << " Mu ";
318  }
319 
320  break;
321  case l1t::gtEG: {
322  myCout << " EG ";
323  }
324 
325  break;
326 
327  case l1t::gtJet: {
328  myCout << " Jet ";
329  }
330 
331  break;
332 
333  case l1t::gtTau: {
334  myCout << " Tau ";
335  }
336 
337  break;
338  case l1t::gtETM: {
339  myCout << " ETM ";
340  }
341 
342  break;
343  case l1t::gtETT: {
344  myCout << " ETT ";
345  }
346 
347  break;
348  case l1t::gtHTT: {
349  myCout << " HTT ";
350  }
351 
352  break;
353  case l1t::gtHTM: {
354  myCout << " HTM ";
355  }
356 
357  break;
358 
359  case l1t::gtETMHF: {
360  myCout << " ETMHF ";
361  }
362 
363  break;
364  case l1t::gtTowerCount: {
365  myCout << " TowerCount ";
366  }
367 
368  break;
369  case l1t::gtMinBiasHFP0: {
370  myCout << " MinBiasHFP0 ";
371  }
372 
373  break;
374  case l1t::gtMinBiasHFM0: {
375  myCout << " MinBiasHFM0 ";
376  }
377 
378  break;
379  case l1t::gtMinBiasHFP1: {
380  myCout << " MinBiasHFP1 ";
381  }
382 
383  break;
384  case l1t::gtMinBiasHFM1: {
385  myCout << " MinBiasHFM1 ";
386  }
387 
388  break;
389  case l1t::gtETTem: {
390  myCout << " ETTem ";
391  }
392 
393  break;
394  case l1t::gtExternal: {
395  myCout << " External ";
396  }
397 
398  break;
399  default: {
400  myCout << " Unknown type " << m_objectType[i];
401  }
402  break;
403  }
404  }
405 
406  myCout << std::endl;
407 
408  myCout << " \" >= \" flag: " << m_condGEq << std::endl;
409 
410  myCout << " Condition chip: " << m_condChipNr;
411 
412  if (m_condChipNr < 0) {
413  myCout << " - not properly initialized! ";
414  }
415 
416  myCout << std::endl;
417 
418  myCout << " Relative BX: " << m_condRelativeBx << std::endl;
419 
420 }
int i
Definition: DBlmapReader.cc:9
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
std::vector< GlobalObject > m_objectType
the trigger object type(s)
std::string m_condName
the name of the condition
int m_condChipNr
condition is located on condition chip m_condChipNr
l1t::GtConditionCategory m_condCategory
the category of the condition
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
void GlobalCondition::setCondCategory ( const l1t::GtConditionCategory cCategory)
inline

Definition at line 73 of file GlobalCondition.h.

74  {
75  m_condCategory = cCategory;
76  }
l1t::GtConditionCategory m_condCategory
the category of the condition
void GlobalCondition::setCondChipNr ( const int &  cChipNr)
inline
void GlobalCondition::setCondGEq ( const bool &  cGEq)
inline
void GlobalCondition::setCondName ( const std::string &  cName)
inline

Definition at line 62 of file GlobalCondition.h.

63  {
64  m_condName = cName;
65  }
std::string m_condName
the name of the condition
void GlobalCondition::setCondRelativeBx ( const int &  cRelativeBx)
inline
void GlobalCondition::setCondType ( const l1t::GtConditionType cType)
inline
void GlobalCondition::setObjectType ( const std::vector< GlobalObject > &  objType)
inline
const bool GlobalCondition::wsc ( ) const

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

Definition at line 133 of file GlobalCondition.cc.

References m_condType, and l1t::Type2wsc.

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

134 {
135 
136  if (m_condType == l1t::Type2wsc) {
137  return true;
138  }
139 
140  return false;
141 }
l1t::GtConditionType m_condType
the type of the condition (1s, etc)

Friends And Related Function Documentation

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

output stream operator

Definition at line 423 of file GlobalCondition.cc.

424 {
425  result.print(os);
426  return os;
427 
428 }
virtual void print(std::ostream &myCout) const
print condition

Member Data Documentation

l1t::GtConditionCategory GlobalCondition::m_condCategory
protected
int GlobalCondition::m_condChipNr
protected
bool GlobalCondition::m_condGEq
protected

the operator used for the condition (>=, =): true for >=

Definition at line 168 of file GlobalCondition.h.

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

std::string GlobalCondition::m_condName
protected
int GlobalCondition::m_condRelativeBx
protected
l1t::GtConditionType GlobalCondition::m_condType
protected
std::vector<GlobalObject> GlobalCondition::m_objectType
protected