CMS 3D CMS Logo

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

#include <MuonTemplate.h>

Inheritance diagram for MuonTemplate:
GtCondition

Classes

struct  CorrelationParameter
 
struct  ObjectParameter
 

Public Member Functions

const CorrelationParametercorrelationParameter () const
 
 MuonTemplate ()
 
 MuonTemplate (const std::string &)
 
 MuonTemplate (const std::string &, const l1t::GtConditionType &)
 
 MuonTemplate (const MuonTemplate &)
 
const std::vector
< ObjectParameter > * 
objectParameter () const
 
MuonTemplateoperator= (const MuonTemplate &)
 
virtual void print (std::ostream &myCout) const
 print the condition More...
 
void setConditionParameter (const std::vector< ObjectParameter > &objParameter, const CorrelationParameter &corrParameter)
 set functions More...
 
virtual ~MuonTemplate ()
 
- Public Member Functions inherited from GtCondition
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
 
 GtCondition ()
 
 GtCondition (const std::string &)
 constructor from condition name More...
 
 GtCondition (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< L1GtObject > & 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< L1GtObject > &objType)
 
const bool wsc () const
 
virtual ~GtCondition ()
 destructor More...
 

Private Member Functions

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

Private Attributes

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

Friends

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

Additional Inherited Members

- Protected Attributes inherited from GtCondition
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
 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< L1GtObjectm_objectType
 the trigger object type(s) More...
 

Detailed Description

Description: L1 Global Trigger muon template.

Implementation: <TODO: enter implementation details>

Author
: Vasile Mihai Ghete - HEPHY Vienna

$Date$ $Revision$

Definition at line 32 of file MuonTemplate.h.

Constructor & Destructor Documentation

MuonTemplate::MuonTemplate ( )

Definition at line 34 of file MuonTemplate.cc.

References l1t::CondMuon, and GtCondition::m_condCategory.

35  : GtCondition()
36 {
37 
39 
40 }
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:159
MuonTemplate::MuonTemplate ( const std::string &  cName)

Definition at line 42 of file MuonTemplate.cc.

References l1t::CondMuon, and GtCondition::m_condCategory.

43  : GtCondition(cName)
44 {
45 
47 
48 }
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:159
MuonTemplate::MuonTemplate ( const std::string &  cName,
const l1t::GtConditionType cType 
)

Definition at line 50 of file MuonTemplate.cc.

References m_objectParameter, GtCondition::m_objectType, Mu, and GtCondition::nrObjects().

51  : GtCondition(cName, l1t::CondMuon, cType)
52 {
53 
54  int nObjects = nrObjects();
55 
56  if (nObjects > 0) {
57  m_objectParameter.reserve(nObjects);
58 
59  m_objectType.reserve(nObjects);
60  m_objectType.assign(nObjects, Mu);
61  }
62 
63 }
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:165
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: MuonTemplate.h:143
Definition: L1GtObject.h:30
MuonTemplate::MuonTemplate ( const MuonTemplate cp)

Definition at line 66 of file MuonTemplate.cc.

References copy().

68 {
69  copy(cp);
70 }
void copy(const MuonTemplate &cp)
copy function for copy constructor and operator=
std::string m_condName
the name of the condition
Definition: GtCondition.h:156
MuonTemplate::~MuonTemplate ( )
virtual

Definition at line 73 of file MuonTemplate.cc.

74 {
75  // empty now
76 }

Member Function Documentation

void MuonTemplate::copy ( const MuonTemplate cp)
private

copy function for copy constructor and operator=

Definition at line 191 of file MuonTemplate.cc.

References GtCondition::condCategory(), GtCondition::condChipNr(), GtCondition::condGEq(), GtCondition::condName(), GtCondition::condRelativeBx(), GtCondition::condType(), correlationParameter(), GtCondition::m_condCategory, GtCondition::m_condChipNr, GtCondition::m_condGEq, GtCondition::m_condName, GtCondition::m_condRelativeBx, GtCondition::m_condType, m_correlationParameter, m_objectParameter, GtCondition::m_objectType, objectParameter(), and GtCondition::objectType().

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

