CMS 3D CMS Logo

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

#include <EnergySumTemplate.h>

Inheritance diagram for EnergySumTemplate:
GtCondition

Classes

struct  ObjectParameter
 typedef for a single object template More...
 

Public Member Functions

 EnergySumTemplate ()
 
 EnergySumTemplate (const std::string &)
 
 EnergySumTemplate (const std::string &, const l1t::GtConditionType &)
 
 EnergySumTemplate (const EnergySumTemplate &)
 
const std::vector
< ObjectParameter > * 
objectParameter () const
 
EnergySumTemplateoperator= (const EnergySumTemplate &)
 
virtual void print (std::ostream &myCout) const
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &)
 set functions More...
 
virtual ~EnergySumTemplate ()
 
- Public Member Functions inherited from GtCondition
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
 
 GtCondition ()
 
 GtCondition (const std::string &)
 constructor from condition name More...
 
 GtCondition (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< L1GtObject > & objectType () const
 get / set the trigger object type(s) in the 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< L1GtObject > &objType)
 
const bool wsc () const
 
virtual ~GtCondition ()
 destructor More...
 

Private Member Functions

void copy (const EnergySumTemplate &cp)
 copy function for copy constructor and operator= More...
 

Private Attributes

std::vector< ObjectParameterm_objectParameter
 variables containing the parameters More...
 

Friends

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

Additional Inherited Members

- Protected Attributes inherited from GtCondition
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< L1GtObjectm_objectType
 the trigger object type(s) More...
 

Detailed Description

Description: L1 Global Trigger energy-sum template.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Definition at line 32 of file EnergySumTemplate.h.

Constructor & Destructor Documentation

EnergySumTemplate::EnergySumTemplate ( )

Definition at line 35 of file EnergySumTemplate.cc.

References l1t::CondEnergySum, and GtCondition::m_condCategory.

36  : GtCondition()
37 {
38 
40 
41 }
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
EnergySumTemplate::EnergySumTemplate ( const std::string &  cName)

Definition at line 43 of file EnergySumTemplate.cc.

References l1t::CondEnergySum, and GtCondition::m_condCategory.

44  : GtCondition(cName)
45 {
46 
48 
49 }
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
EnergySumTemplate::EnergySumTemplate ( const std::string &  cName,
const l1t::GtConditionType cType 
)

Definition at line 51 of file EnergySumTemplate.cc.

References l1t::CondEnergySum, GtCondition::m_condCategory, m_objectParameter, GtCondition::m_objectType, and GtCondition::nrObjects().

52  : GtCondition(cName, l1t::CondEnergySum, cType)
53 {
54 
56 
57  // should be always 1 - they are global quantities...
58  int nObjects = nrObjects();
59 
60  if (nObjects > 0) {
61  m_objectParameter.reserve(nObjects);
62  m_objectType.reserve(nObjects);
63  }
64 
65 }
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:164
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
EnergySumTemplate::EnergySumTemplate ( const EnergySumTemplate cp)

Definition at line 68 of file EnergySumTemplate.cc.

References copy().

70 {
71  copy(cp);
72 }
void copy(const EnergySumTemplate &cp)
copy function for copy constructor and operator=
std::string m_condName
the name of the condition
Definition: GtCondition.h:155
EnergySumTemplate::~EnergySumTemplate ( )
virtual

Definition at line 75 of file EnergySumTemplate.cc.

76 {
77  // empty now
78 }

Member Function Documentation

