CMS 3D CMS Logo

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

#include <AXOL1TLTemplate.h>

Inheritance diagram for AXOL1TLTemplate:
GlobalCondition

Classes

struct  ObjectParameter
 

Public Member Functions

 AXOL1TLTemplate ()
 
 AXOL1TLTemplate (const std::string &)
 
 AXOL1TLTemplate (const std::string &, const l1t::GtConditionType &)
 
 AXOL1TLTemplate (const AXOL1TLTemplate &)
 
const std::string & modelVersion () const
 
const std::vector< ObjectParameter > * objectParameter () const
 
AXOL1TLTemplateoperator= (const AXOL1TLTemplate &)
 
void print (std::ostream &myCout) const override
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &objParameter)
 set functions More...
 
void setModelVersion (const std::string &modelversion)
 
 ~AXOL1TLTemplate () override
 
- Public Member Functions inherited from GlobalCondition
const l1t::GtConditionCategorycondCategory () 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 int & condRelativeBx () const
 get / set the condition relative bx More...
 
const l1t::GtConditionTypecondType () const
 get / set the type of the condition (1s, etc) More...
 
const bool corr () const
 
const bool corrThree () const
 get logic flag for three-body conditions, trigger objects are muons More...
 
 GlobalCondition ()
 
 GlobalCondition (const std::string &)
 constructor from condition name More...
 
 GlobalCondition (const std::string &, const l1t::GtConditionCategory &, const l1t::GtConditionType &)
 constructor from condition name, category and type More...
 
const int nrObjects () const
 get number of trigger objects More...
 
const std::vector< l1t::GlobalObject > & objectType () const
 get / set the trigger object type(s) in the condition More...
 
void setCondCategory (const l1t::GtConditionCategory &cCategory)
 
void setCondChipNr (const int &cChipNr)
 
void setCondGEq (const bool &cGEq)
 
void setCondName (const std::string &cName)
 
void setCondRelativeBx (const int &cRelativeBx)
 
void setCondType (const l1t::GtConditionType &cType)
 
void setObjectType (const std::vector< l1t::GlobalObject > &objType)
 
const bool wsc () const
 
virtual ~GlobalCondition ()
 destructor More...
 

Private Member Functions

void copy (const AXOL1TLTemplate &cp)
 copy function for copy constructor and operator= More...
 

Private Attributes

std::string m_modelVersion
 model version More...
 
std::vector< ObjectParameterm_objectParameter
 variables containing the parameters More...
 

Friends

std::ostream & operator<< (std::ostream &, const AXOL1TLTemplate &)
 output stream operator More...
 

Additional Inherited Members

- Protected Attributes inherited from GlobalCondition
l1t::GtConditionCategory m_condCategory
 the category of the condition More...
 
int m_condChipNr
 condition is located on condition chip m_condChipNr More...
 
bool m_condGEq = false
 the operator used for the condition (>=, =): true for >= More...
 
std::string m_condName
 the name of the condition More...
 
int m_condRelativeBx
 
l1t::GtConditionType m_condType
 the type of the condition (1s, etc) More...
 
std::vector< l1t::GlobalObjectm_objectType
 the trigger object type(s) More...
 

Detailed Description

Description: L1 Global Trigger AXOL1TL template.

Author
: Melissa Quinnan (UC San Diego)

Definition at line 26 of file AXOL1TLTemplate.h.

Constructor & Destructor Documentation

◆ AXOL1TLTemplate() [1/4]

AXOL1TLTemplate::AXOL1TLTemplate ( )

Definition at line 8 of file AXOL1TLTemplate.cc.

References l1t::CondAXOL1TL, and GlobalCondition::m_condCategory.

l1t::GtConditionCategory m_condCategory
the category of the condition

◆ AXOL1TLTemplate() [2/4]

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

Definition at line 10 of file AXOL1TLTemplate.cc.

References l1t::CondAXOL1TL, and GlobalCondition::m_condCategory.

10  : GlobalCondition(cName) {
12 }
l1t::GtConditionCategory m_condCategory
the category of the condition

◆ AXOL1TLTemplate() [3/4]

AXOL1TLTemplate::AXOL1TLTemplate ( const std::string &  cName,
const l1t::GtConditionType cType 
)

Definition at line 14 of file AXOL1TLTemplate.cc.

References GlobalCondition::m_objectType, and GlobalCondition::nrObjects().

15  : GlobalCondition(cName, l1t::CondAXOL1TL, cType) {
16  int nObjects = nrObjects();
17 
18  if (nObjects > 0) {
19  m_objectType.reserve(nObjects);
20  }
21 }
const int nrObjects() const
get number of trigger objects
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)

