CMS 3D CMS Logo

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

#include <L1GtHfBitCountsTemplate.h>

Inheritance diagram for L1GtHfBitCountsTemplate:
L1GtCondition

Classes

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

Public Member Functions

 L1GtHfBitCountsTemplate ()
 
 L1GtHfBitCountsTemplate (const std::string &)
 
 L1GtHfBitCountsTemplate (const std::string &, const L1GtConditionType &)
 
 L1GtHfBitCountsTemplate (const L1GtHfBitCountsTemplate &)
 
const std::vector< ObjectParameter > * objectParameter () const
 
L1GtHfBitCountsTemplateoperator= (const L1GtHfBitCountsTemplate &)
 
void print (std::ostream &myCout) const override
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &)
 set functions More...
 
 ~L1GtHfBitCountsTemplate () 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 L1GtHfBitCountsTemplate &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 L1GtHfBitCountsTemplate &)
 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 "HF bit counts" template.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Definition at line 34 of file L1GtHfBitCountsTemplate.h.

Constructor & Destructor Documentation

◆ L1GtHfBitCountsTemplate() [1/4]

L1GtHfBitCountsTemplate::L1GtHfBitCountsTemplate ( )

Definition at line 35 of file L1GtHfBitCountsTemplate.cc.

References CondHfBitCounts, and L1GtCondition::m_condCategory.

L1GtConditionCategory m_condCategory
the category of the condition

◆ L1GtHfBitCountsTemplate() [2/4]

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

Definition at line 37 of file L1GtHfBitCountsTemplate.cc.

References CondHfBitCounts, and L1GtCondition::m_condCategory.

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

◆ L1GtHfBitCountsTemplate() [3/4]

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

Definition at line 41 of file L1GtHfBitCountsTemplate.cc.

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

42  : L1GtCondition(cName, CondHfBitCounts, 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 
51  m_objectType.reserve(nObjects);
52  m_objectType.assign(nObjects, HfBitCounts);
53  }
54 }
std::vector< L1GtObject > m_objectType
the trigger object type(s)
L1GtConditionCategory m_condCategory
the category of the condition
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
const int nrObjects() const
get number of trigger objects

◆ L1GtHfBitCountsTemplate() [4/4]

L1GtHfBitCountsTemplate::L1GtHfBitCountsTemplate ( const L1GtHfBitCountsTemplate cp)

Definition at line 57 of file L1GtHfBitCountsTemplate.cc.

References copy().

57  : L1GtCondition(cp.m_condName) {
58  copy(cp);
59 }
void copy(const L1GtHfBitCountsTemplate &cp)
copy function for copy constructor and operator=

◆ ~L1GtHfBitCountsTemplate()

L1GtHfBitCountsTemplate::~L1GtHfBitCountsTemplate ( )
override

Definition at line 62 of file L1GtHfBitCountsTemplate.cc.

62  {
63  // empty now
64 }

Member Function Documentation

◆ copy()

void L1GtHfBitCountsTemplate::copy ( const L1GtHfBitCountsTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 101 of file L1GtHfBitCountsTemplate.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(), L1GtHfBitCountsTemplate(), and operator=().

101  {
102  m_condName = cp.condName();
103  m_condCategory = cp.condCategory();
104  m_condType = cp.condType();
105  m_objectType = cp.objectType();
106  m_condGEq = cp.condGEq();
107  m_condChipNr = cp.condChipNr();
108 
109  m_objectParameter = *(cp.objectParameter());
110 }
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::vector< ObjectParameter > m_objectParameter
variables containing the parameters
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>* L1GtHfBitCountsTemplate::objectParameter ( ) const
inline

Definition at line 64 of file L1GtHfBitCountsTemplate.h.

References m_objectParameter.

Referenced by L1GtHfBitCountsCondition::evaluateCondition().

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

◆ operator=()

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

Definition at line 67 of file L1GtHfBitCountsTemplate.cc.

References copy().

67  {
68  copy(cp);
69  return *this;
70 }
void copy(const L1GtHfBitCountsTemplate &cp)
copy function for copy constructor and operator=

◆ print()

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

print the condition

Reimplemented from L1GtCondition.

Definition at line 77 of file L1GtHfBitCountsTemplate.cc.

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

Referenced by L1GtTriggerMenuXmlParser::parseHfBitCounts(), and L1GtHfBitCountsCondition::print().

77  {
78  myCout << "\n L1GtHfBitCountsTemplate print..." << std::endl;
79 
80  L1GtCondition::print(myCout);
81 
82  int nObjects = nrObjects();
83 
84  for (int i = 0; i < nObjects; i++) {
85  myCout << std::endl;
86  myCout << " Template for object " << i << std::endl;
87  myCout << " countIndex = " << std::hex << m_objectParameter[i].countIndex << " [ dec ]" << std::endl;
88  myCout << " countThreshold = " << std::hex << m_objectParameter[i].countThreshold << " [ hex ]" << std::endl;
89  }
90 
91  // reset to decimal output
92  myCout << std::dec << std::endl;
93 }
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 L1GtHfBitCountsTemplate::serialize ( Archive &  ar,
const unsigned int  version 
)
private

◆ setConditionParameter()

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

set functions

Definition at line 73 of file L1GtHfBitCountsTemplate.cc.

References m_objectParameter.

Referenced by L1GtTriggerMenuConfigOnlineProd::addHfBitCountsCondition(), and L1GtTriggerMenuXmlParser::parseHfBitCounts().

73  {
74  m_objectParameter = objParameter;
75 }
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 83 of file L1GtHfBitCountsTemplate.h.

◆ cond::serialization::access

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

Definition at line 83 of file L1GtHfBitCountsTemplate.h.

◆ operator<<

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

output stream operator

Definition at line 96 of file L1GtHfBitCountsTemplate.cc.

96  {
97  result.print(os);
98  return os;
99 }

Member Data Documentation

◆ m_objectParameter

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

variables containing the parameters

Definition at line 81 of file L1GtHfBitCountsTemplate.h.

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