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
|
// -*- C++ -*-
//#define EDM_ML_DEBUG
// system include files
#include <atomic>
#include <memory>
#include <string>
#include <cmath>
#include <iostream>
#include <sstream>
#include <fstream>
#include <vector>
#include <boost/regex.hpp>
// user include files
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/stream/EDProducer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/Run.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "DataFormats/BeamSpot/interface/BeamSpot.h"
#include "DataFormats/Common/interface/Handle.h"
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/EcalRecHit/interface/EcalRecHitCollections.h"
#include "DataFormats/HcalRecHit/interface/HcalRecHitCollections.h"
#include "DataFormats/MuonReco/interface/Muon.h"
#include "DataFormats/MuonReco/interface/MuonFwd.h"
#include "DataFormats/VertexReco/interface/VertexFwd.h"
#include "DataFormats/VertexReco/interface/Vertex.h"
//#define EDM_ML_DEBUG
//
// class declaration
//
namespace alCaHBHEMuonProducer {
struct Counters {
Counters() : nAll_(0), nGood_(0) {}
mutable std::atomic<unsigned int> nAll_, nGood_;
};
} // namespace alCaHBHEMuonProducer
class AlCaHBHEMuonProducer : public edm::stream::EDProducer<edm::GlobalCache<alCaHBHEMuonProducer::Counters> > {
public:
explicit AlCaHBHEMuonProducer(edm::ParameterSet const&, const alCaHBHEMuonProducer::Counters* count);
~AlCaHBHEMuonProducer() override;
static std::unique_ptr<alCaHBHEMuonProducer::Counters> initializeGlobalCache(edm::ParameterSet const&) {
return std::make_unique<alCaHBHEMuonProducer::Counters>();
}
void produce(edm::Event&, const edm::EventSetup&) override;
void endStream() override;
static void globalEndJob(const alCaHBHEMuonProducer::Counters* counters);
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
private:
bool select(const reco::MuonCollection&);
// ----------member data ---------------------------
unsigned int nAll_, nGood_;
const edm::InputTag labelBS_, labelVtx_;
const edm::InputTag labelEB_, labelEE_, labelHBHE_, labelMuon_;
const double pMuonMin_;
edm::EDGetTokenT<reco::BeamSpot> tok_BS_;
edm::EDGetTokenT<reco::VertexCollection> tok_Vtx_;
edm::EDGetTokenT<EcalRecHitCollection> tok_EB_;
edm::EDGetTokenT<EcalRecHitCollection> tok_EE_;
edm::EDGetTokenT<HBHERecHitCollection> tok_HBHE_;
edm::EDGetTokenT<reco::MuonCollection> tok_Muon_;
};
AlCaHBHEMuonProducer::AlCaHBHEMuonProducer(edm::ParameterSet const& iConfig,
const alCaHBHEMuonProducer::Counters* count)
: nAll_(0),
nGood_(0),
labelBS_(iConfig.getParameter<edm::InputTag>("BeamSpotLabel")),
labelVtx_(iConfig.getParameter<edm::InputTag>("VertexLabel")),
labelEB_(iConfig.getParameter<edm::InputTag>("EBRecHitLabel")),
labelEE_(iConfig.getParameter<edm::InputTag>("EERecHitLabel")),
labelHBHE_(iConfig.getParameter<edm::InputTag>("HBHERecHitLabel")),
labelMuon_(iConfig.getParameter<edm::InputTag>("MuonLabel")),
pMuonMin_(iConfig.getParameter<double>("MinimumMuonP")) {
// define tokens for access
tok_Vtx_ = consumes<reco::VertexCollection>(labelVtx_);
tok_BS_ = consumes<reco::BeamSpot>(labelBS_);
tok_EB_ = consumes<EcalRecHitCollection>(labelEB_);
tok_EE_ = consumes<EcalRecHitCollection>(labelEE_);
tok_HBHE_ = consumes<HBHERecHitCollection>(labelHBHE_);
tok_Muon_ = consumes<reco::MuonCollection>(labelMuon_);
edm::LogVerbatim("HcalHBHEMuon") << "Parameters read from config file \n"
<< "\t minP of muon " << pMuonMin_ << "\t input labels " << labelBS_ << " "
<< labelVtx_ << " " << labelEB_ << " " << labelEE_ << " " << labelHBHE_ << " "
<< labelMuon_;
//saves the following collections
produces<reco::BeamSpot>(labelBS_.label());
produces<reco::VertexCollection>(labelVtx_.label());
produces<EcalRecHitCollection>(labelEB_.instance());
produces<EcalRecHitCollection>(labelEE_.instance());
produces<HBHERecHitCollection>(labelHBHE_.label());
produces<reco::MuonCollection>(labelMuon_.label());
}
AlCaHBHEMuonProducer::~AlCaHBHEMuonProducer() {}
void AlCaHBHEMuonProducer::produce(edm::Event& iEvent, edm::EventSetup const& iSetup) {
++nAll_;
bool valid(true);
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HcalHBHEMuon") << "AlCaHBHEMuonProducer::Run " << iEvent.id().run() << " Event "
<< iEvent.id().event() << " Luminosity " << iEvent.luminosityBlock() << " Bunch "
<< iEvent.bunchCrossing();
#endif
//Step1: Get all the relevant containers
auto bmspot = iEvent.getHandle(tok_BS_);
if (!bmspot.isValid()) {
edm::LogWarning("HcalHBHEMuon") << "AlCaHBHEMuonProducer: Error! can't get product " << labelBS_;
valid = false;
}
auto vt = iEvent.getHandle(tok_Vtx_);
if (!vt.isValid()) {
edm::LogWarning("HcalHBHEMuon") << "AlCaHBHEMuonProducer: Error! can't get product " << labelVtx_;
valid = false;
}
auto barrelRecHitsHandle = iEvent.getHandle(tok_EB_);
if (!barrelRecHitsHandle.isValid()) {
edm::LogWarning("HcalHBHEMuon") << "AlCaHBHEMuonProducer: Error! can't get product " << labelEB_;
valid = false;
}
auto endcapRecHitsHandle = iEvent.getHandle(tok_EE_);
if (!endcapRecHitsHandle.isValid()) {
edm::LogWarning("HcalHBHEMuon") << "AlCaHBHEMuonProducer: Error! can't get product " << labelEE_;
valid = false;
}
auto hbhe = iEvent.getHandle(tok_HBHE_);
if (!hbhe.isValid()) {
edm::LogWarning("HcalHBHEMuon") << "AlCaHBHEMuonProducer: Error! can't get product " << labelHBHE_;
valid = false;
}
auto muonhandle = iEvent.getHandle(tok_Muon_);
if (!muonhandle.isValid()) {
edm::LogWarning("HcalHBHEMuon") << "AlCaHBHEMuonProducer: Error! can't get product " << labelMuon_;
valid = false;
}
#ifdef EDM_ML_DEBUG
edm::LogVerbatim("HcalHBHEMuon") << "AlCaHBHEMuonProducer::obtained the collections with validity flag " << valid;
#endif
//For accepted events
auto outputBeamSpot = std::make_unique<reco::BeamSpot>();
auto outputVColl = std::make_unique<reco::VertexCollection>();
auto outputEBColl = std::make_unique<EBRecHitCollection>();
auto outputEEColl = std::make_unique<EERecHitCollection>();
auto outputHBHEColl = std::make_unique<HBHERecHitCollection>();
auto outputMColl = std::make_unique<reco::MuonCollection>();
if (valid) {
const reco::BeamSpot beam = *(bmspot.product());
outputBeamSpot = std::make_unique<reco::BeamSpot>(
beam.position(), beam.sigmaZ(), beam.dxdz(), beam.dydz(), beam.BeamWidthX(), beam.covariance(), beam.type());
const reco::VertexCollection vtx = *(vt.product());
const EcalRecHitCollection ebcoll = *(barrelRecHitsHandle.product());
const EcalRecHitCollection eecoll = *(endcapRecHitsHandle.product());
const HBHERecHitCollection hbhecoll = *(hbhe.product());
const reco::MuonCollection muons = *(muonhandle.product());
bool accept = select(muons);
if (accept) {
++nGood_;
for (reco::VertexCollection::const_iterator vtr = vtx.begin(); vtr != vtx.end(); ++vtr)
outputVColl->push_back(*vtr);
for (edm::SortedCollection<EcalRecHit>::const_iterator ehit = ebcoll.begin(); ehit != ebcoll.end(); ++ehit)
outputEBColl->push_back(*ehit);
for (edm::SortedCollection<EcalRecHit>::const_iterator ehit = eecoll.begin(); ehit != eecoll.end(); ++ehit)
outputEEColl->push_back(*ehit);
for (std::vector<HBHERecHit>::const_iterator hhit = hbhecoll.begin(); hhit != hbhecoll.end(); ++hhit)
outputHBHEColl->push_back(*hhit);
for (reco::MuonCollection::const_iterator muon = muons.begin(); muon != muons.end(); ++muon)
outputMColl->push_back(*muon);
}
}
iEvent.put(std::move(outputBeamSpot), labelBS_.label());
iEvent.put(std::move(outputVColl), labelVtx_.label());
iEvent.put(std::move(outputEBColl), labelEB_.instance());
iEvent.put(std::move(outputEEColl), labelEE_.instance());
iEvent.put(std::move(outputHBHEColl), labelHBHE_.label());
iEvent.put(std::move(outputMColl), labelMuon_.label());
}
void AlCaHBHEMuonProducer::endStream() {
globalCache()->nAll_ += nAll_;
globalCache()->nGood_ += nGood_;
}
void AlCaHBHEMuonProducer::globalEndJob(const alCaHBHEMuonProducer::Counters* count) {
edm::LogVerbatim("HcalHBHEMuon") << "Finds " << count->nGood_ << " good tracks in " << count->nAll_ << " events";
}
void AlCaHBHEMuonProducer::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.add<edm::InputTag>("BeamSpotLabel", edm::InputTag("offlineBeamSpot"));
desc.add<edm::InputTag>("VertexLabel", edm::InputTag("offlinePrimaryVertices"));
desc.add<edm::InputTag>("EBRecHitLabel", edm::InputTag("ecalRecHit", "EcalRecHitsEB"));
desc.add<edm::InputTag>("EERecHitLabel", edm::InputTag("ecalRecHit", "EcalRecHitsEE"));
desc.add<edm::InputTag>("HBHERecHitLabel", edm::InputTag("hbhereco"));
desc.add<edm::InputTag>("MuonLabel", edm::InputTag("muons"));
desc.add<double>("MinimumMuonP", 5.0);
descriptions.add("alcaHBHEMuonProducer", desc);
}
bool AlCaHBHEMuonProducer::select(const reco::MuonCollection& muons) {
bool ok(false);
for (unsigned int k = 0; k < muons.size(); ++k) {
if (muons[k].p() > pMuonMin_) {
ok = true;
break;
}
}
return ok;
}
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(AlCaHBHEMuonProducer);
|