CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes | Friends
EnergySumTemplate Class Reference

#include <EnergySumTemplate.h>

Inheritance diagram for EnergySumTemplate:
GlobalCondition

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 &)
 
void print (std::ostream &myCout) const override
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &)
 set functions More...
 
 ~EnergySumTemplate () override
 
- Public Member Functions inherited from GlobalCondition
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...
 
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...
 

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 GlobalCondition
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...
 

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 33 of file EnergySumTemplate.cc.

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

34  : GlobalCondition()
35 {
36 
38 
39 }
l1t::GtConditionCategory m_condCategory
the category of the condition
EnergySumTemplate::EnergySumTemplate ( const std::string &  cName)

Definition at line 41 of file EnergySumTemplate.cc.

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

42  : GlobalCondition(cName)
43 {
44 
46 
47 }
l1t::GtConditionCategory m_condCategory
the category of the condition
EnergySumTemplate::EnergySumTemplate ( const std::string &  cName,
const l1t::GtConditionType cType 
)

Definition at line 49 of file EnergySumTemplate.cc.

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

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

Definition at line 66 of file EnergySumTemplate.cc.

References copy().

68 {
69  copy(cp);
70 }
void copy(const EnergySumTemplate &cp)
copy function for copy constructor and operator=
std::string m_condName
the name of the condition
EnergySumTemplate::~EnergySumTemplate ( )
override

Definition at line 73 of file EnergySumTemplate.cc.

74 {
75  // empty now
76 }

Member Function Documentation

void EnergySumTemplate::copy ( const EnergySumTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 134 of file EnergySumTemplate.cc.

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

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

135 {
136 
137  m_condName = cp.condName();
139  m_condType = cp.condType();
140  m_objectType = cp.objectType();
141  m_condGEq = cp.condGEq();
142  m_condChipNr = cp.condChipNr();
144 
146 
147 }
bool m_condGEq
the operator used for the condition (>=, =): true for >=
const bool condGEq() const
get / set condition GEq flag
const l1t::GtConditionCategory & condCategory() const
get / set the category of the condition
const l1t::GtConditionType & condType() const
get / set the type of the condition (1s, etc)
const std::vector< ObjectParameter > * objectParameter() const
const int & condRelativeBx() const
get / set the condition relative bx
const std::vector< l1t::GlobalObject > & objectType() const
get / set the trigger object type(s) in the condition
std::string m_condName
the name of the condition
const int & condChipNr() const
get / set the condition-chip number the condition is located on
int m_condChipNr
condition is located on condition chip m_condChipNr
l1t::GtConditionCategory m_condCategory
the category of the condition
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
const std::string & condName() const
get / set condition name
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
const std::vector<ObjectParameter>* EnergySumTemplate::objectParameter ( ) const
inline

Definition at line 77 of file EnergySumTemplate.h.

References copy(), SimDataFormats::CaloAnalysis::cp, m_objectParameter, operator<<, print(), and setConditionParameter().

Referenced by copy(), and l1t::EnergySumCondition::evaluateCondition().

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

Definition at line 79 of file EnergySumTemplate.cc.

References copy().

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

print the condition

Reimplemented from GlobalCondition.

Definition at line 96 of file EnergySumTemplate.cc.

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

Referenced by objectParameter(), operator<<(), l1t::TriggerMenuParser::parseEnergySum(), l1t::TriggerMenuParser::parseEnergySumCorr(), and l1t::EnergySumCondition::print().

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

set functions

Definition at line 88 of file EnergySumTemplate.cc.

References m_objectParameter.

Referenced by objectParameter(), l1t::TriggerMenuParser::parseEnergySum(), and l1t::TriggerMenuParser::parseEnergySumCorr().

90 {
91 
92  m_objectParameter = objParameter;
93 
94 }
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 150 of file EnergySumTemplate.cc.

Referenced by objectParameter().

151 {
152  result.print(os);
153  return os;
154 
155 }
void print(std::ostream &myCout) const override
print the condition

Member Data Documentation

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

variables containing the parameters

Definition at line 98 of file EnergySumTemplate.h.

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