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
|
#include "CondCore/Utilities/interface/PayloadInspectorModule.h"
#include "CondCore/Utilities/interface/PayloadInspector.h"
#include "CondCore/CondDB/interface/Time.h"
// the data format of the condition to be inspected
#include "CondFormats/ESObjects/interface/ESIntercalibConstants.h"
#include "DataFormats/EcalDetId/interface/ESDetId.h"
#include "CondCore/EcalPlugins/plugins/ESDrawUtils.h"
#include <memory>
#include <sstream>
#include "TStyle.h"
#include "TH2F.h"
#include "TCanvas.h"
#include "TLine.h"
#include "TLatex.h"
namespace {
enum { kESChannels = 137216 };
enum { IX_MIN = 1, IY_MIN = 1, IX_MAX = 40, IY_MAX = 40 }; // endcaps lower and upper bounds on x and y
/*********************************************************
2d plot of ES channel status of 1 IOV
*********************************************************/
class ESIntercalibConstantsPlot : public cond::payloadInspector::PlotImage<ESIntercalibConstants> {
public:
ESIntercalibConstantsPlot() : cond::payloadInspector::PlotImage<ESIntercalibConstants>("ES IntercalibConstants") {
setSingleIov(true);
}
bool fill(const std::vector<std::tuple<cond::Time_t, cond::Hash> >& iovs) override {
TH2F*** esmap = new TH2F**[2];
std::string title[2][2] = {{"ES+F", "ES-F"}, {"ES+R", "ES-R"}};
for (int plane = 0; plane < 2; plane++) {
esmap[plane] = new TH2F*[2];
for (int side = 0; side < 2; side++)
esmap[plane][side] = new TH2F(
Form("esmap%i%i", plane, side), title[plane][side].c_str(), IX_MAX, 0, IX_MAX, IY_MAX, 0, IY_MAX);
}
unsigned int run = 0;
float valmin = 999.;
auto iov = iovs.front();
std::shared_ptr<ESIntercalibConstants> payload = fetchPayload(std::get<1>(iov));
run = std::get<0>(iov);
if (payload.get()) {
// looping over all the ES channels
for (int id = 0; id < kESChannels; id++)
if (ESDetId::validHashIndex(id)) {
ESDetId myESId = ESDetId::unhashIndex(id);
int side = myESId.zside(); // -1, 1
if (side < 0)
side = 1;
else
side = 0;
int plane = myESId.plane() - 1; // 1, 2
if (side < 0 || side > 1 || plane < 0 || plane > 1) {
std::cout << " channel " << id << " side " << myESId.zside() << " plane " << myESId.plane() << std::endl;
return false;
}
ESIntercalibConstants::const_iterator IC_it = payload->find(myESId);
float value = *IC_it;
// if(id < 64) std::cout << " channel " << id << " value " << value << std::endl;
if (myESId.strip() == 1) { // we get 32 times the same value, plot it only once!
esmap[plane][side]->Fill(myESId.six() - 1, myESId.siy() - 1, value);
if (value < valmin)
valmin = value;
}
} // validHashIndex
} // payload
gStyle->SetOptStat(0);
gStyle->SetPalette(1);
TCanvas canvas("CC map", "CC map", 1680, 1320);
TLatex t1;
t1.SetNDC();
t1.SetTextAlign(26);
t1.SetTextSize(0.05);
t1.DrawLatex(0.5, 0.96, Form("ES Intercalib Constants, IOV %i", run));
t1.SetTextSize(0.025);
float xmi[2] = {0.0, 0.5};
float xma[2] = {0.5, 1.0};
TPad*** pad = new TPad**[2];
for (int plane = 0; plane < 2; plane++) {
pad[plane] = new TPad*[2];
for (int side = 0; side < 2; side++) {
float yma = 0.94 - (0.46 * plane);
float ymi = yma - 0.44;
pad[plane][side] =
new TPad(Form("p_%i_%i", plane, side), Form("p_%i_%i", plane, side), xmi[side], ymi, xma[side], yma);
pad[plane][side]->Draw();
}
}
int min = valmin * 10 - 1.;
valmin = (float)min / 10.;
for (int side = 0; side < 2; side++) {
for (int plane = 0; plane < 2; plane++) {
pad[plane][side]->cd();
esmap[plane][side]->Draw("colz1");
esmap[plane][side]->SetMinimum(valmin);
DrawES(plane, side);
}
}
std::string ImageName(m_imageFileName);
canvas.SaveAs(ImageName.c_str());
return true;
} // fill method
};
/************************************************************************
2d plot of ES channel status difference between 2 IOVs
************************************************************************/
template <cond::payloadInspector::IOVMultiplicity nIOVs, int ntags>
class ESIntercalibConstantsDiffBase : public cond::payloadInspector::PlotImage<ESIntercalibConstants, nIOVs, ntags> {
public:
ESIntercalibConstantsDiffBase()
: cond::payloadInspector::PlotImage<ESIntercalibConstants, nIOVs, ntags>("ES IntercalibConstants difference") {}
bool fill() override {
TH2F*** esmap = new TH2F**[2];
std::string title[2][2] = {{"ES+F", "ES-F"}, {"ES+R", "ES-R"}};
for (int plane = 0; plane < 2; plane++) {
esmap[plane] = new TH2F*[2];
for (int side = 0; side < 2; side++)
esmap[plane][side] = new TH2F(
Form("esmap%i%i", plane, side), title[plane][side].c_str(), IX_MAX, 0, IX_MAX, IY_MAX, 0, IY_MAX);
}
unsigned int run[2];
std::string l_tagname[2];
float val[kESChannels], valmin = 999.;
auto iovs = cond::payloadInspector::PlotBase::getTag<0>().iovs;
l_tagname[0] = cond::payloadInspector::PlotBase::getTag<0>().name;
auto firstiov = iovs.front();
run[0] = std::get<0>(firstiov);
std::tuple<cond::Time_t, cond::Hash> lastiov;
if (ntags == 2) {
auto tag2iovs = cond::payloadInspector::PlotBase::getTag<1>().iovs;
l_tagname[1] = cond::payloadInspector::PlotBase::getTag<1>().name;
lastiov = tag2iovs.front();
} else {
lastiov = iovs.back();
l_tagname[1] = l_tagname[0];
}
run[1] = std::get<0>(lastiov);
for (int irun = 0; irun < nIOVs; irun++) {
std::shared_ptr<ESIntercalibConstants> payload;
if (irun == 0) {
payload = this->fetchPayload(std::get<1>(firstiov));
} else {
payload = this->fetchPayload(std::get<1>(lastiov));
}
if (payload.get()) {
for (int id = 0; id < kESChannels; id++) // looping over all the ES channels
if (ESDetId::validHashIndex(id)) {
ESDetId myESId = ESDetId::unhashIndex(id);
// ESIntercalibConstantsCode status_it = (payload->getMap())[myESId];
ESIntercalibConstants::const_iterator IC_it = payload->find(myESId);
float value = *IC_it;
// int status = status_it.getStatusCode();
if (irun == 0)
val[id] = value;
else {
int side = myESId.zside(); // -1, 1
if (side < 0)
side = 1;
else
side = 0;
int plane = myESId.plane() - 1; // 1, 2
if (side < 0 || side > 1 || plane < 0 || plane > 1) {
std::cout << " channel " << id << " side " << myESId.zside() << " plane " << myESId.plane()
<< std::endl;
return false;
}
// int diff = status - stat[id];
int diff = value - val[id];
if (myESId.strip() == 1) { // we get 32 times the same value, plot it only once!
esmap[plane][side]->Fill(myESId.six() - 1, myESId.siy() - 1, diff);
if (diff < valmin)
valmin = diff;
}
} // 2nd IOV
} // validHashIndex
} // payload
} // loop over IOVs
gStyle->SetOptStat(0);
gStyle->SetPalette(1);
TCanvas canvas("CC map", "CC map", 1680, 1320);
TLatex t1;
t1.SetNDC();
t1.SetTextAlign(26);
int len = l_tagname[0].length() + l_tagname[1].length();
if (ntags == 2 && len < 58) {
t1.SetTextSize(0.025);
t1.DrawLatex(
0.5, 0.96, Form("%s IOV %i - %s IOV %i", l_tagname[1].c_str(), run[1], l_tagname[0].c_str(), run[0]));
} else {
t1.SetTextSize(0.03);
t1.DrawLatex(0.5, 0.96, Form("ES Intercalib Constants, IOV %i - %i", run[1], run[0]));
}
float xmi[2] = {0.0, 0.5};
float xma[2] = {0.5, 1.0};
TPad*** pad = new TPad**[2];
for (int plane = 0; plane < 2; plane++) {
pad[plane] = new TPad*[2];
for (int side = 0; side < 2; side++) {
float yma = 0.94 - (0.46 * plane);
float ymi = yma - 0.44;
pad[plane][side] =
new TPad(Form("p_%i_%i", plane, side), Form("p_%i_%i", plane, side), xmi[side], ymi, xma[side], yma);
pad[plane][side]->Draw();
}
}
int min = valmin * 10 - 1.;
valmin = (float)min / 10.;
for (int side = 0; side < 2; side++) {
for (int plane = 0; plane < 2; plane++) {
pad[plane][side]->cd();
esmap[plane][side]->Draw("colz1");
esmap[plane][side]->SetMinimum(valmin);
DrawES(plane, side);
}
}
std::string ImageName(this->m_imageFileName);
canvas.SaveAs(ImageName.c_str());
return true;
} // fill method
}; // class ESIntercalibConstantsDiffBase
using ESIntercalibConstantsDiffOneTag = ESIntercalibConstantsDiffBase<cond::payloadInspector::SINGLE_IOV, 1>;
using ESIntercalibConstantsDiffTwoTags = ESIntercalibConstantsDiffBase<cond::payloadInspector::SINGLE_IOV, 2>;
} // namespace
// Register the classes as boost python plugin
PAYLOAD_INSPECTOR_MODULE(ESIntercalibConstants) {
PAYLOAD_INSPECTOR_CLASS(ESIntercalibConstantsPlot);
PAYLOAD_INSPECTOR_CLASS(ESIntercalibConstantsDiffOneTag);
PAYLOAD_INSPECTOR_CLASS(ESIntercalibConstantsDiffTwoTags);
}
|