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
|
// system include files
#include <memory>
#include <iostream>
#include <cmath>
#include <sstream>
#include <fstream>
// user include files
#include "EventFilter/HcalRawToDigi/interface/HcalLaserEventFilter2012.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/Run.h"
#include "FWCore/Framework/interface/LuminosityBlock.h"
#include "DataFormats/Provenance/interface/EventID.h"
#include "DataFormats/Provenance/interface/RunID.h"
#include "zlib.h"
using namespace std;
#define CHUNK 16384
//
// constructors and destructor
//
HcalLaserEventFilter2012::HcalLaserEventFilter2012(const edm::ParameterSet& ps) {
verbose_ = ps.getUntrackedParameter<bool>("verbose", false);
prefix_ = ps.getUntrackedParameter<std::string>("prefix", "");
minrun_ = ps.getUntrackedParameter<int>("minrun", -1);
maxrun_ = ps.getUntrackedParameter<int>("maxrun", -1);
WriteBadToFile_ = ps.getUntrackedParameter<bool>("WriteBadToFile", false);
if (WriteBadToFile_)
outfile_.open("badHcalLaserList_eventfilter.txt");
forceFilterTrue_ = ps.getUntrackedParameter<bool>("forceFilterTrue", false);
minRunInFile = 999999;
maxRunInFile = 1;
string eventFileName0 = ps.getParameter<string>("eventFileName");
string eventFileName = edm::FileInPath(eventFileName0).fullPath();
if (verbose_)
edm::LogInfo("HcalLaserEventFilter2012") << "HCAL laser event list from file " << eventFileName;
readEventListFile(eventFileName);
std::sort(EventList_.begin(), EventList_.end());
if (verbose_)
edm::LogInfo("HcalLaserEventFilter2012")
<< " A total of " << EventList_.size() << " listed HCAL laser events found in given run range";
if (minrun_ == -1 || minrun_ < minRunInFile)
minrun_ = minRunInFile;
if (maxrun_ == -1 || maxrun_ > maxRunInFile)
maxrun_ = maxRunInFile;
}
void HcalLaserEventFilter2012::addEventString(const string& eventString) {
// Loop through list of bad events, and if run is in allowed range, add bad event to EventList
int run = 0;
unsigned int ls = 0;
unsigned int event = 0;
// Check that event list object is in correct form
size_t found = eventString.find(':'); // find first colon
if (found != std::string::npos)
run = atoi((eventString.substr(0, found)).c_str()); // convert to run
else {
edm::LogError("HcalLaserEventFilter2012")
<< " Unable to parse Event list input '" << eventString << "' for run number!";
return;
}
size_t found2 = eventString.find(':', found + 1); // find second colon
if (found2 != std::string::npos) {
/// Some event numbers are less than 0? \JetHT\Run2012C-v1\RAW:201278:2145:-2130281065 -- due to events being dumped out as ints, not uints!
ls = atoi((eventString.substr(found + 1, (found2 - found - 1))).c_str()); // convert to ls
event = atoi((eventString.substr(found2 + 1)).c_str()); // convert to event
/// Some event numbers are less than 0? \JetHT\Run2012C-v1\RAW:201278:2145:-2130281065
if (ls == 0 || event == 0)
edm::LogWarning("HcalLaserEventFilter2012") << " Strange lumi, event numbers for input '" << eventString << "'";
} else {
edm::LogError("HcalLaserEventFilter2012")
<< "Unable to parse Event list input '" << eventString << "' for run number!";
return;
}
// If necessary, check that run is within allowed range
if (minrun_ > -1 && run < minrun_) {
if (verbose_)
edm::LogInfo("HcalLaserEventFilter2012")
<< "Skipping Event list input '" << eventString << "' because it is less than minimum run # " << minrun_;
return;
}
if (maxrun_ > -1 && run > maxrun_) {
if (verbose_)
edm::LogInfo("HcalLaserEventFilter2012")
<< "Skipping Event list input '" << eventString << "' because it is greater than maximum run # " << maxrun_;
return;
}
if (minRunInFile > run)
minRunInFile = run;
if (maxRunInFile < run)
maxRunInFile = run;
// Now add event to Event List
EventList_.push_back(eventString);
}
#define LENGTH 0x2000
void HcalLaserEventFilter2012::readEventListFile(const string& eventFileName) {
gzFile file = gzopen(eventFileName.c_str(), "r");
if (!file) {
edm::LogError("HcalLaserEventFilter2012") << " Unable to open event list file " << eventFileName;
return;
}
string b2;
int err;
int bytes_read;
char buffer[LENGTH];
unsigned int i;
char* pch;
while (true) {
bytes_read = gzread(file, buffer, LENGTH - 1);
buffer[bytes_read] = '\0';
i = 0;
char* saveptr;
pch = strtok_r(buffer, "\n", &saveptr);
if (buffer[0] == '\n') {
addEventString(b2);
++i;
} else
b2 += pch;
while (pch != nullptr) {
i += strlen(pch) + 1;
if (i > b2.size())
b2 = pch;
if (i == (LENGTH - 1)) {
if ((buffer[LENGTH - 2] == '\n') || (buffer[LENGTH - 2] == '\0')) {
addEventString(b2);
b2 = "";
}
} else if (i < LENGTH) {
addEventString(b2);
}
pch = strtok_r(nullptr, "\n", &saveptr);
}
if (bytes_read < LENGTH - 1) {
if (gzeof(file))
break;
else {
const char* error_string;
error_string = gzerror(file, &err);
if (err) {
edm::LogError("HcalLaserEventFilter2012") << "Error while reading gzipped file: " << error_string;
return;
}
}
}
}
gzclose(file);
return;
}
HcalLaserEventFilter2012::~HcalLaserEventFilter2012() {
// do anything here that needs to be done at desctruction time
// (e.g. close files, deallocate resources etc.)
}
//
// member functions
//
// ------------ method called on each new Event ------------
bool HcalLaserEventFilter2012::filter(edm::Event& iEvent, const edm::EventSetup& iSetup) {
int run = iEvent.id().run();
// if run is outside filter range, then always return true
if (minrun_ > -1 && run < minrun_)
return true;
if (maxrun_ > -1 && run > maxrun_)
return true;
// Okay, now create a string object for this run:ls:event
std::stringstream thisevent;
thisevent << run << ":" << iEvent.luminosityBlock() << ":" << iEvent.id().event();
// Event not found in bad list; it is a good event
strVecI it = std::lower_bound(EventList_.begin(), EventList_.end(), thisevent.str());
if (it == EventList_.end() || thisevent.str() < *it)
return true;
// Otherwise, this is a bad event
// if verbose, dump out event info
// Dump out via cout, or via LogInfo? For now, use cout
if (verbose_)
std::cout << prefix_ << thisevent.str() << std::endl;
// To use if we decide on LogInfo:
// if (verbose_) edm::LogInfo(prefix_)<<thisevent.str();
// Write bad event to file
if (WriteBadToFile_)
outfile_ << iEvent.id().run() << ":" << iEvent.luminosityBlock() << ":" << iEvent.id().event() << std::endl;
if (forceFilterTrue_)
return true; // if special input boolean set, always return true, regardless of filter decision
return false;
}
// ------------ method called once each job just after ending the event loop ------------
void HcalLaserEventFilter2012::endJob() {
if (WriteBadToFile_)
outfile_.close();
}
// ------------ method fills 'descriptions' with the allowed parameters for the module ------------
void HcalLaserEventFilter2012::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
//The following says we do not know what parameters are allowed so do no validation
// Please change this to state exactly what you do use, even if it is no parameters
edm::ParameterSetDescription desc;
desc.setUnknown();
descriptions.addDefault(desc);
}
DEFINE_FWK_MODULE(HcalLaserEventFilter2012);
|