1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/**
* \class L1GtCaloTemplate
*
*
* Description: L1 Global Trigger calo template.
*
* Implementation:
* <TODO: enter implementation details>
*
* \author: Vasile Mihai Ghete - HEPHY Vienna
*
* $Date$
* $Revision$
*
*/
// this class header
#include "CondFormats/L1TObjects/interface/L1GtCaloTemplate.h"
// system include files
#include <iostream>
#include <iomanip>
// user include files
// base class
#include "CondFormats/L1TObjects/interface/L1GtFwd.h"
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutSetupFwd.h"
// forward declarations
// constructors
L1GtCaloTemplate::L1GtCaloTemplate() : L1GtCondition() { m_condCategory = CondCalo; }
L1GtCaloTemplate::L1GtCaloTemplate(const std::string& cName) : L1GtCondition(cName) { m_condCategory = CondCalo; }
L1GtCaloTemplate::L1GtCaloTemplate(const std::string& cName, const L1GtConditionType& cType)
: L1GtCondition(cName, CondCalo, cType) {
int nObjects = nrObjects();
if (nObjects > 0) {
m_objectParameter.reserve(nObjects);
m_objectType.reserve(nObjects);
}
}
// copy constructor
L1GtCaloTemplate::L1GtCaloTemplate(const L1GtCaloTemplate& cp) : L1GtCondition(cp.m_condName) { copy(cp); }
// destructor
L1GtCaloTemplate::~L1GtCaloTemplate() {
// empty now
}
// assign operator
L1GtCaloTemplate& L1GtCaloTemplate::operator=(const L1GtCaloTemplate& cp) {
copy(cp);
return *this;
}
// setConditionParameter - set the parameters of the condition
void L1GtCaloTemplate::setConditionParameter(const std::vector<ObjectParameter>& objParameter,
const CorrelationParameter& corrParameter) {
m_objectParameter = objParameter;
m_correlationParameter = corrParameter;
}
void L1GtCaloTemplate::print(std::ostream& myCout) const {
myCout << "\n L1GtCaloTemplate print..." << std::endl;
L1GtCondition::print(myCout);
int nObjects = nrObjects();
for (int i = 0; i < nObjects; i++) {
myCout << std::endl;
myCout << " Template for object " << i << " [ hex ]" << std::endl;
myCout << " etThreshold = " << std::hex << m_objectParameter[i].etThreshold << std::endl;
myCout << " etaRange = " << std::hex << m_objectParameter[i].etaRange << std::endl;
myCout << " phiRange = " << std::hex << m_objectParameter[i].phiRange << std::endl;
}
if (wsc()) {
myCout << " Correlation parameters "
<< "[ hex ]" << std::endl;
myCout << " deltaEtaRange = " << std::hex << m_correlationParameter.deltaEtaRange << std::endl;
myCout << " deltaPhiRange = " << std::hex << m_correlationParameter.deltaPhiRange << std::endl;
myCout << " deltaPhiMaxbits = " << std::hex << m_correlationParameter.deltaPhiMaxbits << std::endl;
}
// reset to decimal output
myCout << std::dec << std::endl;
}
void L1GtCaloTemplate::copy(const L1GtCaloTemplate& cp) {
m_condName = cp.condName();
m_condCategory = cp.condCategory();
m_condType = cp.condType();
m_objectType = cp.objectType();
m_condGEq = cp.condGEq();
m_condChipNr = cp.condChipNr();
m_objectParameter = *(cp.objectParameter());
m_correlationParameter = *(cp.correlationParameter());
}
// output stream operator
std::ostream& operator<<(std::ostream& os, const L1GtCaloTemplate& result) {
result.print(os);
return os;
}
|