◆ AXOL1TLTemplate() [4/4]

AXOL1TLTemplate::AXOL1TLTemplate ( const AXOL1TLTemplate cp)

Definition at line 24 of file AXOL1TLTemplate.cc.

References copy().

24 : GlobalCondition(cp.m_condName) { copy(cp); }
void copy(const AXOL1TLTemplate &cp)
copy function for copy constructor and operator=

◆ ~AXOL1TLTemplate()

AXOL1TLTemplate::~AXOL1TLTemplate ( )
override

Definition at line 27 of file AXOL1TLTemplate.cc.

27  {
28  // empty now
29 }

Member Function Documentation

◆ copy()

void AXOL1TLTemplate::copy ( const AXOL1TLTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 62 of file AXOL1TLTemplate.cc.

References GlobalCondition::m_condCategory, GlobalCondition::m_condChipNr, GlobalCondition::m_condGEq, GlobalCondition::m_condName, GlobalCondition::m_condRelativeBx, GlobalCondition::m_condType, m_modelVersion, m_objectParameter, and GlobalCondition::m_objectType.

Referenced by AXOL1TLTemplate(), and operator=().

62  {
63  m_condName = cp.condName();
64  m_condCategory = cp.condCategory();
65  m_condType = cp.condType();
66  m_objectType = cp.objectType(); //not needed for AXOL1TL
67  m_condGEq = cp.condGEq();
68  m_condChipNr = cp.condChipNr();
69  m_condRelativeBx = cp.condRelativeBx();
70 
71  m_modelVersion = cp.modelVersion(); // new for utm 0.12.0
72  m_objectParameter = *(cp.objectParameter());
73 }
bool m_condGEq
the operator used for the condition (>=, =): true for >=
std::string m_condName
the name of the condition
int m_condChipNr
condition is located on condition chip m_condChipNr
l1t::GtConditionCategory m_condCategory
the category of the condition
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
std::string m_modelVersion
model version
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
l1t::GtConditionType m_condType
the type of the condition (1s, etc)

◆ modelVersion()

const std::string& AXOL1TLTemplate::modelVersion ( ) const
inline

Definition at line 55 of file AXOL1TLTemplate.h.

References m_modelVersion.

55 { return m_modelVersion; }
std::string m_modelVersion
model version

◆ objectParameter()

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

Definition at line 53 of file AXOL1TLTemplate.h.

References m_objectParameter.

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

◆ operator=()

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

Definition at line 32 of file AXOL1TLTemplate.cc.

References copy().

32  {
33  copy(cp);
34  return *this;
35 }
void copy(const AXOL1TLTemplate &cp)
copy function for copy constructor and operator=

◆ print()

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

print the condition

Reimplemented from GlobalCondition.

Definition at line 45 of file AXOL1TLTemplate.cc.

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

Referenced by l1t::TriggerMenuParser::parseAXOL1TL().

45  {
46  myCout << "\n AXOL1TLTemplate print..." << std::endl;
47 
48  GlobalCondition::print(myCout);
49 
50  int nObjects = nrObjects();
51 
52  for (int i = 0; i < nObjects; i++) {
53  myCout << std::endl;
54  myCout << " Template for object " << i << " [ hex ]" << std::endl;
55  myCout << " AXOL1TLThreshold = " << std::hex << m_objectParameter[i].minAXOL1TLThreshold << std::endl;
56  }
57 
58  // reset to decimal output
59  myCout << std::dec << std::endl;
60 }
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

◆ setConditionParameter()

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

set functions

Definition at line 38 of file AXOL1TLTemplate.cc.

References m_objectParameter.

Referenced by l1t::TriggerMenuParser::parseAXOL1TL().

38  {
39  m_objectParameter = objParameter;
40 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters

◆ setModelVersion()

void AXOL1TLTemplate::setModelVersion ( const std::string &  modelversion)

Definition at line 43 of file AXOL1TLTemplate.cc.

References m_modelVersion.

Referenced by l1t::TriggerMenuParser::parseAXOL1TL().

43 { m_modelVersion = modelversion; }
std::string m_modelVersion
model version

Friends And Related Function Documentation

◆ operator<<

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

output stream operator

Definition at line 76 of file AXOL1TLTemplate.cc.

76  {
77  result.print(os);
78  return os;
79 }

Member Data Documentation

◆ m_modelVersion

std::string AXOL1TLTemplate::m_modelVersion
private

model version

Definition at line 76 of file AXOL1TLTemplate.h.

Referenced by copy(), modelVersion(), and setModelVersion().

◆ m_objectParameter

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

variables containing the parameters

Definition at line 73 of file AXOL1TLTemplate.h.

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