CMS 3D CMS Logo

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

#include <L1GtCaloTemplate.h>

Inheritance diagram for L1GtCaloTemplate:
L1GtCondition

Classes

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

Public Member Functions

const CorrelationParametercorrelationParameter () const
 
 L1GtCaloTemplate ()
 
 L1GtCaloTemplate (const std::string &)
 
 L1GtCaloTemplate (const std::string &, const L1GtConditionType &)
 
 L1GtCaloTemplate (const L1GtCaloTemplate &)
 
const std::vector< ObjectParameter > * objectParameter () const
 
L1GtCaloTemplateoperator= (const L1GtCaloTemplate &)
 
void print (std::ostream &myCout) const override
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &objParameter, const CorrelationParameter &corrParameter)
 set functions More...
 
 ~L1GtCaloTemplate () override
 
- Public Member Functions inherited from L1GtCondition
const L1GtConditionCategorycondCategory () 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 L1GtConditionTypecondType () const
 get / set the type of the condition (1s, etc) More...
 
const bool corr () const
 
 L1GtCondition ()
 
 L1GtCondition (const std::string &)
 constructor from condition name More...
 
 L1GtCondition (const std::string &, const L1GtConditionCategory &, const L1GtConditionType &)
 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 L1GtConditionCategory &cCategory)
 
void setCondChipNr (const int &cChipNr)
 
void setCondGEq (const bool &cGEq)
 
void setCondName (const std::string &cName)
 
void setCondType (const L1GtConditionType &cType)
 
void setObjectType (const std::vector< L1GtObject > &objType)
 
const bool wsc () const
 
virtual ~L1GtCondition ()
 destructor More...
 

Protected Member Functions

void copy (const L1GtCaloTemplate &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 L1GtCondition
L1GtConditionCategory 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...
 
L1GtConditionType m_condType
 the type of the condition (1s, etc) More...
 
std::vector< L1GtObjectm_objectType
 the trigger object type(s) More...
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 
std::ostream & operator<< (std::ostream &, const L1GtCaloTemplate &)
 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 34 of file L1GtCaloTemplate.h.

Constructor & Destructor Documentation

◆ L1GtCaloTemplate() [1/4]

L1GtCaloTemplate::L1GtCaloTemplate ( )

Definition at line 35 of file L1GtCaloTemplate.cc.

References CondCalo, and L1GtCondition::m_condCategory.

L1GtConditionCategory m_condCategory
the category of the condition

◆ L1GtCaloTemplate() [2/4]

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

Definition at line 37 of file L1GtCaloTemplate.cc.

References CondCalo, and L1GtCondition::m_condCategory.

L1GtConditionCategory m_condCategory
the category of the condition

◆ L1GtCaloTemplate() [3/4]

L1GtCaloTemplate::L1GtCaloTemplate ( const std::string &  cName,
const L1GtConditionType cType 
)

Definition at line 39 of file L1GtCaloTemplate.cc.

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

40  : L1GtCondition(cName, CondCalo, cType) {
41  int nObjects = nrObjects();
42 
43  if (nObjects > 0) {
44  m_objectParameter.reserve(nObjects);
45 
46  m_objectType.reserve(nObjects);
47  }
48 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
std::vector< L1GtObject > m_objectType
the trigger object type(s)
const int nrObjects() const
get number of trigger objects

◆ L1GtCaloTemplate() [4/4]

L1GtCaloTemplate::L1GtCaloTemplate ( const L1GtCaloTemplate cp)

Definition at line 51 of file L1GtCaloTemplate.cc.

References copy().

51 : L1GtCondition(cp.m_condName) { copy(cp); }
void copy(const L1GtCaloTemplate &cp)
copy function for copy constructor and operator=

◆ ~L1GtCaloTemplate()

L1GtCaloTemplate::~L1GtCaloTemplate ( )
override

Definition at line 54 of file L1GtCaloTemplate.cc.

54  {
55  // empty now
56 }

Member Function Documentation

◆ copy()

void L1GtCaloTemplate::copy ( const L1GtCaloTemplate cp)
protected

copy function for copy constructor and operator=

Definition at line 99 of file L1GtCaloTemplate.cc.

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

Referenced by SequenceTypes._TaskBase::copyAndAdd(), L1GtCaloTemplate(), and operator=().

99  {
100  m_condName = cp.condName();
101  m_condCategory = cp.condCategory();
102  m_condType = cp.condType();
103  m_objectType = cp.objectType();
104  m_condGEq = cp.condGEq();
105  m_condChipNr = cp.condChipNr();
106 
107  m_objectParameter = *(cp.objectParameter());
108  m_correlationParameter = *(cp.correlationParameter());
109 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
std::vector< L1GtObject > m_objectType
the trigger object type(s)
L1GtConditionType m_condType
the type of the condition (1s, etc)
L1GtConditionCategory m_condCategory
the category of the condition
std::string m_condName
the name of the condition
bool m_condGEq
the operator used for the condition (>=, =): true for >=
int m_condChipNr
condition is located on condition chip m_condChipNr
CorrelationParameter m_correlationParameter

◆ correlationParameter()

const CorrelationParameter* L1GtCaloTemplate::correlationParameter ( ) const
inline

◆ objectParameter()

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

◆ operator=()

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

Definition at line 59 of file L1GtCaloTemplate.cc.

References copy().

59  {
60  copy(cp);
61  return *this;
62 }
void copy(const L1GtCaloTemplate &cp)
copy function for copy constructor and operator=

◆ print()

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

print the condition

Reimplemented from L1GtCondition.

Definition at line 71 of file L1GtCaloTemplate.cc.

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

Referenced by L1GtTriggerMenuXmlParser::parseCalo(), and L1GtCaloCondition::print().

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

◆ serialize()

template<class Archive >
void L1GtCaloTemplate::serialize ( Archive &  ar,
const unsigned int  version 
)
private

◆ setConditionParameter()

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

set functions

Definition at line 65 of file L1GtCaloTemplate.cc.

References m_correlationParameter, and m_objectParameter.

Referenced by L1GtTriggerMenuConfigOnlineProd::addCaloCondition(), L1GtTriggerMenuConfigOnlineProd::addCorrelationCondition(), and L1GtTriggerMenuXmlParser::parseCalo().

66  {
67  m_objectParameter = objParameter;
68  m_correlationParameter = corrParameter;
69 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
CorrelationParameter m_correlationParameter

Friends And Related Function Documentation

◆ boost::serialization::access

friend class boost::serialization::access
friend

Definition at line 98 of file L1GtCaloTemplate.h.

◆ cond::serialization::access

template<typename CondSerializationT , typename Enabled >
friend struct cond::serialization::access
friend

Definition at line 98 of file L1GtCaloTemplate.h.

◆ operator<<

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

output stream operator

Definition at line 112 of file L1GtCaloTemplate.cc.

112  {
113  result.print(os);
114  return os;
115 }

Member Data Documentation

◆ m_correlationParameter

CorrelationParameter L1GtCaloTemplate::m_correlationParameter
protected

Definition at line 96 of file L1GtCaloTemplate.h.

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

◆ m_objectParameter

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

variables containing the parameters

Definition at line 95 of file L1GtCaloTemplate.h.

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