CMS 3D CMS Logo

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

#include <L1GtEnergySumTemplate.h>

Inheritance diagram for L1GtEnergySumTemplate:
L1GtCondition

Classes

struct  ObjectParameter
 typedef for a single object template More...
 

Public Member Functions

 L1GtEnergySumTemplate ()
 
 L1GtEnergySumTemplate (const std::string &)
 
 L1GtEnergySumTemplate (const std::string &, const L1GtConditionType &)
 
 L1GtEnergySumTemplate (const L1GtEnergySumTemplate &)
 
const std::vector< ObjectParameter > * objectParameter () const
 
L1GtEnergySumTemplateoperator= (const L1GtEnergySumTemplate &)
 
void print (std::ostream &myCout) const override
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &)
 set functions More...
 
 ~L1GtEnergySumTemplate () 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...
 

Private Member Functions

void copy (const L1GtEnergySumTemplate &cp)
 copy function for copy constructor and operator= More...
 
template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Private Attributes

std::vector< ObjectParameterm_objectParameter
 variables containing the parameters More...
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 
std::ostream & operator<< (std::ostream &, const L1GtEnergySumTemplate &)
 output stream operator More...
 

Additional Inherited Members

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

Detailed Description

Description: L1 Global Trigger energy-sum template.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Definition at line 34 of file L1GtEnergySumTemplate.h.

Constructor & Destructor Documentation

◆ L1GtEnergySumTemplate() [1/4]

L1GtEnergySumTemplate::L1GtEnergySumTemplate ( )

Definition at line 35 of file L1GtEnergySumTemplate.cc.

References CondEnergySum, and L1GtCondition::m_condCategory.

L1GtConditionCategory m_condCategory
the category of the condition

◆ L1GtEnergySumTemplate() [2/4]

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

Definition at line 37 of file L1GtEnergySumTemplate.cc.

References CondEnergySum, and L1GtCondition::m_condCategory.

37  : L1GtCondition(cName) {
39 }
L1GtConditionCategory m_condCategory
the category of the condition

◆ L1GtEnergySumTemplate() [3/4]

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

Definition at line 41 of file L1GtEnergySumTemplate.cc.

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

42  : L1GtCondition(cName, CondEnergySum, cType) {
44 
45  // should be always 1 - they are global quantities...
46  int nObjects = nrObjects();
47 
48  if (nObjects > 0) {
49  m_objectParameter.reserve(nObjects);
50  m_objectType.reserve(nObjects);
51  }
52 }
std::vector< L1GtObject > m_objectType
the trigger object type(s)
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
L1GtConditionCategory m_condCategory
the category of the condition
const int nrObjects() const
get number of trigger objects

◆ L1GtEnergySumTemplate() [4/4]

L1GtEnergySumTemplate::L1GtEnergySumTemplate ( const L1GtEnergySumTemplate cp)

Definition at line 55 of file L1GtEnergySumTemplate.cc.

References copy().

55  : L1GtCondition(cp.m_condName) {
56  copy(cp);
57 }
void copy(const L1GtEnergySumTemplate &cp)
copy function for copy constructor and operator=

◆ ~L1GtEnergySumTemplate()

L1GtEnergySumTemplate::~L1GtEnergySumTemplate ( )
override

Definition at line 60 of file L1GtEnergySumTemplate.cc.

60  {
61  // empty now
62 }

Member Function Documentation

◆ copy()

void L1GtEnergySumTemplate::copy ( const L1GtEnergySumTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 100 of file L1GtEnergySumTemplate.cc.

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

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

100  {
101  m_condName = cp.condName();
102  m_condCategory = cp.condCategory();
103  m_condType = cp.condType();
104  m_objectType = cp.objectType();
105  m_condGEq = cp.condGEq();
106  m_condChipNr = cp.condChipNr();
107 
108  m_objectParameter = *(cp.objectParameter());
109 }
std::vector< L1GtObject > m_objectType
the trigger object type(s)
L1GtConditionType m_condType
the type of the condition (1s, etc)
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
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

◆ objectParameter()

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

Definition at line 72 of file L1GtEnergySumTemplate.h.

References m_objectParameter.

Referenced by L1GtEnergySumCondition::evaluateCondition(), L1GtVhdlWriterCore::getEsumsSetupContentFromTriggerMenu(), and L1GtVmeWriterCore::writeVME().

72 { return &m_objectParameter; }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters

◆ operator=()

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

Definition at line 65 of file L1GtEnergySumTemplate.cc.

References copy().

65  {
66  copy(cp);
67  return *this;
68 }
void copy(const L1GtEnergySumTemplate &cp)
copy function for copy constructor and operator=

◆ print()

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

print the condition

Reimplemented from L1GtCondition.

Definition at line 75 of file L1GtEnergySumTemplate.cc.

References TauDecayModes::dec, mps_fire::i, L1GtCondition::m_condType, m_objectParameter, L1GtCondition::nrObjects(), L1GtCondition::print(), TypeETM, and TypeHTM.

Referenced by L1GtTriggerMenuXmlParser::parseEnergySum(), and L1GtEnergySumCondition::print().

75  {
76  myCout << "\n L1GtEnergySumTemplate print..." << std::endl;
77 
78  L1GtCondition::print(myCout);
79 
80  int nObjects = nrObjects();
81 
82  for (int i = 0; i < nObjects; i++) {
83  myCout << std::endl;
84  myCout << " Template for object " << i << " [ hex ]" << std::endl;
85  myCout << " etThreshold = " << std::hex << m_objectParameter[i].etThreshold << std::endl;
86  myCout << " energyOverflow = " << std::hex << m_objectParameter[0].energyOverflow << std::endl;
87 
88  if (m_condType == TypeETM) {
89  myCout << " phi = " << std::hex << m_objectParameter[i].phiRange1Word << std::hex
90  << m_objectParameter[i].phiRange0Word << std::endl;
91  } else if (m_condType == TypeHTM) {
92  myCout << " phi = " << std::hex << m_objectParameter[i].phiRange0Word << std::endl;
93  }
94  }
95 
96  // reset to decimal output
97  myCout << std::dec << std::endl;
98 }
L1GtConditionType m_condType
the type of the condition (1s, etc)
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
const int nrObjects() const
get number of trigger objects
virtual void print(std::ostream &myCout) const
print condition

◆ serialize()

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

◆ setConditionParameter()

void L1GtEnergySumTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter)

set functions

Definition at line 71 of file L1GtEnergySumTemplate.cc.

References m_objectParameter.

Referenced by L1GtTriggerMenuConfigOnlineProd::addCorrelationCondition(), L1GtTriggerMenuConfigOnlineProd::addEnergySumCondition(), and L1GtTriggerMenuXmlParser::parseEnergySum().

71  {
72  m_objectParameter = objParameter;
73 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters

Friends And Related Function Documentation

◆ boost::serialization::access

friend class boost::serialization::access
friend

Definition at line 91 of file L1GtEnergySumTemplate.h.

◆ cond::serialization::access

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

Definition at line 91 of file L1GtEnergySumTemplate.h.

◆ operator<<

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

output stream operator

Definition at line 112 of file L1GtEnergySumTemplate.cc.

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

Member Data Documentation

◆ m_objectParameter

std::vector<ObjectParameter> L1GtEnergySumTemplate::m_objectParameter
private

variables containing the parameters

Definition at line 89 of file L1GtEnergySumTemplate.h.

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