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 | 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 &)
 
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 ~L1GtCaloTemplate ()
 
- 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::L1GtCaloTemplate ( )

Definition at line 35 of file L1GtCaloTemplate.cc.

References CondCalo, and L1GtCondition::m_condCategory.

36  : L1GtCondition()
37 {
38 
40 
41 }
L1GtConditionCategory m_condCategory
the category of the condition
L1GtCaloTemplate::L1GtCaloTemplate ( const std::string &  cName)

Definition at line 43 of file L1GtCaloTemplate.cc.

References CondCalo, and L1GtCondition::m_condCategory.

44  : L1GtCondition(cName)
45 {
46 
48 
49 }
L1GtConditionCategory m_condCategory
the category of the condition
L1GtCaloTemplate::L1GtCaloTemplate ( const std::string &  cName,
const L1GtConditionType cType 
)

Definition at line 51 of file L1GtCaloTemplate.cc.

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

52  : L1GtCondition(cName, 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 }
const int nrObjects() const
get number of trigger objects
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
std::vector< L1GtObject > m_objectType
the trigger object type(s)
L1GtCaloTemplate::L1GtCaloTemplate ( const L1GtCaloTemplate cp)

Definition at line 66 of file L1GtCaloTemplate.cc.

References copy().

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

Definition at line 73 of file L1GtCaloTemplate.cc.

74 {
75  // empty now
76 }

Member Function Documentation

void L1GtCaloTemplate::copy ( const L1GtCaloTemplate cp)
protected

copy function for copy constructor and operator=

Definition at line 134 of file L1GtCaloTemplate.cc.

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

Referenced by L1GtCaloTemplate(), 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();
143 
146 
147 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
const std::string & condName() const
get / set condition name
Definition: L1GtCondition.h:57
const int & condChipNr() const
get / set the condition-chip number the condition is located on
const std::vector< L1GtObject > & objectType() const
get / set the trigger object type(s) in the condition
Definition: L1GtCondition.h:90
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
const L1GtConditionType & condType() const
get / set the type of the condition (1s, etc)
Definition: L1GtCondition.h:79
std::string m_condName
the name of the condition
const L1GtConditionCategory & condCategory() const
get / set the category of the condition
Definition: L1GtCondition.h:68
const CorrelationParameter * correlationParameter() const
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
const bool condGEq() const
get / set condition GEq flag
const std::vector< ObjectParameter > * objectParameter() const
int m_condChipNr
condition is located on condition chip m_condChipNr
CorrelationParameter m_correlationParameter
const CorrelationParameter* L1GtCaloTemplate::correlationParameter ( ) const
inline

Definition at line 88 of file L1GtCaloTemplate.h.

References m_correlationParameter.

Referenced by copy(), L1GtCaloCondition::evaluateCondition(), and L1GtVhdlWriterCore::getCaloSetupContentFromTriggerMenu().

89  {
90  return &m_correlationParameter;
91  }
CorrelationParameter m_correlationParameter
const std::vector<ObjectParameter>* L1GtCaloTemplate::objectParameter ( ) const
inline
L1GtCaloTemplate & L1GtCaloTemplate::operator= ( const L1GtCaloTemplate cp)

Definition at line 79 of file L1GtCaloTemplate.cc.

References copy().

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

print the condition

Reimplemented from L1GtCondition.

Definition at line 98 of file L1GtCaloTemplate.cc.

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

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

99 {
100 
101  myCout << "\n L1GtCaloTemplate print..." << std::endl;
102 
103  L1GtCondition::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  }
117 
118  if ( wsc() ) {
119 
120  myCout << " Correlation parameters " << "[ hex ]" << std::endl;
121 
122  myCout << " deltaEtaRange = "
123  << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
124  myCout << " deltaPhiRange = "
125  << std::hex << m_correlationParameter.deltaPhiRange << std::endl;
126  myCout << " deltaPhiMaxbits = "
127  << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
128  }
129 
130  // reset to decimal output
131  myCout << std::dec << std::endl;
132 }
int i
Definition: DBlmapReader.cc:9
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
const bool wsc() const
CorrelationParameter m_correlationParameter
template<class Archive >
void L1GtCaloTemplate::serialize ( Archive &  ar,
const unsigned int  version 
)
private
void L1GtCaloTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter,
const CorrelationParameter corrParameter 
)

set functions

Definition at line 88 of file L1GtCaloTemplate.cc.

References m_correlationParameter, and m_objectParameter.

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

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

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 118 of file L1GtCaloTemplate.h.

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

Definition at line 118 of file L1GtCaloTemplate.h.

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

output stream operator

Definition at line 150 of file L1GtCaloTemplate.cc.

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

Member Data Documentation

CorrelationParameter L1GtCaloTemplate::m_correlationParameter
protected

Definition at line 115 of file L1GtCaloTemplate.h.

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

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

variables containing the parameters

Definition at line 114 of file L1GtCaloTemplate.h.

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