192 {
193 
194  m_condName = cp.condName();
196  m_condType = cp.condType();
197  m_objectType = cp.objectType();
198  m_condGEq = cp.condGEq();
199  m_condChipNr = cp.condChipNr();
201 
204 
205 }
bool m_condGEq
the operator used for the condition (&gt;=, =): true for &gt;=
Definition: GtCondition.h:168
const int & condChipNr() const
get / set the condition-chip number the condition is located on
Definition: GtCondition.h:112
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:162
int m_condChipNr
condition is located on condition chip m_condChipNr
Definition: GtCondition.h:171
std::vector< L1GtObject > m_objectType
the trigger object type(s)
Definition: GtCondition.h:165
const std::vector< ObjectParameter > * objectParameter() const
Definition: MuonTemplate.h:111
std::string m_condName
the name of the condition
Definition: GtCondition.h:156
const int & condRelativeBx() const
get / set the condition relative bx
Definition: GtCondition.h:123
l1t::GtConditionCategory m_condCategory
the category of the condition
Definition: GtCondition.h:159
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: MuonTemplate.h:143
const l1t::GtConditionType & condType() const
get / set the type of the condition (1s, etc)
Definition: GtCondition.h:79
const std::vector< L1GtObject > & objectType() const
get / set the trigger object type(s) in the condition
Definition: GtCondition.h:90
const std::string & condName() const
get / set condition name
Definition: GtCondition.h:57
const l1t::GtConditionCategory & condCategory() const
get / set the category of the condition
Definition: GtCondition.h:68
int m_condRelativeBx
Definition: GtCondition.h:174
const CorrelationParameter * correlationParameter() const
Definition: MuonTemplate.h:116
const bool condGEq() const
get / set condition GEq flag
Definition: GtCondition.h:101
CorrelationParameter m_correlationParameter
Definition: MuonTemplate.h:144
const CorrelationParameter* MuonTemplate::correlationParameter ( ) const
inline

Definition at line 116 of file MuonTemplate.h.

References m_correlationParameter.

Referenced by copy().

117  {
118  return &m_correlationParameter;
119  }
CorrelationParameter m_correlationParameter
Definition: MuonTemplate.h:144
const std::vector<ObjectParameter>* MuonTemplate::objectParameter ( ) const
inline

Definition at line 111 of file MuonTemplate.h.

References m_objectParameter.

Referenced by copy().

112  {
113  return &m_objectParameter;
114  }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: MuonTemplate.h:143
MuonTemplate & MuonTemplate::operator= ( const MuonTemplate cp)

Definition at line 79 of file MuonTemplate.cc.

References copy().

80 {
81 
82  copy(cp);
83  return *this;
84 }
void copy(const MuonTemplate &cp)
copy function for copy constructor and operator=
void MuonTemplate::print ( std::ostream &  myCout) const
virtual

print the condition

Reimplemented from GtCondition.

Definition at line 98 of file MuonTemplate.cc.

References MuonTemplate::CorrelationParameter::chargeCorrelation, TauDecayModes::dec, MuonTemplate::CorrelationParameter::deltaEtaRange, MuonTemplate::CorrelationParameter::deltaPhiMaxbits, MuonTemplate::CorrelationParameter::deltaPhiRange0Word, MuonTemplate::CorrelationParameter::deltaPhiRange1Word, i, GtCondition::m_condType, m_correlationParameter, m_objectParameter, GtCondition::nrObjects(), GtCondition::print(), l1t::Type1s, and GtCondition::wsc().

Referenced by operator<<(), l1t::TriggerMenuParser::parseMuon(), l1t::TriggerMenuParser::parseMuonCorr(), l1t::TriggerMenuXmlParser::parseMuonCorr(), and l1t::TriggerMenuXmlParser::parseMuonV2().

