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
|
#include "CalibTracker/SiStripAPVAnalysis/interface/SimplePedestalCalculator.h"
#include <cmath>
#include <numeric>
#include <algorithm>
using namespace std;
SimplePedestalCalculator::SimplePedestalCalculator(int evnt_ini) : numberOfEvents(0), alreadyUsedEvent(false) {
if (false)
cout << "Constructing SimplePedestalCalculator " << endl;
eventsRequiredToCalibrate = evnt_ini;
// eventsRequiredToUpdate = evnt_iter;
// cutToAvoidSignal = sig_cut;
init();
}
//
// Initialization.
//
void SimplePedestalCalculator::init() {
theRawNoise.clear();
thePedestal.clear();
thePedSum.clear();
thePedSqSum.clear();
theEventPerStrip.clear();
theStatus.setCalibrating();
}
//
// -- Destructor
//
SimplePedestalCalculator::~SimplePedestalCalculator() {
if (false)
cout << "Destructing SimplePedestalCalculator " << endl;
}
//
// -- Set Pedestal Update Status
//
void SimplePedestalCalculator::updateStatus() {
if (theStatus.isCalibrating() && numberOfEvents >= eventsRequiredToCalibrate) {
theStatus.setUpdating();
}
}
//
// -- Initialize or Update (when needed) Pedestal Values
//
void SimplePedestalCalculator::updatePedestal(ApvAnalysis::RawSignalType& in) {
if (alreadyUsedEvent == false) {
alreadyUsedEvent = true;
numberOfEvents++;
if (theStatus.isCalibrating()) {
initializePedestal(in);
} else if (theStatus.isUpdating()) {
refinePedestal(in);
}
updateStatus();
}
}
//
// -- Initialize Pedestal Values using a set of events (eventsRequiredToCalibrate)
//
void SimplePedestalCalculator::initializePedestal(ApvAnalysis::RawSignalType& in) {
if (numberOfEvents == 1) {
thePedSum.clear();
thePedSqSum.clear();
theEventPerStrip.clear();
thePedSum.reserve(128);
thePedSqSum.reserve(128);
theEventPerStrip.reserve(128);
thePedSum.resize(in.data.size(), 0);
thePedSqSum.resize(in.data.size(), 0);
theEventPerStrip.resize(in.data.size(), 0);
}
//eventsRequiredToCalibrate is considered the minimum number of events to be used
if (numberOfEvents <= eventsRequiredToCalibrate) {
edm::DetSet<SiStripRawDigi>::const_iterator i = in.data.begin();
int ii = 0;
for (; i != in.data.end(); i++) {
thePedSum[ii] += (*i).adc();
thePedSqSum[ii] += ((*i).adc()) * ((*i).adc());
theEventPerStrip[ii]++;
ii++;
}
}
if (numberOfEvents == eventsRequiredToCalibrate) {
thePedestal.clear();
theRawNoise.clear();
edm::DetSet<SiStripRawDigi>::const_iterator i = in.data.begin();
int ii = 0;
for (; i != in.data.end(); i++) {
// the pedestal is calculated as int, as required by FED.
int avVal = (theEventPerStrip[ii]) ? thePedSum[ii] / theEventPerStrip[ii] : 0;
double sqAvVal = (theEventPerStrip[ii]) ? thePedSqSum[ii] / theEventPerStrip[ii] : 0.0;
double corr_fac = (theEventPerStrip[ii] > 1) ? (theEventPerStrip[ii] / (theEventPerStrip[ii] - 1)) : 1.0;
double rmsVal = (sqAvVal - avVal * avVal > 0.0) ? sqrt(corr_fac * (sqAvVal - avVal * avVal)) : 0.0;
thePedestal.push_back(static_cast<float>(avVal));
theRawNoise.push_back(static_cast<float>(rmsVal));
ii++;
}
}
}
//
// -- Update Pedestal Values when needed.
//
void SimplePedestalCalculator::refinePedestal(ApvAnalysis::RawSignalType& in) {
// keep adding th adc count for any events
unsigned int ii = 0;
ApvAnalysis::RawSignalType::const_iterator i = in.data.begin();
for (; i < in.data.end(); i++) {
thePedSum[ii] += (*i).adc();
thePedSqSum[ii] += ((*i).adc()) * ((*i).adc());
theEventPerStrip[ii]++;
ii++;
}
// calculate a new pedestal any events, so it will come for free when for the last event
for (unsigned int iii = 0; iii < in.data.size(); iii++) {
if (theEventPerStrip[iii] > 10) {
int avVal = (theEventPerStrip[iii]) ? thePedSum[iii] / theEventPerStrip[iii] : 0;
double sqAvVal = (theEventPerStrip[iii]) ? thePedSqSum[iii] / theEventPerStrip[iii] : 0.0;
double rmsVal = (sqAvVal - avVal * avVal > 0.0) ? sqrt(sqAvVal - avVal * avVal) : 0.0;
if (avVal != 0) {
thePedestal[iii] = static_cast<float>(avVal);
theRawNoise[iii] = static_cast<float>(rmsVal);
}
}
}
}
//
// Define New Event
//
void SimplePedestalCalculator::newEvent() { alreadyUsedEvent = false; }
|