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
|
// -*- C++ -*-
//
// Package: APVShotsFilter
// Class: APVShotsFilter
//
/**\class APVShotsFilter APVShotsFilter.cc DPGAnalysis/SiStripTools/src/APVShotsFilter.cc
Description: [one line class summary]
Implementation:
[Notes on implementation]
*/
//
// Original Author: Mia Tosi,40 3-B32,+41227671551,
// Created: Sun Nov 10 11:30:51 CET 2013
// $Id$
//
//
// system include files
#include <memory>
#include <atomic>
// user include files
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDFilter.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "DataFormats/Common/interface/DetSetVector.h"
#include "DataFormats/SiStripDigi/interface/SiStripDigi.h"
#include "DQM/SiStripCommon/interface/APVShotFinder.h"
#include "DQM/SiStripCommon/interface/APVShot.h"
#include "DPGAnalysis/SiStripTools/interface/EventWithHistory.h"
#include "DPGAnalysis/SiStripTools/interface/APVCyclePhaseCollection.h"
//******** includes for the cabling *************
#include "CalibFormats/SiStripObjects/interface/SiStripDetCabling.h"
#include "CalibTracker/Records/interface/SiStripDetCablingRcd.h"
#include "CondFormats/SiStripObjects/interface/FedChannelConnection.h"
#include "DataFormats/SiStripCommon/interface/SiStripConstants.h"
//***************************************************
//
// class declaration
//
class APVShotsFilter : public edm::global::EDFilter<> {
public:
explicit APVShotsFilter(const edm::ParameterSet&);
~APVShotsFilter() override;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
private:
bool filter(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
void endJob() override;
// ----------member data ---------------------------
edm::EDGetTokenT<EventWithHistory> heToken_;
edm::EDGetTokenT<APVCyclePhaseCollection> apvphaseToken_;
edm::EDGetTokenT<edm::DetSetVector<SiStripDigi> > digisToken_;
const bool _selectAPVshots;
const bool _zs;
mutable std::atomic<int> _nevents;
// DetCabling
const bool _useCabling;
const edm::ESGetToken<SiStripDetCabling, SiStripDetCablingRcd> _detCablingToken;
};
//
// constants, enums and typedefs
//
//
// static data member definitions
//
//
// constructors and destructor
//
APVShotsFilter::APVShotsFilter(const edm::ParameterSet& iConfig)
: _selectAPVshots(iConfig.getUntrackedParameter<bool>("selectAPVshots", true)),
_zs(iConfig.getUntrackedParameter<bool>("zeroSuppressed", true)),
_nevents(0),
_useCabling(iConfig.getUntrackedParameter<bool>("useCabling", true)),
_detCablingToken(_useCabling ? decltype(_detCablingToken){esConsumes()} : decltype(_detCablingToken){}) {
//now do what ever initialization is needed
edm::InputTag digicollection = iConfig.getParameter<edm::InputTag>("digiCollection");
edm::InputTag historyProduct = iConfig.getParameter<edm::InputTag>("historyProduct");
edm::InputTag apvphasecoll = iConfig.getParameter<edm::InputTag>("apvPhaseCollection");
heToken_ = consumes<EventWithHistory>(historyProduct);
apvphaseToken_ = consumes<APVCyclePhaseCollection>(apvphasecoll);
digisToken_ = consumes<edm::DetSetVector<SiStripDigi> >(digicollection);
}
APVShotsFilter::~APVShotsFilter() {
// 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 APVShotsFilter::filter(edm::StreamID, edm::Event& iEvent, const edm::EventSetup& iSetup) const {
using namespace edm;
const SiStripDetCabling* _detCabling = nullptr; //!< The cabling object.
if (_useCabling) {
//retrieve cabling
_detCabling = &iSetup.getData(_detCablingToken);
}
_nevents++;
edm::Handle<EventWithHistory> he;
iEvent.getByToken(heToken_, he);
edm::Handle<APVCyclePhaseCollection> apvphase;
iEvent.getByToken(apvphaseToken_, apvphase);
edm::Handle<edm::DetSetVector<SiStripDigi> > digis;
iEvent.getByToken(digisToken_, digis);
// loop on detector with digis
int nshots = 0;
std::vector<int> nshotsperFed;
const int siStripFedIdMin = FEDNumbering::MINSiStripFEDID;
const int siStripFedIdMax = FEDNumbering::MAXSiStripFEDID;
const uint16_t lNumFeds = (siStripFedIdMax - siStripFedIdMin) + 1;
if (_useCabling) {
nshotsperFed.resize(lNumFeds, 0);
}
APVShotFinder apvsf(*digis, _zs);
const std::vector<APVShot>& shots = apvsf.getShots();
for (std::vector<APVShot>::const_iterator shot = shots.begin(); shot != shots.end(); ++shot) {
if (!shot->isGenuine())
continue;
++nshots;
//get the fedid from the detid
uint32_t det = shot->detId();
if (_useCabling) {
int apvPair = shot->apvNumber() / 2;
LogDebug("APVShotsFilter") << apvPair;
const FedChannelConnection& theConn = _detCabling->getConnection(det, apvPair);
int lChannelId = -1;
int thelFEDId = -1;
if (theConn.isConnected()) {
lChannelId = theConn.fedCh();
thelFEDId = theConn.fedId();
} else {
edm::LogWarning("APVShotsFilter") << "connection of det " << det << " APV pair " << apvPair << " not found";
}
LogDebug("APVShotsFilter") << thelFEDId << " " << lChannelId;
const std::vector<const FedChannelConnection*>& conns = _detCabling->getConnections(det);
if (conns.empty())
continue;
uint16_t lFedId = 0;
for (uint32_t ch = 0; ch < conns.size(); ch++) {
if (conns[ch] && conns[ch]->isConnected()) {
LogDebug("APVShotsFilter") << *(conns[ch]);
LogDebug("APVShotsFilter") << "Ready for FED id " << ch;
lFedId = conns[ch]->fedId();
LogDebug("APVShotsFilter") << "obtained FED id " << ch << " " << lFedId;
//uint16_t lFedCh = conns[ch]->fedCh();
if (lFedId < sistrip::FED_ID_MIN || lFedId > sistrip::FED_ID_MAX) {
edm::LogWarning("APVShotsFilter") << lFedId << " for detid " << det << " connection " << ch;
continue;
} else
break;
}
}
if (lFedId < sistrip::FED_ID_MIN || lFedId > sistrip::FED_ID_MAX) {
edm::LogWarning("APVShotsFilter") << lFedId << "found for detid " << det;
continue;
}
if (lFedId != thelFEDId) {
edm::LogWarning("APVShotsFilter") << " Mismatch in FED id for det " << det << " APV pair " << apvPair << " : "
<< lFedId << " vs " << thelFEDId;
}
// LogDebug("APVShotsFilter") << nshotsperfed.size() << " " << lFedId-sistrip::FED_ID_MIN;
// ++nshotsperFed[lFedId-FEDNumbering::MINSiStripFEDID];
LogDebug("APVShotsFilter") << " ready to be filled with " << thelFEDId << " " << lChannelId;
LogDebug("APVShotsFilter") << " filled with " << thelFEDId << " " << lChannelId;
}
}
bool foundAPVshots = (nshots > 0);
bool pass = (_selectAPVshots ? foundAPVshots : !foundAPVshots);
return pass;
}
// ------------ method called once each job just after ending the event loop ------------
void APVShotsFilter::endJob() { edm::LogInfo("APVShotsFilter") << _nevents.load() << " analyzed events"; }
// ------------ method fills 'descriptions' with the allowed parameters for the module ------------
void APVShotsFilter::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 this as a plug-in
DEFINE_FWK_MODULE(APVShotsFilter);
|