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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
#include "CondTools/Ecal/interface/EcalLaserHandler.h"
#include "OnlineDB/EcalCondDB/interface/EcalLogicID.h"
#include "OnlineDB/EcalCondDB/interface/LMFSextuple.h"
#include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
#include "CondCore/CondDB/interface/Time.h"
#include "DataFormats/Provenance/interface/Timestamp.h"
#include "OnlineDB/EcalCondDB/interface/Tm.h"
#include <iostream>
#include <iomanip>
#include <sstream>
popcon::EcalLaserHandler::EcalLaserHandler(const edm::ParameterSet &ps)
: m_name(ps.getUntrackedParameter<std::string>("name", "EcalLaserHandler")) {
std::cout << "EcalLaser Source handler constructor\n" << std::endl;
m_sequences = 1;
m_fake = true;
m_sid = ps.getParameter<std::string>("OnlineDBSID");
m_user = ps.getParameter<std::string>("OnlineDBUser");
m_pass = ps.getParameter<std::string>("OnlineDBPassword");
m_debug = ps.getParameter<bool>("debug");
m_fake = ps.getParameter<bool>("fake");
m_sequences = static_cast<unsigned int>(atoi(ps.getParameter<std::string>("sequences").c_str()));
m_maxtime = ps.getParameter<std::string>("maxtime");
std::cout << "Starting O2O process on DB: " << m_sid << " User: " << m_user << std::endl;
if (m_fake) {
std::cout << "*******************************************" << std::endl;
std::cout << "This is a fake run. No change to offline DB" << std::endl;
std::cout << "*******************************************" << std::endl;
}
}
popcon::EcalLaserHandler::~EcalLaserHandler() {
// do nothing
}
double popcon::EcalLaserHandler::diff(float a, float b) { return std::abs(b - a) / a; }
void popcon::EcalLaserHandler::notifyProblems(const EcalLaserAPDPNRatios::EcalLaserAPDPNpair &old,
const EcalLaserAPDPNRatios::EcalLaserAPDPNpair ¤t,
int hashedIndex,
const std::string &reason) {
std::cout << "===== " << reason << " =====" << std::endl;
if (hashedIndex < 0) {
EEDetId ee;
std::cout << "Triplets for " << ee.unhashIndex(-hashedIndex) << " bad: [" << old.p1 << ", " << old.p2 << ", "
<< old.p3 << "] ==> [" << current.p1 << ", " << current.p2 << ", " << current.p3 << "]" << std::endl;
} else {
EBDetId eb;
std::cout << "Triplets for " << eb.unhashIndex(hashedIndex) << " bad: [" << old.p1 << ", " << old.p2 << ", "
<< old.p3 << "] ==> [" << current.p1 << ", " << current.p2 << ", " << current.p3 << "]" << std::endl;
}
}
bool popcon::EcalLaserHandler::checkAPDPN(const EcalLaserAPDPNRatios::EcalLaserAPDPNpair &old,
const EcalLaserAPDPNRatios::EcalLaserAPDPNpair ¤t,
int hashedIndex) {
bool ret = true;
if ((current.p1 < 0) || (current.p2 < 0) || (current.p3 < 0)) {
ret = false;
notifyProblems(old, current, hashedIndex, "Negative values");
} else if ((current.p1 > 10) || (current.p2 > 10) || (current.p3 > 10)) {
ret = false;
notifyProblems(old, current, hashedIndex, "Values too large");
} else if (((diff(old.p1, current.p1) > 0.2) && (old.p1 != 0) && (old.p1 != 1)) ||
((diff(old.p2, current.p2) > 0.2) && (old.p2 != 0) && (old.p1 != 2)) ||
((diff(old.p3, current.p3) > 0.2) && (old.p3 != 0) && (old.p1 != 3))) {
ret = false;
notifyProblems(old, current, hashedIndex, "Difference w.r.t. previous too large");
}
return ret;
}
bool popcon::EcalLaserHandler::checkAPDPNs(const EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap &laserMap,
const EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap &apdpns_popcon) {
bool ret = true;
for (int hashedIndex = 0; hashedIndex < 61200; hashedIndex++) {
EcalLaserAPDPNRatios::EcalLaserAPDPNpair old = laserMap.barrel(hashedIndex);
EcalLaserAPDPNRatios::EcalLaserAPDPNpair current = apdpns_popcon.barrel(hashedIndex);
ret = checkAPDPN(old, current, hashedIndex);
}
for (int hashedIndex = 0; hashedIndex < 14648; hashedIndex++) {
EcalLaserAPDPNRatios::EcalLaserAPDPNpair old = laserMap.endcap(hashedIndex);
EcalLaserAPDPNRatios::EcalLaserAPDPNpair current = apdpns_popcon.endcap(hashedIndex);
ret = checkAPDPN(old, current, -hashedIndex);
}
return ret;
}
void popcon::EcalLaserHandler::dumpBarrelPayload(EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap const &laserMap) {
int c = 0;
EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap::const_iterator i = laserMap.barrelItems().begin();
EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap::const_iterator e = laserMap.barrelItems().end();
EBDetId eb;
try {
EcalCondDBInterface *econn = new EcalCondDBInterface(m_sid, m_user, m_pass);
while (i != e) {
if (c % 1000 == 0) {
std::cout << std::setw(5) << c << ": " << eb.unhashIndex(c) << " "
<< econn
->getEcalLogicID("EB_crystal_angle",
eb.unhashIndex(c).ieta(),
eb.unhashIndex(c).iphi(),
EcalLogicID::NULLID,
"EB_crystal_number")
.getLogicID()
<< " " << std::setiosflags(std::ios::fixed) << std::setprecision(9) << i->p1 << " " << i->p2 << " "
<< i->p3 << std::endl;
}
i++;
c++;
}
delete econn;
} catch (std::runtime_error &e) {
std::cerr << e.what() << std::endl;
delete econn;
throw cms::Exception("OMDS not available");
}
}
void popcon::EcalLaserHandler::dumpEndcapPayload(EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap const &laserMap) {
int c = 0;
EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap::const_iterator i = laserMap.endcapItems().begin();
EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap::const_iterator e = laserMap.endcapItems().end();
EEDetId ee;
try {
EcalCondDBInterface *econn = new EcalCondDBInterface(m_sid, m_user, m_pass);
while (i != e) {
if (c % 1000 == 0) {
std::cout << std::setw(5) << c << ": " << ee.unhashIndex(c) << " "
<< econn
->getEcalLogicID("EE_crystal_number",
ee.unhashIndex(c).zside(),
ee.unhashIndex(c).ix(),
ee.unhashIndex(c).iy(),
"EE_crystal_number")
.getLogicID()
<< " " << std::setiosflags(std::ios::fixed) << std::setprecision(9) << i->p1 << " " << i->p2 << " "
<< i->p3 << std::endl;
}
i++;
c++;
}
delete econn;
} catch (std::runtime_error &e) {
std::cerr << e.what() << std::endl;
delete econn;
throw cms::Exception("OMDS not available");
}
}
void popcon::EcalLaserHandler::getNewObjects() {
std::cerr << "------- " << m_name << " ---> getNewObjects" << std::endl;
std::cout << "------- Ecal -> getNewObjects\n";
unsigned long long max_since = 1;
Ref payload = lastPayload();
// here popcon tells us which is the last since of the last object in the
// offline DB
max_since = tagInfo().lastInterval.since;
// Tm max_since_tm((max_since >> 32)*1000000);
Tm max_since_tm(max_since);
// get the last object in the orcoff
edm::Timestamp t_min = edm::Timestamp(18446744073709551615ULL);
const EcalLaserAPDPNRatios::EcalLaserAPDPNRatiosMap &laserRatiosMap = payload->getLaserMap();
std::cout << "payload->getLaserMap(): OK " << std::endl;
std::cout << "Its size is " << laserRatiosMap.size() << std::endl;
const EcalLaserAPDPNRatios::EcalLaserTimeStampMap &laserTimeMap = payload->getTimeMap();
std::cout << "payload->getTimeMap(): OK " << std::endl;
std::cout << "Last Object in Offline DB has SINCE = " << max_since << " -> " << max_since_tm.cmsNanoSeconds() << " ("
<< max_since_tm << ")"
<< " and SIZE = " << tagInfo().size << std::endl;
// loop through light modules and determine the minimum date among the
// available channels
if (m_debug) {
dumpBarrelPayload(laserRatiosMap);
dumpEndcapPayload(laserRatiosMap);
}
for (int i = 0; i < 92; i++) {
EcalLaserAPDPNRatios::EcalLaserTimeStamp timestamp = laserTimeMap[i];
if (t_min > timestamp.t1) {
t_min = timestamp.t1;
}
}
std::cout << "WOW: we just retrieved the last valid record from DB " << std::endl;
//std::cout <<"Its tmin is "<< Tm((t_min.value() >> 32)*1000000)
std::cout << "Its tmin is " << Tm(t_min.value()) << std::endl;
// connect to the database
try {
std::cout << "Making connection..." << std::flush;
econn = new EcalCondDBInterface(m_sid, m_user, m_pass);
std::cout << "Done." << std::endl;
} catch (std::runtime_error &e) {
std::cout << " connection parameters " << m_sid << "/" << m_user;
if (m_debug) {
std::cout << "/" << m_pass << std::endl;
} else {
std::cout << "/**********" << std::endl;
}
std::cerr << e.what() << std::endl;
throw cms::Exception("OMDS not available");
}
// retrieve the lists of logic_ids, to build the detids
std::vector<EcalLogicID> crystals_EB = econn->getEcalLogicIDSetOrdered(
"EB_crystal_angle", -85, 85, 1, 360, EcalLogicID::NULLID, EcalLogicID::NULLID, "EB_crystal_number", 4);
std::vector<EcalLogicID> crystals_EE =
econn->getEcalLogicIDSetOrdered("EE_crystal_number", -1, 1, 1, 100, 1, 100, "EE_crystal_number", 4);
std::vector<EcalLogicID>::const_iterator ieb = crystals_EB.begin();
std::vector<EcalLogicID>::const_iterator eeb = crystals_EB.end();
std::cout << "Got list of " << crystals_EB.size() << " crystals in EB" << std::endl;
std::cout << "Got list of " << crystals_EE.size() << " crystals in EE" << std::endl;
// loop through barrel
int count = 0;
// prepare a map to associate EB logic id's to detids
std::map<int, int> detids;
while (ieb != eeb) {
int iEta = ieb->getID1();
int iPhi = ieb->getID2();
count++;
EBDetId ebdetid(iEta, iPhi);
// unsigned int hieb = ebdetid.hashedIndex();
detids[ieb->getLogicID()] = ebdetid;
ieb++;
}
std::cout << "Validated " << count << " logic ID's for EB" << std::endl;
// do the same for EE
std::vector<EcalLogicID>::const_iterator iee = crystals_EE.begin();
std::vector<EcalLogicID>::const_iterator eee = crystals_EE.end();
count = 0;
while (iee != eee) {
int iSide = iee->getID1();
int iX = iee->getID2();
int iY = iee->getID3();
EEDetId eedetidpos(iX, iY, iSide);
// int hi = eedetidpos.hashedIndex();
detids[iee->getLogicID()] = eedetidpos;
count++;
iee++;
}
std::cout << "Validated " << count << " logic ID's for EE" << std::endl;
// get association between ecal logic id and LMR
std::map<int, int> logicId2Lmr = econn->getEcalLogicID2LmrMap();
std::cout << "Retrieving corrections from ONLINE DB ... " << std::endl;
LMFCorrCoefDat data(econn);
if (m_debug) {
data.debug();
}
// get all data in the database taken after the last available time in ORCOFF
// we associate another map, whose key is the crystal ID and whose value is a
// sextuple (p1, p2, p3, t1, t2, t3)
Tm tmax;
if (m_maxtime[0] == '-') {
// this is a time relative to now
tmax.setToCurrentLocalTime();
if (m_debug) {
std::cout << "Subtracting " << m_maxtime.substr(1) << " hours "
<< "to " << tmax.str() << std::endl;
std::cout << "tmax was " << tmax.microsTime() << " ns" << std::endl;
}
tmax -= atoi(m_maxtime.substr(1).c_str()) * 3600; //
if (m_debug) {
std::cout << "tmax is " << tmax.microsTime() << " ns" << std::endl;
}
} else {
if (m_debug) {
std::cout << "Setting t_max to " << m_maxtime << std::endl;
}
tmax.setToString(m_maxtime);
}
// Tm tmin = Tm((t_min.value() >> 32)*1000000);
Tm tmin = Tm(t_min.value());
/*
Tm strunz;
strunz.setToString("2011-04-11 20:50:08");
if (tmin < strunz) {
tmin = strunz;
}
*/
if (m_debug) {
std::cout << "Tmin: " << tmin << std::endl;
std::cout << "Tmax: " << tmax << std::endl;
}
std::map<int, std::map<int, LMFSextuple> > d = data.getCorrections(tmin, tmax, m_sequences);
// sice must be equal to the number of different SEQ_ID's found
std::cout << "Data organized into " << d.size() << " sequences" << std::endl;
// iterate over sequences
std::map<int, std::map<int, LMFSextuple> >::const_iterator iseq = d.begin();
std::map<int, std::map<int, LMFSextuple> >::const_iterator eseq = d.end();
std::cout << "===== Looping on Sequences" << std::endl;
while (iseq != eseq) {
std::cout << "==== SEQ_ID: " << iseq->first << " contains " << iseq->second.size() << " crystals" << std::endl
<< std::flush;
// iterate over crystals, but skip those sequences with wrong number of crystals
if (iseq->second.size() == (61200 + 14648)) {
std::map<int, LMFSextuple>::const_iterator is = iseq->second.begin();
std::map<int, LMFSextuple>::const_iterator es = iseq->second.end();
EcalLaserAPDPNRatios *apdpns_popcon = new EcalLaserAPDPNRatios();
Time_t t_last = 18446744073709551615ULL;
while (is != es) {
EcalLaserAPDPNRatios::EcalLaserAPDPNpair apdpnpair_temp;
apdpnpair_temp.p1 = is->second.p[0];
apdpnpair_temp.p2 = is->second.p[1];
apdpnpair_temp.p3 = is->second.p[2];
EcalLaserAPDPNRatios::EcalLaserTimeStamp timestamp_temp;
timestamp_temp.t1 = edm::Timestamp(is->second.t[0].cmsNanoSeconds());
timestamp_temp.t2 = edm::Timestamp(is->second.t[1].cmsNanoSeconds());
timestamp_temp.t3 = edm::Timestamp(is->second.t[2].cmsNanoSeconds());
apdpns_popcon->setValue(detids[is->first], apdpnpair_temp);
if (logicId2Lmr.find(is->first) != logicId2Lmr.end()) {
int hashedIndex = logicId2Lmr[is->first] - 1;
if ((hashedIndex >= 0) && (hashedIndex <= 91)) {
apdpns_popcon->setTime(hashedIndex, timestamp_temp);
if (t_last > timestamp_temp.t1.value()) {
t_last = timestamp_temp.t1.value();
}
} else {
std::stringstream ss;
ss << "LOGIC_ID: " << is->first << " LMR: " << hashedIndex + 1 << " Out of range";
throw(std::runtime_error("[EcalLaserHandler::getNewObjects]" + ss.str()));
}
} else {
std::stringstream ss;
ss << "LOGIC_ID: " << is->first << " Cannot determine LMR";
throw(std::runtime_error("[EcalLaserHandler::getNewObjects]" + ss.str()));
}
is++;
}
if (m_fake) {
delete apdpns_popcon;
}
if ((!iseq->second.empty()) && (!m_fake)) {
m_to_transfer.push_back(std::make_pair(apdpns_popcon, Tm(t_last).cmsNanoSeconds()));
}
} else {
// Here we should put a warning
}
iseq++;
}
std::cout << "==== END OF LOOP ON SEQUENCES" << std::endl << std::flush;
delete econn;
std::cout << "Ecal -> end of getNewObjects -----------\n";
}
|