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
238
239
240
241
242
243
244
245
246
247
|
#include "CondFormats/SiPixelObjects/interface/SiPixelGainCalibrationOffline.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <algorithm>
#include <cstring>
//
// Constructors
//
SiPixelGainCalibrationOffline::SiPixelGainCalibrationOffline()
: minPed_(0.),
maxPed_(255.),
minGain_(0.),
maxGain_(255.),
numberOfRowsToAverageOver_(80),
nBinsToUseForEncoding_(253),
deadFlag_(255),
noisyFlag_(254) {
if (deadFlag_ > 0xFF)
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationOffline::SiPixelGainCalibrationOffline] Dead flag was set to " << deadFlag_
<< ", and it must be set less than or equal to 255";
if (noisyFlag_ > 0xFF)
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationOffline::SiPixelGainCalibrationOffline] Noisy flag was set to " << noisyFlag_
<< ", and it must be set less than or equal to 255";
}
//
SiPixelGainCalibrationOffline::SiPixelGainCalibrationOffline(float minPed, float maxPed, float minGain, float maxGain)
: minPed_(minPed),
maxPed_(maxPed),
minGain_(minGain),
maxGain_(maxGain),
numberOfRowsToAverageOver_(80),
nBinsToUseForEncoding_(253),
deadFlag_(255),
noisyFlag_(254) {
if (deadFlag_ > 0xFF)
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationOffline::SiPixelGainCalibrationOffline] Dead flag was set to " << deadFlag_
<< ", and it must be set less than or equal to 255";
if (noisyFlag_ > 0xFF)
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationOffline::SiPixelGainCalibrationOffline] Noisy flag was set to " << noisyFlag_
<< ", and it must be set less than or equal to 255";
}
bool SiPixelGainCalibrationOffline::put(const uint32_t& DetId, Range input, const int& nCols) {
// put in SiPixelGainCalibrationOffline of DetId
Registry::iterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationOffline::StrictWeakOrdering());
if (p != indexes.end() && p->detid == DetId)
return false;
size_t sd = input.second - input.first;
DetRegistry detregistry;
detregistry.detid = DetId;
detregistry.ncols = nCols;
detregistry.ibegin = v_pedestals.size();
detregistry.iend = v_pedestals.size() + sd;
indexes.insert(p, detregistry);
v_pedestals.insert(v_pedestals.end(), input.first, input.second);
return true;
}
const int SiPixelGainCalibrationOffline::getNCols(const uint32_t& DetId) const {
// get number of columns of DetId
RegistryIterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationOffline::StrictWeakOrdering());
if (p == indexes.end() || p->detid != DetId)
return 0;
else
return p->ncols;
}
const SiPixelGainCalibrationOffline::Range SiPixelGainCalibrationOffline::getRange(const uint32_t& DetId) const {
// get SiPixelGainCalibrationOffline Range of DetId
RegistryIterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationOffline::StrictWeakOrdering());
if (p == indexes.end() || p->detid != DetId)
return SiPixelGainCalibrationOffline::Range(v_pedestals.end(), v_pedestals.end());
else
return SiPixelGainCalibrationOffline::Range(v_pedestals.begin() + p->ibegin, v_pedestals.begin() + p->iend);
}
const std::pair<const SiPixelGainCalibrationOffline::Range, const int> SiPixelGainCalibrationOffline::getRangeAndNCols(
const uint32_t& DetId) const {
RegistryIterator p =
std::lower_bound(indexes.begin(), indexes.end(), DetId, SiPixelGainCalibrationOffline::StrictWeakOrdering());
if (p == indexes.end() || p->detid != DetId)
return std::make_pair(SiPixelGainCalibrationOffline::Range(v_pedestals.end(), v_pedestals.end()), 0);
else
return std::make_pair(
SiPixelGainCalibrationOffline::Range(v_pedestals.begin() + p->ibegin, v_pedestals.begin() + p->iend), p->ncols);
}
void SiPixelGainCalibrationOffline::getDetIds(std::vector<uint32_t>& DetIds_) const {
// returns vector of DetIds in map
SiPixelGainCalibrationOffline::RegistryIterator begin = indexes.begin();
SiPixelGainCalibrationOffline::RegistryIterator end = indexes.end();
for (SiPixelGainCalibrationOffline::RegistryIterator p = begin; p != end; ++p) {
DetIds_.push_back(p->detid);
}
}
void SiPixelGainCalibrationOffline::setDataGain(
float gain, const int& nRows, std::vector<char>& vped, bool thisColumnIsDead, bool thisColumnIsNoisy) {
float theEncodedGain = 0;
if (!thisColumnIsDead && !thisColumnIsNoisy)
theEncodedGain = encodeGain(gain);
unsigned int gain_ = (static_cast<unsigned int>(theEncodedGain)) & 0xFF;
// if this whole column is dead, set a char based dead flag in the blob.
if (thisColumnIsDead)
gain_ = deadFlag_ & 0xFF;
if (thisColumnIsNoisy)
gain_ = noisyFlag_ & 0xFF;
vped.resize(vped.size() + 1);
//check to make sure the column is being placed in the right place in the blob
if (nRows != (int)numberOfRowsToAverageOver_) {
throw cms::Exception("GainCalibration Payload configuration error")
<< "[SiPixelGainCalibrationOffline::setDataGain] You are setting a gain averaged over nRows = " << nRows
<< " where this payload is set ONLY to average over " << numberOfRowsToAverageOver_ << " nRows";
}
if (vped.size() % (nRows + 1) != 0) {
throw cms::Exception("FillError")
<< "[SiPixelGainCalibrationOffline::setDataGain] Column gain average (OR SETTING AN ENTIRE COLUMN DEAD/NOISY) "
"must be filled after the pedestal for each row has been added. An additional source of this error would be "
"setting a pixel dead/noisy AND setting its pedestal";
}
// insert in vector of char
::memcpy((void*)(&vped[vped.size() - 1]), (void*)(&gain_), 1);
}
void SiPixelGainCalibrationOffline::setDataPedestal(float pedestal,
std::vector<char>& vped,
bool thisPixelIsDead,
bool thisPixelIsNoisy) {
float theEncodedPedestal = encodePed(pedestal);
unsigned int ped_ = (static_cast<unsigned int>(theEncodedPedestal)) & 0xFF;
if (thisPixelIsDead)
ped_ = deadFlag_ & 0xFF;
if (thisPixelIsNoisy)
ped_ = noisyFlag_ & 0xFF;
vped.resize(vped.size() + 1);
// insert in vector of char
::memcpy((void*)(&vped[vped.size() - 1]), (void*)(&ped_), 1);
}
float SiPixelGainCalibrationOffline::getPed(
const int& col, const int& row, const Range& range, const int& nCols, bool& isDead, bool& isNoisy) const {
unsigned int lengthOfColumnData = (range.second - range.first) / nCols;
// determine what row averaged range we are in (i.e. ROC 1 or ROC 2)
unsigned int lengthOfAveragedDataInEachColumn = numberOfRowsToAverageOver_ + 1;
unsigned int numberOfAveragedDataBlocksToSkip = row / numberOfRowsToAverageOver_;
unsigned int offSetInCorrectDataBlock = row % numberOfRowsToAverageOver_;
const unsigned int datum =
*(range.first + col * lengthOfColumnData + numberOfAveragedDataBlocksToSkip * lengthOfAveragedDataInEachColumn +
offSetInCorrectDataBlock) &
0xFF;
int maxRow = lengthOfColumnData - (lengthOfColumnData % numberOfRowsToAverageOver_) - 1;
if (col >= nCols || row > maxRow) {
throw cms::Exception("CorruptedData")
<< "[SiPixelGainCalibrationOffline::getPed] Pixel out of range: col " << col << " row " << row;
}
if (datum == deadFlag_)
isDead = true;
if (datum == noisyFlag_)
isNoisy = true;
return decodePed(datum);
}
float SiPixelGainCalibrationOffline::getGain(const int& col,
const int& row,
const Range& range,
const int& nCols,
bool& isDeadColumn,
bool& isNoisyColumn) const {
unsigned int lengthOfColumnData = (range.second - range.first) / nCols;
// determine what row averaged range we are in (i.e. ROC 1 or ROC 2)
unsigned int lengthOfAveragedDataInEachColumn = numberOfRowsToAverageOver_ + 1;
unsigned int numberOfAveragedDataBlocksToSkip = row / numberOfRowsToAverageOver_;
// gain average is stored in the last location of current row averaged column data block
const unsigned int datum = *(range.first + col * lengthOfColumnData +
((numberOfAveragedDataBlocksToSkip + 1) * lengthOfAveragedDataInEachColumn) - 1) &
0xFF;
if (datum == deadFlag_)
isDeadColumn = true;
if (datum == noisyFlag_)
isNoisyColumn = true;
int maxRow = lengthOfColumnData - (lengthOfColumnData % numberOfRowsToAverageOver_) - 1;
if (col >= nCols || row > maxRow) {
throw cms::Exception("CorruptedData")
<< "[SiPixelGainCalibrationOffline::getPed] Pixel out of range: col " << col << " row " << row;
}
return decodeGain(datum);
}
float SiPixelGainCalibrationOffline::encodeGain(const float& gain) {
if (gain < minGain_ || gain > maxGain_) {
throw cms::Exception("InsertFailure") << "[SiPixelGainCalibrationOffline::encodeGain] Trying to encode gain ("
<< gain << ") out of range [" << minGain_ << "," << maxGain_ << "]\n";
} else {
double precision = (maxGain_ - minGain_) / static_cast<float>(nBinsToUseForEncoding_);
float encodedGain = (float)((gain - minGain_) / precision);
return encodedGain;
}
}
float SiPixelGainCalibrationOffline::encodePed(const float& ped) {
if (ped < minPed_ || ped > maxPed_) {
throw cms::Exception("InsertFailure") << "[SiPixelGainCalibrationOffline::encodePed] Trying to encode pedestal ("
<< ped << ") out of range [" << minPed_ << "," << maxPed_ << "]\n";
} else {
double precision = (maxPed_ - minPed_) / static_cast<float>(nBinsToUseForEncoding_);
float encodedPed = (float)((ped - minPed_) / precision);
return encodedPed;
}
}
float SiPixelGainCalibrationOffline::decodePed(unsigned int ped) const {
double precision = (maxPed_ - minPed_) / static_cast<float>(nBinsToUseForEncoding_);
float decodedPed = (float)(ped * precision + minPed_);
return decodedPed;
}
float SiPixelGainCalibrationOffline::decodeGain(unsigned int gain) const {
double precision = (maxGain_ - minGain_) / static_cast<float>(nBinsToUseForEncoding_);
float decodedGain = (float)(gain * precision + minGain_);
return decodedGain;
}
|