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 | Protected Member Functions | Protected Attributes | Friends
CaloTemplate Class Reference

#include <CaloTemplate.h>

Inheritance diagram for CaloTemplate:
GtCondition

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 &)
 
virtual void print (std::ostream &myCout) const
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &objParameter, const CorrelationParameter &corrParameter)
 set functions More...
 
virtual ~CaloTemplate ()
 
- 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...
 

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

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

$Date$ $Revision$

Definition at line 32 of file CaloTemplate.h.

Constructor & Destructor Documentation

CaloTemplate::CaloTemplate ( )

Definition at line 35 of file CaloTemplate.cc.

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

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

Definition at line 43 of file CaloTemplate.cc.

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

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

Definition at line 51 of file CaloTemplate.cc.

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

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

Definition at line 66 of file CaloTemplate.cc.

References copy().

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

Definition at line 73 of file CaloTemplate.cc.

74 {
75  // empty now
76 }

Member Function Documentation

void CaloTemplate::copy ( const CaloTemplate cp)
protected

copy function for copy constructor and operator=

Definition at line 136 of file CaloTemplate.cc.

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

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

137 {
138 
139  m_condName = cp.condName();
141  m_condType = cp.condType();
142  m_objectType = cp.objectType();
143  m_condGEq = cp.condGEq();
144  m_condChipNr = cp.condChipNr();
146 
149 
150 }
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
Definition: GtCondition.h:167
const std::vector< ObjectParameter > * objectParameter() const
Definition: CaloTemplate.h:97
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
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:129
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:164
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:128
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
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 CorrelationParameter * correlationParameter() const
Definition: CaloTemplate.h:102
const CorrelationParameter* CaloTemplate::correlationParameter ( ) const
inline

Definition at line 102 of file CaloTemplate.h.

References m_correlationParameter.

Referenced by copy().

103  {
104  return &m_correlationParameter;
105  }
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:129
const std::vector<ObjectParameter>* CaloTemplate::objectParameter ( ) const
inline

Definition at line 97 of file CaloTemplate.h.

References m_objectParameter.

Referenced by copy().

98  {
99  return &m_objectParameter;
100  }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:128
CaloTemplate & CaloTemplate::operator= ( const CaloTemplate cp)

Definition at line 79 of file CaloTemplate.cc.

References copy().

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

print the condition

Reimplemented from GtCondition.

Definition at line 98 of file CaloTemplate.cc.

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

Referenced by operator<<().

99 {
100 
101  myCout << "\n CaloTemplate 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 << " etaRange = "
113  << std::hex << m_objectParameter[i].etaRange << std::endl;
114  myCout << " phiRange = "
115  << std::hex << m_objectParameter[i].phiRange << std::endl;
116  myCout << " isolationLUT = "
117  << std::hex << m_objectParameter[i].isolationLUT << std::endl;
118  }
119 
120  if ( wsc() ) {
121 
122  myCout << " Correlation parameters " << "[ hex ]" << std::endl;
123 
124  myCout << " deltaEtaRange = "
125  << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
126  myCout << " deltaPhiRange = "
127  << std::hex << m_correlationParameter.deltaPhiRange << std::endl;
128  myCout << " deltaPhiMaxbits = "
129  << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
130  }
131 
132  // reset to decimal output
133  myCout << std::dec << std::endl;
134 }
int i
Definition: DBlmapReader.cc:9
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:129
unsigned long long deltaEtaRange
Definition: CaloTemplate.h:81
unsigned long long deltaPhiRange
Definition: CaloTemplate.h:83
virtual void print(std::ostream &myCout) const
print condition
Definition: GtCondition.cc:154
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:128
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
const bool wsc() const
Definition: GtCondition.cc:131
void CaloTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter,
const CorrelationParameter corrParameter 
)

set functions

Definition at line 88 of file CaloTemplate.cc.

References m_correlationParameter, and m_objectParameter.

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

Friends And Related Function Documentation

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

output stream operator

Definition at line 153 of file CaloTemplate.cc.

154 {
155  result.print(os);
156  return os;
157 
158 }
virtual void print(std::ostream &myCout) const
print the condition
Definition: CaloTemplate.cc:98

Member Data Documentation

CorrelationParameter CaloTemplate::m_correlationParameter
protected

Definition at line 129 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 128 of file CaloTemplate.h.

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