CMS 3D CMS Logo

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

#include <EnergySumZdcTemplate.h>

Inheritance diagram for EnergySumZdcTemplate:
GlobalCondition

Classes

struct  ObjectParameter
 

Public Member Functions

 EnergySumZdcTemplate ()
 
 EnergySumZdcTemplate (const std::string &)
 
 EnergySumZdcTemplate (const std::string &, const l1t::GtConditionType &)
 
 EnergySumZdcTemplate (const EnergySumZdcTemplate &)
 
const std::vector< ObjectParameter > * objectParameter () const
 
EnergySumZdcTemplateoperator= (const EnergySumZdcTemplate &)
 
void print (std::ostream &myCout) const override
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &)
 set functions More...
 
 ~EnergySumZdcTemplate () 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 EnergySumZdcTemplate &cp)
 copy function for copy constructor and operator= More...
 

Private Attributes

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

Friends

std::ostream & operator<< (std::ostream &, const EnergySumZdcTemplate &)
 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 energy-sum template.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Description: L1 Global Trigger energy-sum template for EtSums from ZDC.

Implementation: Effective clone of EnergySumTemplate for use w/ ZDC

Author
: Elisa Fontanesi, Boston University, and Christopher Mc Ginn, MIT cloned from work of Vasile Mihai Ghete - HEPHY Vienna

2023.08.31 Version 1

Definition at line 32 of file EnergySumZdcTemplate.h.

Constructor & Destructor Documentation

◆ EnergySumZdcTemplate() [1/4]

EnergySumZdcTemplate::EnergySumZdcTemplate ( )

Definition at line 33 of file EnergySumZdcTemplate.cc.

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

l1t::GtConditionCategory m_condCategory
the category of the condition

◆ EnergySumZdcTemplate() [2/4]

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

Definition at line 35 of file EnergySumZdcTemplate.cc.

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

35  : GlobalCondition(cName) {
37 }
l1t::GtConditionCategory m_condCategory
the category of the condition

◆ EnergySumZdcTemplate() [3/4]

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

Definition at line 39 of file EnergySumZdcTemplate.cc.

References l1t::CondEnergySumZdc, GlobalCondition::m_condCategory, m_objectParameter, GlobalCondition::m_objectType, and GlobalCondition::nrObjects().

40  : GlobalCondition(cName, l1t::CondEnergySumZdc, cType) {
42 
43  // should be always 1 - they are global quantities...
44  int nObjects = nrObjects();
45 
46  if (nObjects > 0) {
47  m_objectParameter.reserve(nObjects);
48  m_objectType.reserve(nObjects);
49  }
50 }
l1t::GtConditionCategory 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
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)

◆ EnergySumZdcTemplate() [4/4]

EnergySumZdcTemplate::EnergySumZdcTemplate ( const EnergySumZdcTemplate cp)

Definition at line 53 of file EnergySumZdcTemplate.cc.

References copy().

53  : GlobalCondition(cp.m_condName) {
54  copy(cp);
55 }
void copy(const EnergySumZdcTemplate &cp)
copy function for copy constructor and operator=

◆ ~EnergySumZdcTemplate()

EnergySumZdcTemplate::~EnergySumZdcTemplate ( )
overridedefault

Member Function Documentation

◆ copy()

void EnergySumZdcTemplate::copy ( const EnergySumZdcTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 89 of file EnergySumZdcTemplate.cc.

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

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

89  {
90  m_condName = cp.condName();
91  m_condCategory = cp.condCategory();
92  m_condType = cp.condType();
93  m_objectType = cp.objectType();
94  m_condGEq = cp.condGEq();
95  m_condChipNr = cp.condChipNr();
96  m_condRelativeBx = cp.condRelativeBx();
97 
98  m_objectParameter = *(cp.objectParameter());
99 }
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::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
l1t::GtConditionType m_condType
the type of the condition (1s, etc)

◆ objectParameter()

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

Definition at line 59 of file EnergySumZdcTemplate.h.

References m_objectParameter.

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

◆ operator=()

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

Definition at line 61 of file EnergySumZdcTemplate.cc.

References copy().

61  {
62  copy(cp);
63  return *this;
64 }
void copy(const EnergySumZdcTemplate &cp)
copy function for copy constructor and operator=

◆ print()

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

print the condition

Reimplemented from GlobalCondition.

Definition at line 71 of file EnergySumZdcTemplate.cc.

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

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

71  {
72  myCout << "\n EnergySumZdcTemplate print..." << std::endl;
73 
74  GlobalCondition::print(myCout);
75 
76  int nObjects = nrObjects();
77 
78  for (int i = 0; i < nObjects; i++) {
79  myCout << std::endl;
80  myCout << " Template for object " << i << " [ hex ]" << std::endl;
81  myCout << " etThreshold = " << std::hex << m_objectParameter[i].etLowThreshold << " - "
82  << m_objectParameter[i].etHighThreshold << std::endl;
83  }
84 
85  // reset to decimal output
86  myCout << std::dec << std::endl;
87 }
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 EnergySumZdcTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter)

set functions

Definition at line 67 of file EnergySumZdcTemplate.cc.

References m_objectParameter.

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

67  {
68  m_objectParameter = objParameter;
69 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters

Friends And Related Function Documentation

◆ operator<<

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

output stream operator

Definition at line 102 of file EnergySumZdcTemplate.cc.

102  {
103  result.print(os);
104  return os;
105 }

Member Data Documentation

◆ m_objectParameter

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

variables containing the parameters

Definition at line 76 of file EnergySumZdcTemplate.h.

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