void EnergySumTemplate::copy ( const EnergySumTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 132 of file EnergySumTemplate.cc.

References GtCondition::condCategory(), GtCondition::condChipNr(), GtCondition::condGEq(), GtCondition::condName(), GtCondition::condRelativeBx(), GtCondition::condType(), GtCondition::m_condCategory, GtCondition::m_condChipNr, GtCondition::m_condGEq, GtCondition::m_condName, GtCondition::m_condRelativeBx, GtCondition::m_condType, m_objectParameter, GtCondition::m_objectType, objectParameter(), and GtCondition::objectType().

Referenced by EnergySumTemplate(), and operator=().

133 {
134 
135  m_condName = cp.condName();
137  m_condType = cp.condType();
138  m_objectType = cp.objectType();
139  m_condGEq = cp.condGEq();
140  m_condChipNr = cp.condChipNr();
142 
144 
145 }
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
Definition: GtCondition.h:167
const int & condChipNr() const
get / set the condition-chip number the condition is located on
Definition: GtCondition.h:111
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:161
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GtCondition.h:170
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:164
const std::vector< ObjectParameter > * objectParameter() const
std::string m_condName
the name of the condition
Definition: GtCondition.h:155
const int & condRelativeBx() const
get / set the condition relative bx
Definition: GtCondition.h:122
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:158
const l1t::GtConditionType & condType() const
get / set the type of the condition (1s, etc)
Definition: GtCondition.h:78
const std::vector< L1GtObject > & objectType() const
get / set the trigger object type(s) in the condition
Definition: GtCondition.h:89
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
const std::string & condName() const
get / set condition name
Definition: GtCondition.h:56
const l1t::GtConditionCategory & condCategory() const
get / set the category of the condition
Definition: GtCondition.h:67
int m_condRelativeBx
Definition: GtCondition.h:173
const bool condGEq() const
get / set condition GEq flag
Definition: GtCondition.h:100
const std::vector<ObjectParameter>* EnergySumTemplate::objectParameter ( ) const
inline

Definition at line 76 of file EnergySumTemplate.h.

References m_objectParameter.

Referenced by copy().

76  {
77  return &m_objectParameter;
78  }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
EnergySumTemplate & EnergySumTemplate::operator= ( const EnergySumTemplate cp)

Definition at line 81 of file EnergySumTemplate.cc.

References copy().

82 {
83 
84  copy(cp);
85  return *this;
86 }
void copy(const EnergySumTemplate &cp)
copy function for copy constructor and operator=
void EnergySumTemplate::print ( std::ostream &  myCout) const
virtual

print the condition

Reimplemented from GtCondition.

Definition at line 98 of file EnergySumTemplate.cc.

References TauDecayModes::dec, i, GtCondition::m_condType, m_objectParameter, GtCondition::nrObjects(), GtCondition::print(), l1t::TypeETM, and l1t::TypeHTM.

Referenced by operator<<(), and l1t::TriggerMenuXmlParser::parseEnergySum().

99 {
100 
101  myCout << "\n EnergySumTemplate print..." << std::endl;
102 
103  GtCondition::print(myCout);
104 
105  int nObjects = nrObjects();
106 
107  for (int i = 0; i < nObjects; i++) {
108  myCout << std::endl;
109  myCout << " Template for object " << i << " [ hex ]" << std::endl;
110  myCout << " etThreshold = "
111  << std::hex << m_objectParameter[i].etThreshold << std::endl;
112  myCout << " energyOverflow = "
113  << std::hex << m_objectParameter[0].energyOverflow << std::endl;
114 
115  if (m_condType == l1t::TypeETM) {
116  myCout << " phi = "
117  << std::hex << m_objectParameter[i].phiRange1Word
118  << std::hex << m_objectParameter[i].phiRange0Word
119  << std::endl;
120  } else if (m_condType == l1t::TypeHTM) {
121  myCout << " phi = "
122  << std::hex << m_objectParameter[i].phiRange0Word
123  << std::endl;
124  }
125 
126  }
127 
128  // reset to decimal output
129  myCout << std::dec << std::endl;
130 }
int i
Definition: DBlmapReader.cc:9
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:161
virtual void print(std::ostream &myCout) const
print condition
Definition: GtCondition.cc:154
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
void EnergySumTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter)

set functions

Definition at line 90 of file EnergySumTemplate.cc.

References m_objectParameter.

Referenced by l1t::TriggerMenuXmlParser::parseEnergySum().

92 {
93 
94  m_objectParameter = objParameter;
95 
96 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters

Friends And Related Function Documentation

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

output stream operator

Definition at line 148 of file EnergySumTemplate.cc.

149 {
150  result.print(os);
151  return os;
152 
153 }
virtual void print(std::ostream &myCout) const
print the condition

Member Data Documentation

std::vector<ObjectParameter> EnergySumTemplate::m_objectParameter
private

variables containing the parameters

Definition at line 97 of file EnergySumTemplate.h.

Referenced by copy(), EnergySumTemplate(), objectParameter(), print(), and setConditionParameter().