CMS 3D CMS Logo

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

#include <CaloTemplate.h>

Inheritance diagram for CaloTemplate:
GlobalCondition

Classes

struct  CorrelationParameter
 typedef for correlation parameters More...
 
struct  ObjectParameter
 typedef for a single object template More...
 

Public Member Functions

 CaloTemplate ()
 
 CaloTemplate (const std::string &)
 
 CaloTemplate (const std::string &, const l1t::GtConditionType &)
 
 CaloTemplate (const CaloTemplate &)
 
const CorrelationParametercorrelationParameter () const
 
const std::vector< ObjectParameter > * objectParameter () const
 
CaloTemplateoperator= (const CaloTemplate &)
 
void print (std::ostream &myCout) const override
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &objParameter, const CorrelationParameter &corrParameter)
 set functions More...
 
 ~CaloTemplate () 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...
 

Protected Member Functions

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

Protected Attributes

CorrelationParameter m_correlationParameter
 
std::vector< ObjectParameterm_objectParameter
 variables containing the parameters More...
 
- 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...
 

Friends

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

Detailed Description

Description: L1 Global Trigger calo template.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna Vladimir Rekovic - exted for indexing

$Date$ $Revision$

Description: L1 Global Trigger calo template.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna Vladimir Rekovic - extend for indexing

$Date$ $Revision$

Definition at line 33 of file CaloTemplate.h.

Constructor & Destructor Documentation

CaloTemplate::CaloTemplate ( )

Definition at line 34 of file CaloTemplate.cc.

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

35  : GlobalCondition()
36 {
37 
39 
40 }
l1t::GtConditionCategory m_condCategory
the category of the condition
CaloTemplate::CaloTemplate ( const std::string &  cName)

Definition at line 42 of file CaloTemplate.cc.

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

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

Definition at line 50 of file CaloTemplate.cc.

References m_objectParameter, GlobalCondition::m_objectType, and GlobalCondition::nrObjects().

51  : GlobalCondition(cName, l1t::CondCalo, cType)
52 {
53 
54  int nObjects = nrObjects();
55 
56  if (nObjects > 0) {
57  m_objectParameter.reserve(nObjects);
58 
59  m_objectType.reserve(nObjects);
60  }
61 
62 }
const int nrObjects() const
get number of trigger objects
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:133
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
CaloTemplate::CaloTemplate ( const CaloTemplate cp)

Definition at line 65 of file CaloTemplate.cc.

References copy().

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

Definition at line 72 of file CaloTemplate.cc.

73 {
74  // empty now
75 }

Member Function Documentation

void CaloTemplate::copy ( const CaloTemplate cp)
protected

copy function for copy constructor and operator=

Definition at line 141 of file CaloTemplate.cc.

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

Referenced by CaloTemplate(), correlationParameter(), and operator=().

142 {
143 
144  m_condName = cp.condName();
146  m_condType = cp.condType();
147  m_objectType = cp.objectType();
148  m_condGEq = cp.condGEq();
149  m_condChipNr = cp.condChipNr();
151 
154 
155 }
const std::vector< ObjectParameter > * objectParameter() const
Definition: CaloTemplate.h:102
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:134
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 int & condRelativeBx() const
get / set the condition relative bx
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:133
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
const std::string & condName() const
get / set condition name
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
const CorrelationParameter * correlationParameter() const
Definition: CaloTemplate.h:107
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
const CorrelationParameter* CaloTemplate::correlationParameter ( ) const
inline

Definition at line 107 of file CaloTemplate.h.

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

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

108  {
109  return &m_correlationParameter;
110  }
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:134
const std::vector<ObjectParameter>* CaloTemplate::objectParameter ( ) const
inline

Definition at line 102 of file CaloTemplate.h.

References m_objectParameter.

Referenced by l1t::CaloCondition::checkObjectParameter(), and copy().

103  {
104  return &m_objectParameter;
105  }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:133
CaloTemplate & CaloTemplate::operator= ( const CaloTemplate cp)

