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
|
/*
* See header file for a description of this class.
*
* $Date: 2010/01/20 17:29:26 $
* $Revision: 1.1 $
* \author Paolo Ronchese INFN Padova
*
*/
//-----------------------
// This Class' Header --
//-----------------------
#include "CondTools/DT/test/validate/DTRangeT0ValidateHandler.h"
//-------------------------------
// Collaborating Class Headers --
//-------------------------------
#include "CondFormats/DTObjects/interface/DTRangeT0.h"
//---------------
// C++ Headers --
//---------------
#include <cmath>
#include <iostream>
#include <fstream>
#include <sstream>
//-------------------
// Initializations --
//-------------------
//----------------
// Constructors --
//----------------
DTRangeT0ValidateHandler::DTRangeT0ValidateHandler(const edm::ParameterSet& ps)
: firstRun(ps.getParameter<unsigned int>("firstRun")),
lastRun(ps.getParameter<unsigned int>("lastRun")),
dataVersion(ps.getParameter<std::string>("version")),
dataFileName(ps.getParameter<std::string>("outFile")),
elogFileName(ps.getParameter<std::string>("logFile")) {
std::ofstream logFile(elogFileName.c_str());
}
//--------------
// Destructor --
//--------------
DTRangeT0ValidateHandler::~DTRangeT0ValidateHandler() {}
//--------------
// Operations --
//--------------
void DTRangeT0ValidateHandler::getNewObjects() {
int runNumber = firstRun;
while (runNumber <= lastRun)
addNewObject(runNumber++);
return;
}
void DTRangeT0ValidateHandler::addNewObject(int runNumber) {
DTRangeT0* tR = new DTRangeT0(dataVersion);
std::stringstream run_fn;
run_fn << "run" << runNumber << dataFileName;
int status = 0;
std::ofstream outFile(run_fn.str().c_str());
std::ofstream logFile(elogFileName.c_str(), std::ios_base::app);
int whe;
int sta;
int sec;
int qua;
int t0min;
int t0max;
int ckt0min;
int ckt0max;
whe = 3;
while (--whe >= -2) {
sta = 5;
while (--sta) {
if (sta == 4)
sec = 15;
else
sec = 13;
while (--sec) {
qua = 4;
while (--qua) {
if ((sta == 4) && (qua == 2))
continue;
t0min = t0max = random() / 0x0000ffff;
t0min -= 50.0;
t0max += 50.0;
status = tR->set(whe, sta, sec, qua, t0min, t0max);
outFile << whe << " " << sta << " " << sec << " " << qua << " " << t0min << " " << t0max << std::endl;
if (status)
logFile << "ERROR while setting range T0" << whe << " " << sta << " " << sec << " " << qua
<< " , status = " << status << std::endl;
status = tR->get(whe, sta, sec, qua, ckt0min, ckt0max);
if (status)
logFile << "ERROR while checking range T0 " << whe << " " << sta << " " << sec << " " << qua
<< " , status = " << status << std::endl;
if ((std::abs(ckt0min - t0min) > 0.0001) || (std::abs(ckt0max - t0max) > 0.0001))
logFile << "MISMATCH WHEN WRITING range T0 " << whe << " " << sta << " " << sec << " " << qua << " : "
<< t0min << " " << t0max << " -> " << ckt0min << " " << ckt0max << std::endl;
// }
// }
}
}
}
}
cond::Time_t snc = runNumber;
m_to_transfer.push_back(std::make_pair(tR, snc));
return;
}
std::string DTRangeT0ValidateHandler::id() const { return dataVersion; }
|