99 {
100 
101  myCout << "\n MuonTemplate print..." << std::endl;
102 
103  GtCondition::print(myCout);
104 
105  int nObjects = nrObjects();
106 
107  for (int i = 0; i < nObjects; i++) {
108  myCout << std::endl;
109  myCout << " Template for object " << i << " [ hex ]" << std::endl;
110  myCout << " ptHighThreshold = "
111  << std::hex << m_objectParameter[i].ptHighThreshold << std::endl;
112  myCout << " ptLowThreshold = "
113  << std::hex << m_objectParameter[i].ptLowThreshold << std::endl;
114  myCout << " enableMip = "
115  << std::hex << m_objectParameter[i].enableMip << std::endl;
116  myCout << " enableIso = "
117  << std::hex << m_objectParameter[i].enableIso << std::endl;
118  myCout << " requestIso = "
119  << std::hex << m_objectParameter[i].requestIso << std::endl;
120  myCout << " charge ="
121  << std::dec << m_objectParameter[i].charge << std::endl;
122  myCout << " qualityLUT = "
123  << std::hex << m_objectParameter[i].qualityLUT << std::endl;
124  myCout << " isolationLUT = "
125  << std::hex << m_objectParameter[i].isolationLUT << std::endl;
126  // myCout << " etaRange = "
127  // << std::hex << m_objectParameter[i].etaRange << std::endl;
128  // myCout << " phiHigh = "
129  // << std::hex << m_objectParameter[i].phiHigh << std::endl;
130  // myCout << " phiLow = "
131 // << std::hex << m_objectParameter[i].phiLow << std::endl;
132  myCout << " phiWindow1Lower ="
133  << std::hex << m_objectParameter[i].phiWindow1Lower << std::endl;
134  myCout << " phiWindow1Upper ="
135  << std::hex << m_objectParameter[i].phiWindow1Upper << std::endl;
136  myCout << " phiWindow2Lower ="
137  << std::hex << m_objectParameter[i].phiWindow2Lower << std::endl;
138  myCout << " phiWindow2Upper ="
139  << std::hex << m_objectParameter[i].phiWindow2Upper << std::endl;
140  myCout << " etaWindow1Lower ="
141  << std::hex << m_objectParameter[i].etaWindow1Lower << std::endl;
142  myCout << " etaWindow1Upper ="
143  << std::hex << m_objectParameter[i].etaWindow1Upper << std::endl;
144  myCout << " etaWindow2Lower ="
145  << std::hex << m_objectParameter[i].etaWindow2Lower << std::endl;
146  myCout << " etaWindow2Upper ="
147  << std::hex << m_objectParameter[i].etaWindow2Upper << std::endl;
148 
149 
150  }
151 
152 
153  if ( wsc() ) {
154  myCout << " Correlation parameters " << "[ hex ]" << std::endl;
155 
156  myCout << " chargeCorrelation = "
158  << std::endl;
159 
160  myCout << " deltaEtaRange = "
161  << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
162  myCout << " deltaPhiRange1Word = "
163  << std::hex << m_correlationParameter.deltaPhiRange1Word << std::endl;
164  myCout << " deltaPhiRange0Word = "
165  << std::hex << m_correlationParameter.deltaPhiRange0Word << std::endl;
166  myCout << " deltaPhiMaxbits = "
167  << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
168  } else {
169 
170  if (m_condType == l1t::Type1s) {
171  myCout << " Correlation parameters " << "[ hex ]" << std::endl;
172 
173  myCout << " chargeCorrelation = "
175  << " (charge sign) " << std::endl;
176 
177  } else {
178 
179  myCout << "\n Correlation parameters " << "[ hex ]" << std::endl;
180 
181  myCout << " chargeCorrelation = "
183  << std::endl;
184  }
185  }
186 
187  // reset to decimal output
188  myCout << std::dec << std::endl;
189 }
int i
Definition: DBlmapReader.cc:9
l1t::GtConditionType m_condType
the type of the condition (1s, etc)
Definition: GtCondition.h:162
virtual void print(std::ostream &myCout) const
print condition
Definition: GtCondition.cc:154
const int nrObjects() const
get number of trigger objects
Definition: GtCondition.cc:74
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: MuonTemplate.h:143
unsigned long long deltaPhiRange0Word
Definition: MuonTemplate.h:92
const bool wsc() const
Definition: GtCondition.cc:131
unsigned long long deltaPhiRange1Word
Definition: MuonTemplate.h:93
unsigned long long deltaEtaRange
Definition: MuonTemplate.h:96
CorrelationParameter m_correlationParameter
Definition: MuonTemplate.h:144
void MuonTemplate::setConditionParameter ( const std::vector< ObjectParameter > &  objParameter,
const CorrelationParameter corrParameter 
)

set functions

Definition at line 88 of file MuonTemplate.cc.

References m_correlationParameter, and m_objectParameter.

Referenced by l1t::TriggerMenuParser::parseMuon(), l1t::TriggerMenuParser::parseMuonCorr(), l1t::TriggerMenuXmlParser::parseMuonCorr(), and l1t::TriggerMenuXmlParser::parseMuonV2().

91 {
92 
93  m_objectParameter = objParameter;
94  m_correlationParameter = corrParameter;
95 
96 }
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: MuonTemplate.h:143
CorrelationParameter m_correlationParameter
Definition: MuonTemplate.h:144

Friends And Related Function Documentation

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

output stream operator

Definition at line 208 of file MuonTemplate.cc.

209 {
210  result.print(os);
211  return os;
212 
213 }
virtual void print(std::ostream &myCout) const
print the condition
Definition: MuonTemplate.cc:98

Member Data Documentation

CorrelationParameter MuonTemplate::m_correlationParameter
private

Definition at line 144 of file MuonTemplate.h.

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

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

variables containing the parameters

Definition at line 143 of file MuonTemplate.h.

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