Definition at line 78 of file CaloTemplate.cc.

References copy().

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

print the condition

Reimplemented from GlobalCondition.

Definition at line 97 of file CaloTemplate.cc.

References TauDecayModes::dec, CaloTemplate::CorrelationParameter::deltaEtaRange, CaloTemplate::CorrelationParameter::deltaPhiMaxbits, CaloTemplate::CorrelationParameter::deltaPhiRange, mps_fire::i, m_correlationParameter, m_objectParameter, GlobalCondition::nrObjects(), GlobalCondition::print(), and GlobalCondition::wsc().

Referenced by correlationParameter(), operator<<(), l1t::TriggerMenuParser::parseCalo(), l1t::TriggerMenuParser::parseCaloCorr(), and l1t::CaloCondition::print().

98 {
99 
100  myCout << "\n CaloTemplate print..." << std::endl;
101 
102  GlobalCondition::print(myCout);
103 
104  int nObjects = nrObjects();
105 
106  for (int i = 0; i < nObjects; i++) {
107  myCout << std::endl;
108  myCout << " Template for object " << i << " [ hex ]" << std::endl;
109  myCout << " etThreshold = "
110  << std::hex << m_objectParameter[i].etLowThreshold << " " << m_objectParameter[i].etHighThreshold << std::endl;
111  myCout << " indexLow = "
112  << std::hex << m_objectParameter[i].indexLow << std::endl;
113  myCout << " indexHigh = "
114  << std::hex << m_objectParameter[i].indexHigh << std::endl;
115  myCout << " etaRange = "
116  << std::hex << m_objectParameter[i].etaRange << std::endl;
117  myCout << " phiRange = "
118  << std::hex << m_objectParameter[i].phiRange << std::endl;
119  myCout << " isolationLUT = "
120  << std::hex << m_objectParameter[i].isolationLUT << std::endl;
121  myCout << " qualityLUT = "
122  << std::hex << m_objectParameter[i].qualityLUT << std::endl;
123  }
124 
125  if ( wsc() ) {
126 
127  myCout << " Correlation parameters " << "[ hex ]" << std::endl;
128 
129  myCout << " deltaEtaRange = "
130  << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
131  myCout << " deltaPhiRange = "
132  << std::hex << m_correlationParameter.deltaPhiRange << std::endl;
133  myCout << " deltaPhiMaxbits = "
134  << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
135  }
136 
137  // reset to decimal output
138  myCout << std::dec << std::endl;
139 }
const int nrObjects() const
get number of trigger objects
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:134
unsigned long long deltaEtaRange
Definition: CaloTemplate.h:86
unsigned long long deltaPhiRange
Definition: CaloTemplate.h:88
const bool wsc() const
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:133
virtual void print(std::ostream &myCout) const
print condition
void CaloTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter,
const CorrelationParameter corrParameter 
)

set functions

Definition at line 87 of file CaloTemplate.cc.

References m_correlationParameter, and m_objectParameter.

Referenced by correlationParameter(), l1t::TriggerMenuParser::parseCalo(), and l1t::TriggerMenuParser::parseCaloCorr().

90 {
91 
92  m_objectParameter = objParameter;
93  m_correlationParameter = corrParameter;
94 
95 }
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:134
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:133

Friends And Related Function Documentation

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

output stream operator

Definition at line 158 of file CaloTemplate.cc.

Referenced by correlationParameter().

159 {
160  result.print(os);
161  return os;
162 
163 }
void print(std::ostream &myCout) const override
print the condition
Definition: CaloTemplate.cc:97

Member Data Documentation

CorrelationParameter CaloTemplate::m_correlationParameter
protected

Definition at line 134 of file CaloTemplate.h.

Referenced by copy(), correlationParameter(), print(), and setConditionParameter().

std::vector<ObjectParameter> CaloTemplate::m_objectParameter
protected

variables containing the parameters

Definition at line 133 of file CaloTemplate.h.

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