CMS 3D CMS Logo

MuonTemplate.cc
Go to the documentation of this file.
1 
18 // this class header
20 
21 // system include files
22 
23 #include <iostream>
24 #include <iomanip>
25 
26 // user include files
27 
28 // base class
29 
30 
31 // forward declarations
32 
33 // constructors
35  : GlobalCondition()
36 {
37 
39 
40 }
41 
43  : GlobalCondition(cName)
44 {
45 
47 
48 }
49 
51  : GlobalCondition(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, l1t::gtMu);
61  }
62 
63 }
64 
65 // copy constructor
68 {
69  copy(cp);
70 }
71 
72 // destructor
74 {
75  // empty now
76 }
77 
78 // assign operator
80 {
81 
82  copy(cp);
83  return *this;
84 }
85 
86 
87 // setConditionParameter - set the parameters of the condition
89  const std::vector<ObjectParameter>& objParameter,
90  const CorrelationParameter& corrParameter)
91 {
92 
93  m_objectParameter = objParameter;
94  m_correlationParameter = corrParameter;
95 
96 }
97 
98 void MuonTemplate::print(std::ostream& myCout) const
99 {
100 
101  myCout << "\n MuonTemplate print..." << std::endl;
102 
103  GlobalCondition::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 << " indexHigh = "
115  << std::hex << m_objectParameter[i].indexHigh << std::endl;
116  myCout << " indexLow = "
117  << std::hex << m_objectParameter[i].indexLow << std::endl;
118  myCout << " enableMip = "
119  << std::hex << m_objectParameter[i].enableMip << std::endl;
120  myCout << " enableIso = "
121  << std::hex << m_objectParameter[i].enableIso << std::endl;
122  myCout << " requestIso = "
123  << std::hex << m_objectParameter[i].requestIso << std::endl;
124  myCout << " charge ="
125  << std::dec << m_objectParameter[i].charge << std::endl;
126  myCout << " qualityLUT = "
127  << std::hex << m_objectParameter[i].qualityLUT << std::endl;
128  myCout << " isolationLUT = "
129  << std::hex << m_objectParameter[i].isolationLUT << std::endl;
130  // myCout << " etaRange = "
131  // << std::hex << m_objectParameter[i].etaRange << std::endl;
132  // myCout << " phiHigh = "
133  // << std::hex << m_objectParameter[i].phiHigh << std::endl;
134  // myCout << " phiLow = "
135 // << std::hex << m_objectParameter[i].phiLow << std::endl;
136  myCout << " phiWindow1Lower ="
137  << std::hex << m_objectParameter[i].phiWindow1Lower << std::endl;
138  myCout << " phiWindow1Upper ="
139  << std::hex << m_objectParameter[i].phiWindow1Upper << std::endl;
140  myCout << " phiWindow2Lower ="
141  << std::hex << m_objectParameter[i].phiWindow2Lower << std::endl;
142  myCout << " phiWindow2Upper ="
143  << std::hex << m_objectParameter[i].phiWindow2Upper << std::endl;
144  myCout << " etaWindow1Lower ="
145  << std::hex << m_objectParameter[i].etaWindow1Lower << std::endl;
146  myCout << " etaWindow1Upper ="
147  << std::hex << m_objectParameter[i].etaWindow1Upper << std::endl;
148  myCout << " etaWindow2Lower ="
149  << std::hex << m_objectParameter[i].etaWindow2Lower << std::endl;
150  myCout << " etaWindow2Upper ="
151  << std::hex << m_objectParameter[i].etaWindow2Upper << std::endl;
152 
153 
154  }
155 
156 
157  if ( wsc() ) {
158  myCout << " Correlation parameters " << "[ hex ]" << std::endl;
159 
160  myCout << " chargeCorrelation = "
162  << std::endl;
163 
164  myCout << " deltaEtaRange = "
165  << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
166  myCout << " deltaPhiRange1Word = "
167  << std::hex << m_correlationParameter.deltaPhiRange1Word << std::endl;
168  myCout << " deltaPhiRange0Word = "
169  << std::hex << m_correlationParameter.deltaPhiRange0Word << std::endl;
170  myCout << " deltaPhiMaxbits = "
171  << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
172  } else {
173 
174  if (m_condType == l1t::Type1s) {
175  myCout << " Correlation parameters " << "[ hex ]" << std::endl;
176 
177  myCout << " chargeCorrelation = "
179  << " (charge sign) " << std::endl;
180 
181  } else {
182 
183  myCout << "\n Correlation parameters " << "[ hex ]" << std::endl;
184 
185  myCout << " chargeCorrelation = "
187  << std::endl;
188  }
189  }
190 
191  // reset to decimal output
192  myCout << std::dec << std::endl;
193 }
194 
196 {
197 
198  m_condName = cp.condName();
200  m_condType = cp.condType();
201  m_objectType = cp.objectType();
202  m_condGEq = cp.condGEq();
203  m_condChipNr = cp.condChipNr();
205 
208 
209 }
210 
211 // output stream operator
212 std::ostream& operator<<(std::ostream& os, const MuonTemplate& result)
213 {
214  result.print(os);
215  return os;
216 
217 }
218 
219 
const int nrObjects() const
get number of trigger objects
void copy(const MuonTemplate &cp)
copy function for copy constructor and operator=
virtual ~MuonTemplate()
Definition: MuonTemplate.cc:73
virtual void print(std::ostream &myCout) const
print the condition
Definition: MuonTemplate.cc:98
MuonTemplate & operator=(const MuonTemplate &)
Definition: MuonTemplate.cc:79
bool m_condGEq
the operator used for the condition (>=, =): true for >=
const bool wsc() const
const bool condGEq() const
get / set condition GEq flag
delete x;
Definition: CaloConfig.h:22
const l1t::GtConditionCategory & condCategory() const
get / set the category of the condition
const l1t::GtConditionType & condType() const
get / set the type of the condition (1s, etc)
const int & condRelativeBx() const
get / set the condition relative bx
const std::vector< ObjectParameter > * objectParameter() const
Definition: MuonTemplate.h:114
const std::vector< l1t::GlobalObject > & objectType() const
get / set the trigger object type(s) in the condition
std::vector< ObjectParameter > m_objectParameter
variables containing the parameters
Definition: MuonTemplate.h:146
std::string m_condName
the name of the condition
unsigned long long deltaPhiRange0Word
Definition: MuonTemplate.h:95
const int & condChipNr() const
get / set the condition-chip number the condition is located on
int m_condChipNr
condition is located on condition chip m_condChipNr
l1t::GtConditionCategory m_condCategory
the category of the condition
const std::string & condName() const
get / set condition name
virtual void print(std::ostream &myCout) const
print condition
unsigned long long deltaPhiRange1Word
Definition: MuonTemplate.h:96
void setConditionParameter(const std::vector< ObjectParameter > &objParameter, const CorrelationParameter &corrParameter)
set functions
Definition: MuonTemplate.cc:88
unsigned long long deltaEtaRange
Definition: MuonTemplate.h:99
const CorrelationParameter * correlationParameter() const
Definition: MuonTemplate.h:119
std::vector< l1t::GlobalObject > m_objectType
the trigger object type(s)
CorrelationParameter m_correlationParameter
Definition: MuonTemplate.h:147
friend std::ostream & operator<<(std::ostream &, const MuonTemplate &)
output stream operator
l1t::GtConditionType m_condType
the type of the condition (1s, etc)