CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes | Friends
L1GtJetCountsTemplate Class Reference

#include <L1GtJetCountsTemplate.h>

Inheritance diagram for L1GtJetCountsTemplate:
L1GtCondition

Classes

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

Public Member Functions

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

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Definition at line 34 of file L1GtJetCountsTemplate.h.

Constructor & Destructor Documentation

L1GtJetCountsTemplate::L1GtJetCountsTemplate ( )

Definition at line 35 of file L1GtJetCountsTemplate.cc.

References CondJetCounts, and L1GtCondition::m_condCategory.

L1GtConditionCategory m_condCategory
the category of the condition
L1GtJetCountsTemplate::L1GtJetCountsTemplate ( const std::string &  cName)

Definition at line 37 of file L1GtJetCountsTemplate.cc.

References CondJetCounts, and L1GtCondition::m_condCategory.

37  : L1GtCondition(cName) {
39 }
L1GtConditionCategory m_condCategory
the category of the condition
L1GtJetCountsTemplate::L1GtJetCountsTemplate ( const std::string &  cName,
const L1GtConditionType cType 
)

Definition at line 41 of file L1GtJetCountsTemplate.cc.

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

42  : L1GtCondition(cName, CondJetCounts, 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, JetCounts);
53  }
54 }
const int nrObjects() const
get number of trigger objects
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
L1GtJetCountsTemplate::L1GtJetCountsTemplate ( const L1GtJetCountsTemplate cp)

Definition at line 57 of file L1GtJetCountsTemplate.cc.

References copy().

58  copy(cp);
59 }
void copy(const L1GtJetCountsTemplate &cp)
copy function for copy constructor and operator=
std::string m_condName
the name of the condition
L1GtJetCountsTemplate::~L1GtJetCountsTemplate ( )
override

Definition at line 62 of file L1GtJetCountsTemplate.cc.

62  {
63  // empty now
64 }

Member Function Documentation

void L1GtJetCountsTemplate::copy ( const L1GtJetCountsTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 96 of file L1GtJetCountsTemplate.cc.

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

Referenced by SequenceTypes.Task::copyAndAdd(), L1GtJetCountsTemplate(), and operator=().

96  {
97  m_condName = cp.condName();
99  m_condType = cp.condType();
100  m_objectType = cp.objectType();
101  m_condGEq = cp.condGEq();
102  m_condChipNr = cp.condChipNr();
103 
105 }
const std::string & condName() const
get / set condition name
Definition: L1GtCondition.h:52
const int & condChipNr() const
get / set the condition-chip number the condition is located on
Definition: L1GtCondition.h:77
const std::vector< L1GtObject > & objectType() const
get / set the trigger object type(s) in the condition
Definition: L1GtCondition.h:67
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 std::vector< ObjectParameter > * objectParameter() const
const L1GtConditionType & condType() const
get / set the type of the condition (1s, etc)
Definition: L1GtCondition.h:62
std::string m_condName
the name of the condition
const L1GtConditionCategory & condCategory() const
get / set the category of the condition
Definition: L1GtCondition.h:57
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
const bool condGEq() const
get / set condition GEq flag
Definition: L1GtCondition.h:72
int m_condChipNr
condition is located on condition chip m_condChipNr
const std::vector<ObjectParameter>* L1GtJetCountsTemplate::objectParameter ( ) const
inline
L1GtJetCountsTemplate & L1GtJetCountsTemplate::operator= ( const L1GtJetCountsTemplate cp)

Definition at line 67 of file L1GtJetCountsTemplate.cc.

References copy().

67  {
68  copy(cp);
69  return *this;
70 }
void copy(const L1GtJetCountsTemplate &cp)
copy function for copy constructor and operator=
void L1GtJetCountsTemplate::print ( std::ostream &  myCout) const
overridevirtual

print the condition

Reimplemented from L1GtCondition.

Definition at line 77 of file L1GtJetCountsTemplate.cc.

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

Referenced by operator<<(), L1GtTriggerMenuXmlParser::parseJetCounts(), and L1GtJetCountsCondition::print().

77  {
78  myCout << "\n L1GtJetCountsTemplate 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  myCout << " countOverflow = " << std::hex << m_objectParameter[0].countOverflow << std::endl;
90  }
91 
92  // reset to decimal output
93  myCout << std::dec << std::endl;
94 }
const int nrObjects() const
get number of trigger objects
virtual void print(std::ostream &myCout) const
print condition
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
template<class Archive >
void L1GtJetCountsTemplate::serialize ( Archive &  ar,
const unsigned int  version 
)
private
void L1GtJetCountsTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter)

set functions

Definition at line 73 of file L1GtJetCountsTemplate.cc.

References m_objectParameter.

Referenced by L1GtTriggerMenuConfigOnlineProd::addJetCountsCondition(), and L1GtTriggerMenuXmlParser::parseJetCounts().

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

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 86 of file L1GtJetCountsTemplate.h.

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

Definition at line 86 of file L1GtJetCountsTemplate.h.

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

output stream operator

Definition at line 108 of file L1GtJetCountsTemplate.cc.

108  {
109  result.print(os);
110  return os;
111 }
void print(std::ostream &myCout) const override
print the condition

Member Data Documentation

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

variables containing the parameters

Definition at line 84 of file L1GtJetCountsTemplate.h.

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