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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
|
#include "CondFormats/SiPixelObjects/interface/SiPixelGainCalibrationForHLT.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <cstring>
#include <algorithm>
//
// Constructors
//
SiPixelGainCalibrationForHLT::SiPixelGainCalibrationForHLT()
: minPed_(0.),
maxPed_(255.),
minGain_(0.),
maxGain_(255.),
numberOfRowsToAverageOver_(80),
nBinsToUseForEncoding_(253),
deadFlag_(255),
noisyFlag_(254) {
initialize();
if (deadFlag_ > 0xFF)
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationHLT::SiPixelGainCalibrationHLT] Dead flag was set to " << deadFlag_
<< ", and it must be set less than or equal to 255";
}
//
SiPixelGainCalibrationForHLT::SiPixelGainCalibrationForHLT(float minPed, float maxPed, float minGain, float maxGain)
: minPed_(minPed),
maxPed_(maxPed),
minGain_(minGain),
maxGain_(maxGain),
numberOfRowsToAverageOver_(80),
nBinsToUseForEncoding_(253),
deadFlag_(255),
noisyFlag_(254) {
initialize();
if (deadFlag_ > 0xFF)
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationHLT::SiPixelGainCalibrationHLT] Dead flag was set to " << deadFlag_
<< ", and it must be set less than or equal to 255";
}
void SiPixelGainCalibrationForHLT::initialize() {
pedPrecision = (maxPed_ - minPed_) / static_cast<float>(nBinsToUseForEncoding_);
gainPrecision = (maxGain_ - minGain_) / static_cast<float>(nBinsToUseForEncoding_);
}
bool SiPixelGainCalibrationForHLT::put(const uint32_t& DetId, Range input, const int& nCols) {
// put in SiPixelGainCalibrationForHLT of DetId
Registry::iterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationForHLT::StrictWeakOrdering());
if (p != indexes.end() && p->detid == DetId)
return false;
size_t sd = input.second - input.first;
DetRegistry detregistry;
detregistry.detid = DetId;
detregistry.ibegin = v_pedestals.size();
detregistry.iend = v_pedestals.size() + sd;
detregistry.ncols = nCols;
indexes.insert(p, detregistry);
v_pedestals.insert(v_pedestals.end(), input.first, input.second);
return true;
}
const int SiPixelGainCalibrationForHLT::getNCols(const uint32_t& DetId) const {
// get number of columns of DetId
RegistryIterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationForHLT::StrictWeakOrdering());
if (p == indexes.end() || p->detid != DetId)
return 0;
else {
return p->ncols;
}
}
const SiPixelGainCalibrationForHLT::Range SiPixelGainCalibrationForHLT::getRange(const uint32_t& DetId) const {
// get SiPixelGainCalibrationForHLT Range of DetId
RegistryIterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationForHLT::StrictWeakOrdering());
if (p == indexes.end() || p->detid != DetId)
return SiPixelGainCalibrationForHLT::Range(v_pedestals.end(), v_pedestals.end());
else
return SiPixelGainCalibrationForHLT::Range(v_pedestals.begin() + p->ibegin, v_pedestals.begin() + p->iend);
}
const std::pair<const SiPixelGainCalibrationForHLT::Range, const int> SiPixelGainCalibrationForHLT::getRangeAndNCols(
const uint32_t& DetId) const {
RegistryIterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationForHLT::StrictWeakOrdering());
if (p == indexes.end() || p->detid != DetId)
return std::make_pair(SiPixelGainCalibrationForHLT::Range(v_pedestals.end(), v_pedestals.end()), 0);
else
return std::make_pair(
SiPixelGainCalibrationForHLT::Range(v_pedestals.begin() + p->ibegin, v_pedestals.begin() + p->iend), p->ncols);
}
void SiPixelGainCalibrationForHLT::getDetIds(std::vector<uint32_t>& DetIds_) const {
// returns vector of DetIds in map
SiPixelGainCalibrationForHLT::RegistryIterator begin = indexes.begin();
SiPixelGainCalibrationForHLT::RegistryIterator end = indexes.end();
for (SiPixelGainCalibrationForHLT::RegistryIterator p = begin; p != end; ++p) {
DetIds_.push_back(p->detid);
}
}
void SiPixelGainCalibrationForHLT::setData(
float ped, float gain, std::vector<char>& vped, bool thisColumnIsDead, bool thisColumnIsNoisy) {
float theEncodedGain = 0;
float theEncodedPed = 0;
if (!thisColumnIsDead && !thisColumnIsNoisy) {
theEncodedGain = encodeGain(gain);
theEncodedPed = encodePed(ped);
}
unsigned int ped_ = (static_cast<unsigned int>(theEncodedPed)) & 0xFF;
unsigned int gain_ = (static_cast<unsigned int>(theEncodedGain)) & 0xFF;
if (thisColumnIsDead) {
ped_ = deadFlag_ & 0xFF;
gain_ = deadFlag_ & 0xFF;
} else if (thisColumnIsNoisy) {
ped_ = noisyFlag_ & 0xFF;
gain_ = noisyFlag_ & 0xFF;
}
unsigned int data = (ped_ << 8) | gain_;
vped.resize(vped.size() + 2);
// insert in vector of char
::memcpy((void*)(&vped[vped.size() - 2]), (void*)(&data), 2);
}
std::pair<float, float> SiPixelGainCalibrationForHLT::getPedAndGain(const int& col,
const int& row,
const Range& range,
const int& nCols,
bool& isDeadColumn,
bool& isNoisyColumn) const {
// determine what averaged data block we are in (there should be 1 or 2 of these depending on if plaquette is 1 by X or 2 by X
unsigned int lengthOfColumnData = (range.second - range.first) / nCols;
unsigned int lengthOfAveragedDataInEachColumn = 2; // we always only have two values per column averaged block
unsigned int numberOfDataBlocksToSkip = row / numberOfRowsToAverageOver_;
const unsigned int pos = col * lengthOfColumnData + lengthOfAveragedDataInEachColumn * numberOfDataBlocksToSkip;
const unsigned int gain = *(range.first + pos) & 0xFF;
const unsigned int ped = *(range.first + pos + 1) & 0xFF;
isDeadColumn = ped == deadFlag_;
isNoisyColumn = ped == noisyFlag_;
/*
int maxRow = (lengthOfColumnData/lengthOfAveragedDataInEachColumn)*numberOfRowsToAverageOver_ - 1;
if (col >= nCols || row > maxRow){
throw cms::Exception("CorruptedData")
<< "[SiPixelGainCalibrationForHLT::getPed] Pixel out of range: col " << col << " row: " << row;
}
*/
return std::make_pair(decodePed(ped), decodeGain(gain));
}
float SiPixelGainCalibrationForHLT::getPed(const int& col,
const int& row,
const Range& range,
const int& nCols,
bool& isDeadColumn,
bool& isNoisyColumn) const {
// TODO MERGE THIS FUNCTION WITH GET GAIN, then provide wrappers ( VI done, see above)
// determine what averaged data block we are in (there should be 1 or 2 of these depending on if plaquette is 1 by X or 2 by X
unsigned int lengthOfColumnData = (range.second - range.first) / nCols;
unsigned int lengthOfAveragedDataInEachColumn = 2; // we always only have two values per column averaged block
unsigned int numberOfDataBlocksToSkip = row / numberOfRowsToAverageOver_;
const unsigned int ped =
*(range.first + 1 + col * lengthOfColumnData + lengthOfAveragedDataInEachColumn * numberOfDataBlocksToSkip) &
0xFF;
if (ped == deadFlag_)
isDeadColumn = true;
else if (ped == noisyFlag_)
isNoisyColumn = true;
int maxRow = (lengthOfColumnData / lengthOfAveragedDataInEachColumn) * numberOfRowsToAverageOver_ - 1;
if (col >= nCols || row > maxRow) {
throw cms::Exception("CorruptedData")
<< "[SiPixelGainCalibrationForHLT::getPed] Pixel out of range: col " << col << " row: " << row;
}
return decodePed(ped);
}
float SiPixelGainCalibrationForHLT::getGain(const int& col,
const int& row,
const Range& range,
const int& nCols,
bool& isDeadColumn,
bool& isNoisyColumn) const {
// determine what averaged data block we are in (there should be 1 or 2 of these depending on if plaquette is 1 by X or 2 by X
unsigned int lengthOfColumnData = (range.second - range.first) / nCols;
unsigned int lengthOfAveragedDataInEachColumn = 2; // we always only have two values per column averaged block
unsigned int numberOfDataBlocksToSkip = row / numberOfRowsToAverageOver_;
const unsigned int gain =
*(range.first + col * lengthOfColumnData + lengthOfAveragedDataInEachColumn * numberOfDataBlocksToSkip) & 0xFF;
if (gain == deadFlag_)
isDeadColumn = true;
else if (gain == noisyFlag_)
isNoisyColumn = true;
int maxRow = (lengthOfColumnData / lengthOfAveragedDataInEachColumn) * numberOfRowsToAverageOver_ - 1;
if (col >= nCols || row > maxRow) {
throw cms::Exception("CorruptedData")
<< "[SiPixelGainCalibrationForHLT::getGain] Pixel out of range: col " << col << " row: " << row;
}
return decodeGain(gain);
}
float SiPixelGainCalibrationForHLT::encodeGain(const float& gain) {
if (gain < minGain_ || gain > maxGain_) {
throw cms::Exception("InsertFailure") << "[SiPixelGainCalibrationForHLT::encodeGain] Trying to encode gain ("
<< gain << ") out of range [" << minGain_ << "," << maxGain_ << "]\n";
} else {
float precision = (maxGain_ - minGain_) / static_cast<float>(nBinsToUseForEncoding_);
float encodedGain = (float)((gain - minGain_) / precision);
return encodedGain;
}
}
float SiPixelGainCalibrationForHLT::encodePed(const float& ped) {
if (ped < minPed_ || ped > maxPed_) {
throw cms::Exception("InsertFailure") << "[SiPixelGainCalibrationForHLT::encodePed] Trying to encode pedestal ("
<< ped << ") out of range [" << minPed_ << "," << maxPed_ << "]\n";
} else {
float precision = (maxPed_ - minPed_) / static_cast<float>(nBinsToUseForEncoding_);
float encodedPed = (float)((ped - minPed_) / precision);
return encodedPed;
}
}
|