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
|
#include <stdexcept>
#include <string>
#include <fstream>
#include <vector>
#include <bitset>
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Utilities/interface/ESGetToken.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "CondFormats/CSCObjects/interface/CSCBadStrips.h"
#include "CondFormats/DataRecord/interface/CSCBadStripsRcd.h"
#include "DataFormats/MuonDetId/interface/CSCDetId.h"
#include "DataFormats/MuonDetId/interface/CSCIndexer.h"
namespace edmtest {
class CSCReadBadStripsAnalyzer : public edm::one::EDAnalyzer<> {
public:
explicit CSCReadBadStripsAnalyzer(edm::ParameterSet const& ps)
: outputToFile(ps.getParameter<bool>("outputToFile")),
readBadChannels_(ps.getParameter<bool>("readBadChannels")),
badStripsToken_{esConsumes()} {
badStripWords.resize(3240, 0);
}
~CSCReadBadStripsAnalyzer() override {}
void analyze(const edm::Event& e, const edm::EventSetup& c) override;
// Test code from CSCConditions
/// did we request reading bad channel info from db?
bool readBadChannels() const { return readBadChannels_; }
void fillBadStripWords(edm::LogSystem&);
/// return bad channel words per CSCLayer - 1 bit per channel
const std::bitset<80>& badStripWord(const CSCDetId& id) const;
private:
bool outputToFile;
bool readBadChannels_; // flag whether or not to even attempt reading bad channel info from db
const edm::ESGetToken<CSCBadStrips, CSCBadStripsRcd> badStripsToken_;
const CSCBadStrips* theBadStrips;
std::vector<std::bitset<80> > badStripWords;
};
void CSCReadBadStripsAnalyzer::analyze(const edm::Event& e, const edm::EventSetup& context) {
using namespace edm::eventsetup;
edm::LogSystem log("CSCBadStrips");
int counter = 0;
log << " RUN# " << e.id().run() << std::endl;
log << " EVENT# " << e.id().event() << std::endl;
theBadStrips = &context.getData(badStripsToken_);
// Create the vectors of bitsets, one per layer, as done in CSCConditions
fillBadStripWords(log); // code from CSCConditions pasted into this file!
CSCIndexer indexer; // just to build a CSCDetId from chamber index
std::vector<CSCBadStrips::BadChamber>::const_iterator itcham;
std::vector<CSCBadStrips::BadChannel>::const_iterator itchan;
log << "Bad Chambers:" << std::endl;
int ibad = 0;
int ifailed = 0;
// Iterate over the list of bad chambers
for (itcham = theBadStrips->chambers.begin(); itcham != theBadStrips->chambers.end(); ++itcham) {
counter++;
int indexc = itcham->chamber_index;
int badstart = itcham->pointer;
int nbad = itcham->bad_channels;
log << counter << " " << itcham->chamber_index << " " << itcham->pointer << " " << itcham->bad_channels
<< std::endl;
CSCDetId id = indexer.detIdFromChamberIndex(indexc);
// Iterate over the bad channels in this chamber
for (int ichan = badstart - 1; ichan != badstart - 1 + nbad; ++ichan) {
short lay = theBadStrips->channels[ichan].layer;
short chan = theBadStrips->channels[ichan].channel;
// create a CSCDetId for this layer, just because that it is needed for the interface to CSCConditions::badStripWord
CSCDetId id2 = CSCDetId(id.endcap(), id.station(), id.ring(), id.chamber(), lay);
std::bitset<80> ibits = badStripWord(id2);
// Test whether this bad channel has indeed been flagged in the badStripWord
if (ibits.test(chan - 1)) {
log << "count " << ++ibad << " found bad channel " << chan << " in layer " << id2 << std::endl;
} else {
log << "count " << +ifailed << " failed to see bad channel " << chan << " in layer " << id2 << std::endl;
}
}
}
/*
log<< "Bad Channels:" << std::endl;
counter = 0; // reset it!
for( itchan=theBadStrips->channels.begin();itchan!=theBadStrips->channels.end(); ++itchan ){
counter++;
log<<counter<<" "<<itchan->layer<<" "<<itchan->channel<<" "<<itchan->flag1<<std::endl;
}
*/
if (outputToFile) {
std::ofstream BadStripFile("dbBadStrip.dat", std::ios::app);
counter = 0;
for (itcham = theBadStrips->chambers.begin(); itcham != theBadStrips->chambers.end(); ++itcham) {
counter++;
BadStripFile << counter << " " << itcham->chamber_index << " " << itcham->pointer << " "
<< itcham->bad_channels << std::endl;
}
counter = 0;
for (itchan = theBadStrips->channels.begin(); itchan != theBadStrips->channels.end(); ++itchan) {
counter++;
BadStripFile << counter << " " << itchan->layer << " " << itchan->channel << " " << itchan->flag1
<< std::endl;
}
}
}
void CSCReadBadStripsAnalyzer::fillBadStripWords(edm::LogSystem& log) {
// reset existing values
badStripWords.assign(3240, 0);
if (readBadChannels()) {
// unpack what we read from theBadStrips
// chambers is a vector<BadChamber>
// channels is a vector<BadChannel>
// Each BadChamber contains its index (1-468 or 540 w. ME42), the no. of bad channels,
// and the index within vector<BadChannel> where this chamber's bad channels start.
CSCIndexer indexer;
int icount = 0;
for (size_t i = 0; i < theBadStrips->chambers.size(); ++i) { // loop over bad chambers
int indexc = theBadStrips->chambers[i].chamber_index;
// The following is not in standard CSCConditions version but was required for our prototype bad strip db
if (indexc == 0) {
log << "WARNING: chamber index = 0. Quitting. " << std::endl;
break; // prototype db has zero line at end
}
int start = theBadStrips->chambers[i].pointer; // where this chamber's bad channels start in vector<BadChannel>
int nbad = theBadStrips->chambers[i].bad_channels;
CSCDetId id = indexer.detIdFromChamberIndex(indexc); // We need this to build layer index (1-3240)
for (int j = start - 1; j < start + nbad - 1; ++j) { // bad channels in this chamber
short lay = theBadStrips->channels[j].layer; // value 1-6
// The following is not in standard CSCConditions version but was required for our prototype bad strip db
if (lay == 0) {
log << "WARNING: layer index = 0. Quitting. " << std::endl;
break;
}
short chan = theBadStrips->channels[j].channel; // value 1-80
// short f1 = theBadStrips->channels[j].flag1;
// short f2 = theBadStrips->channels[j].flag2;
// short f3 = theBadStrips->channels[j].flag3;
int indexl = indexer.layerIndex(id.endcap(), id.station(), id.ring(), id.chamber(), lay);
// Test output to monitor filling
log << "count " << ++icount << " bad channel " << chan << " in layer " << lay << " of chamber=" << id
<< " chamber index=" << indexc << " layer index=" << indexl << std::endl;
badStripWords[indexl - 1].set(chan - 1, 1); // set bit in 80-bit bitset representing this layer
} // j
} // i
}
}
const std::bitset<80>& CSCReadBadStripsAnalyzer::badStripWord(const CSCDetId& id) const {
CSCIndexer indexer;
return badStripWords[indexer.layerIndex(id) - 1];
}
DEFINE_FWK_MODULE(CSCReadBadStripsAnalyzer);
} // namespace edmtest
|