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
|
/*
* =====================================================================================
*
* Filename: SiPixelGainCalibrationForHLT.cc
*
* Description:
*
* Version: 1.0 (some functionality moved from ../interface/SiPixelGainCalibrationForHLT.h)
* Created: 04/16/2008 10:35:35 AM
*
* Author: Evan Friis (evan.klose.friis@cern.ch)
* University of California, Davis
*
* =====================================================================================
*/
#include "CalibTracker/SiPixelESProducers/interface/SiPixelGainCalibrationForHLTService.h"
#include <tuple>
void SiPixelGainCalibrationForHLTService::calibrate(
uint32_t detID, DigiIterator b, DigiIterator e, float conversionFactor, float offset, int* electron) {
SiPixelGainCalibrationForHLT::Range range;
int cols;
std::tie(range, cols) = ped->getRangeAndNCols(detID);
float pedestal = 0, gain = 0;
int i = 0;
bool isDeadColumn = false, isNoisyColumn = false;
int oldCol = -1, oldAveragedBlock = -1;
for (DigiIterator di = b; di != e; ++di) {
int row = di->row();
int col = di->column();
int averagedBlock = row / numberOfRowsAveragedOver_;
if ((col != oldCol) | (averagedBlock != oldAveragedBlock)) {
oldCol = col;
oldAveragedBlock = averagedBlock;
std::tie(pedestal, gain) = ped->getPedAndGain(col, row, range, cols, isDeadColumn, isNoisyColumn);
}
if (isDeadColumn | isNoisyColumn)
electron[i++] = 0;
else {
float vcal = float(di->adc()) * gain - pedestal * gain;
electron[i++] = int(vcal * conversionFactor + offset);
}
}
assert(i == (e - b));
}
float SiPixelGainCalibrationForHLTService::getPedestal(const uint32_t& detID, const int& col, const int& row) {
bool isDead = false;
bool isNoisy = false;
float pedestalValue = this->getPedestalByColumn(detID, col, row, isDead, isNoisy);
if (isDead || isNoisy) {
this->throwExepctionForBadRead("HLT getPedestal()", detID, col, row, pedestalValue);
return 0.0;
}
return pedestalValue;
}
float SiPixelGainCalibrationForHLTService::getGain(const uint32_t& detID, const int& col, const int& row) {
bool isDead = false;
bool isNoisy = false;
float gainValue = this->getGainByColumn(detID, col, row, isDead, isNoisy);
if (isDead || isNoisy) {
this->throwExepctionForBadRead("HLT getGain()", detID, col, row, gainValue);
return 0.0;
}
return gainValue;
}
bool SiPixelGainCalibrationForHLTService::isDead(const uint32_t& detID, const int& col, const int& row) {
bool isDead = false;
bool isNoisy = false;
try {
this->getPedestalByColumn(detID, col, row, isDead, isNoisy); //pedestal stores dead column value as well
} catch (cms::Exception& e) {
// Do not stop processing if you check if a nonexistant pixel is dead
edm::LogInfo("SiPixelGainCalibrationForHLTService")
<< "Attempting to check if nonexistant pixel is dead. Exception message: " << e.what();
isDead = false;
}
return isDead;
}
bool SiPixelGainCalibrationForHLTService::isNoisy(const uint32_t& detID, const int& col, const int& row) {
bool isDead = false;
bool isNoisy = false;
try {
this->getPedestalByColumn(detID, col, row, isDead, isNoisy); //pedestal stores noisy column value as well
} catch (cms::Exception& e) {
// Do not stop processing if you check if a nonexistant pixel is noisy
edm::LogInfo("SiPixelGainCalibrationForHLTService")
<< "Attempting to check if nonexistant pixel is noisy. Exception message: " << e.what();
isNoisy = false;
}
return isNoisy;
}
bool SiPixelGainCalibrationForHLTService::isDeadColumn(const uint32_t& detID, const int& col, const int& row) {
bool isDead = false;
bool isNoisy = false;
try {
this->getGainByColumn(detID, col, row, isDead, isNoisy);
} catch (cms::Exception& e) {
// Do not stop processing if you check if a nonexistant pixel is dead
edm::LogInfo("SiPixelGainCalibrationForHLTService")
<< "Attempting to check if nonexistant pixel is dead. Exception message: " << e.what();
isDead = false;
}
return isDead;
}
bool SiPixelGainCalibrationForHLTService::isNoisyColumn(const uint32_t& detID, const int& col, const int& row) {
bool isDead = false;
bool isNoisy = false;
try {
this->getGainByColumn(detID, col, row, isDead, isNoisy);
} catch (cms::Exception& e) {
// Do not stop processing if you check if a nonexistant pixel is noisy
edm::LogInfo("SiPixelGainCalibrationForHLTService")
<< "Attempting to check if nonexistant pixel is noisy. Exception message: " << e.what();
isNoisy = false;
}
return isNoisy;
}
|