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

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
 
const bool corrThree () const
 get logic flag for three-body conditions, trigger objects are muons More...
 
 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 = false
 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

features: R. Cavanaugh

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 40 of file CaloTemplate.h.

Constructor & Destructor Documentation

◆ CaloTemplate() [1/4]

CaloTemplate::CaloTemplate ( )

Definition at line 33 of file CaloTemplate.cc.

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

l1t::GtConditionCategory m_condCategory
the category of the condition

◆ CaloTemplate() [2/4]

CaloTemplate::CaloTemplate ( const std::string &  cName)

Definition at line 35 of file CaloTemplate.cc.

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

l1t::GtConditionCategory m_condCategory
the category of the condition

◆ CaloTemplate() [3/4]

CaloTemplate::CaloTemplate ( const std::string &  cName,
const l1t::GtConditionType cType 
)

Definition at line 37 of file CaloTemplate.cc.

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

38  : GlobalCondition(cName, l1t::CondCalo, cType) {
39  int nObjects = nrObjects();
40 
41  if (nObjects > 0) {
42  m_objectParameter.reserve(nObjects);
43 
44  m_objectType.reserve(nObjects);
45  }
46 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:122
const int nrObjects() const
get number of trigger objects
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)

◆ CaloTemplate() [4/4]

CaloTemplate::CaloTemplate ( const CaloTemplate cp)

Definition at line 49 of file CaloTemplate.cc.

References copy().

49 : GlobalCondition(cp.m_condName) { copy(cp); }
void copy(const CaloTemplate &cp)
copy function for copy constructor and operator=

◆ ~CaloTemplate()

CaloTemplate::~CaloTemplate ( )
override

Definition at line 52 of file CaloTemplate.cc.

52  {
53  // empty now
54 }

Member Function Documentation

◆ copy()

void CaloTemplate::copy ( const CaloTemplate cp)
protected

copy function for copy constructor and operator=

Definition at line 102 of file CaloTemplate.cc.

References GlobalCondition::m_condCategory, GlobalCondition::m_condChipNr, GlobalCondition::m_condGEq, GlobalCondition::m_condName, GlobalCondition::m_condRelativeBx, GlobalCondition::m_condType, m_correlationParameter, m_objectParameter, and GlobalCondition::m_objectType.

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

102  {
103  m_condName = cp.condName();
104  m_condCategory = cp.condCategory();
105  m_condType = cp.condType();
106  m_objectType = cp.objectType();
107  m_condGEq = cp.condGEq();
108  m_condChipNr = cp.condChipNr();
109  m_condRelativeBx = cp.condRelativeBx();
110 
111  m_objectParameter = *(cp.objectParameter());
112  m_correlationParameter = *(cp.correlationParameter());
113 }
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:123
bool m_condGEq
the operator used for the condition (>=, =): true for >=
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:122
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
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
l1t::GtConditionType m_condType
the type of the condition (1s, etc)

◆ correlationParameter()

const CorrelationParameter* CaloTemplate::correlationParameter ( ) const
inline

Definition at line 104 of file CaloTemplate.h.

References m_correlationParameter.

104 { return &m_correlationParameter; }
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:123

◆ objectParameter()

const std::vector<ObjectParameter>* CaloTemplate::objectParameter ( ) const
inline

Definition at line 102 of file CaloTemplate.h.

References m_objectParameter.

102 { return &m_objectParameter; }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:122

◆ operator=()

CaloTemplate & CaloTemplate::operator= ( const CaloTemplate cp)

Definition at line 57 of file CaloTemplate.cc.

References copy().

57  {
58  copy(cp);
59  return *this;
60 }
void copy(const CaloTemplate &cp)
copy function for copy constructor and operator=

◆ print()

void CaloTemplate::print ( std::ostream &  myCout) const
overridevirtual

print the condition

Reimplemented from GlobalCondition.

Definition at line 69 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 l1t::TriggerMenuParser::parseCalo(), and l1t::TriggerMenuParser::parseCaloCorr().

69  {
70  myCout << "\n CaloTemplate print..." << std::endl;
71 
72  GlobalCondition::print(myCout);
73 
74  int nObjects = nrObjects();
75 
76  for (int i = 0; i < nObjects; i++) {
77  myCout << std::endl;
78  myCout << " Template for object " << i << " [ hex ]" << std::endl;
79  myCout << " etThreshold = " << std::hex << m_objectParameter[i].etLowThreshold << " "
80  << m_objectParameter[i].etHighThreshold << std::endl;
81  myCout << " indexLow = " << std::hex << m_objectParameter[i].indexLow << std::endl;
82  myCout << " indexHigh = " << std::hex << m_objectParameter[i].indexHigh << std::endl;
83  myCout << " etaRange = " << std::hex << m_objectParameter[i].etaRange << std::endl;
84  myCout << " phiRange = " << std::hex << m_objectParameter[i].phiRange << std::endl;
85  myCout << " isolationLUT = " << std::hex << m_objectParameter[i].isolationLUT << std::endl;
86  myCout << " qualityLUT = " << std::hex << m_objectParameter[i].qualityLUT << std::endl;
87  }
88 
89  if (wsc()) {
90  myCout << " Correlation parameters "
91  << "[ hex ]" << std::endl;
92 
93  myCout << " deltaEtaRange = " << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
94  myCout << " deltaPhiRange = " << std::hex << m_correlationParameter.deltaPhiRange << std::endl;
95  myCout << " deltaPhiMaxbits = " << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
96  }
97 
98  // reset to decimal output
99  myCout << std::dec << std::endl;
100 }
const bool wsc() const
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:123
unsigned long long deltaEtaRange
Definition: CaloTemplate.h:89
unsigned long long deltaPhiRange
Definition: CaloTemplate.h:91
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:122
const int nrObjects() const
get number of trigger objects
virtual void print(std::ostream &myCout) const
print condition

◆ setConditionParameter()

void CaloTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter,
const CorrelationParameter corrParameter 
)

set functions

Definition at line 63 of file CaloTemplate.cc.

References m_correlationParameter, and m_objectParameter.

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

64  {
65  m_objectParameter = objParameter;
66  m_correlationParameter = corrParameter;
67 }
CorrelationParameter m_correlationParameter
Definition: CaloTemplate.h:123
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: CaloTemplate.h:122

Friends And Related Function Documentation

◆ operator<<

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

output stream operator

Definition at line 116 of file CaloTemplate.cc.

116  {
117  result.print(os);
118  return os;
119 }

Member Data Documentation

◆ m_correlationParameter

CorrelationParameter CaloTemplate::m_correlationParameter
protected

Definition at line 123 of file CaloTemplate.h.

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

◆ m_objectParameter

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

variables containing the parameters

Definition at line 122 of file CaloTemplate.h.

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