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
|
// -*- C++ -*-
//
// Package: MCMultiParticleFilter
// Class: MCMultiParticleFilter
//
/*
Description: Filter to select events with an arbitrary number of given particle(s).
Implementation: derived from MCSingleParticleFilter
*/
//
// Original Author: Paul Lujan
// Created: Wed Feb 29 04:22:16 CST 2012
//
//
#include "DataFormats/Common/interface/Handle.h"
#include "FWCore/Framework/interface/global/EDFilter.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
#include <cmath>
#include <cstdlib>
#include <vector>
//
// class declaration
//
class MCMultiParticleFilter : public edm::global::EDFilter<> {
public:
explicit MCMultiParticleFilter(const edm::ParameterSet&);
private:
bool filter(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
// ----------member data ---------------------------
const edm::EDGetTokenT<edm::HepMCProduct> token_;
const int numRequired_; // number of particles required to pass filter
const bool acceptMore_; // if true (default), accept numRequired or more.
// if false, accept events with exactly equal to numRequired.
const std::vector<int> particleID_; // vector of particle IDs to look for
// the four next variables can either be a vector of length 1 (in which case the same
// value is used for all particle IDs) or of length equal to the length of ParticleID (in which
// case the corresponding value is used for each).
std::vector<int> motherID_; // mother ID of particles (optional)
std::vector<double> ptMin_; // minimum Pt of particles
std::vector<double> etaMax_; // maximum fabs(eta) of particles
std::vector<int> status_; // status of particles
std::vector<double> decayRadiusMin;
std::vector<double> decayRadiusMax;
std::vector<double> decayZMin;
std::vector<double> decayZMax;
};
MCMultiParticleFilter::MCMultiParticleFilter(const edm::ParameterSet& iConfig)
: token_(consumes<edm::HepMCProduct>(
iConfig.getUntrackedParameter<edm::InputTag>("src", edm::InputTag("generator", "unsmeared")))),
numRequired_(iConfig.getParameter<int>("NumRequired")),
acceptMore_(iConfig.getParameter<bool>("AcceptMore")),
particleID_(iConfig.getParameter<std::vector<int> >("ParticleID")),
ptMin_(iConfig.getParameter<std::vector<double> >("PtMin")),
etaMax_(iConfig.getParameter<std::vector<double> >("EtaMax")),
status_(iConfig.getParameter<std::vector<int> >("Status")) {
//here do whatever other initialization is needed
// default pt, eta, status cuts to "don't care"
std::vector<double> defptmin(1, 0);
std::vector<double> defetamax(1, 999.0);
std::vector<int> defstat(1, 0);
std::vector<int> defmother;
defmother.push_back(0);
motherID_ = iConfig.getUntrackedParameter<std::vector<int> >("MotherID", defmother);
std::vector<double> defDecayRadiusmin;
defDecayRadiusmin.push_back(-1.);
decayRadiusMin = iConfig.getUntrackedParameter<std::vector<double> >("MinDecayRadius", defDecayRadiusmin);
std::vector<double> defDecayRadiusmax;
defDecayRadiusmax.push_back(1.e5);
decayRadiusMax = iConfig.getUntrackedParameter<std::vector<double> >("MaxDecayRadius", defDecayRadiusmax);
std::vector<double> defDecayZmin;
defDecayZmin.push_back(-1.e5);
decayZMin = iConfig.getUntrackedParameter<std::vector<double> >("MinDecayZ", defDecayZmin);
std::vector<double> defDecayZmax;
defDecayZmax.push_back(1.e5);
decayZMax = iConfig.getUntrackedParameter<std::vector<double> >("MaxDecayZ", defDecayZmax);
// check for same size
if ((ptMin_.size() > 1 && particleID_.size() != ptMin_.size()) ||
(etaMax_.size() > 1 && particleID_.size() != etaMax_.size()) ||
(status_.size() > 1 && particleID_.size() != status_.size()) ||
(motherID_.size() > 1 && particleID_.size() != motherID_.size()) ||
(decayRadiusMin.size() > 1 && particleID_.size() != decayRadiusMin.size()) ||
(decayRadiusMax.size() > 1 && particleID_.size() != decayRadiusMax.size()) ||
(decayZMin.size() > 1 && particleID_.size() != decayZMin.size()) ||
(decayZMax.size() > 1 && particleID_.size() != decayZMax.size())) {
edm::LogWarning("MCMultiParticleFilter") << "WARNING: MCMultiParticleFilter: size of PtMin, EtaMax, motherID, "
"decayRadiusMin, decayRadiusMax, decayZMin, decayZMax"
"and/or Status does not match ParticleID size!"
<< std::endl;
}
// Fill arrays with defaults if necessary
while (ptMin_.size() < particleID_.size())
ptMin_.push_back(defptmin[0]);
while (etaMax_.size() < particleID_.size())
etaMax_.push_back(defetamax[0]);
while (status_.size() < particleID_.size())
status_.push_back(defstat[0]);
while (motherID_.size() < particleID_.size())
motherID_.push_back(defmother[0]);
// if decayRadiusMin size smaller than particleID , fill up further with defaults
if (particleID_.size() > decayRadiusMin.size()) {
for (unsigned int i = decayRadiusMin.size(); i < particleID_.size(); i++) {
decayRadiusMin.push_back(-10.);
}
}
// if decayRadiusMax size smaller than particleID , fill up further with defaults
if (particleID_.size() > decayRadiusMax.size()) {
for (unsigned int i = decayRadiusMax.size(); i < particleID_.size(); i++) {
decayRadiusMax.push_back(1.e5);
}
}
// if decayZMin size smaller than particleID , fill up further with defaults
if (particleID_.size() > decayZMin.size()) {
for (unsigned int i = decayZMin.size(); i < particleID_.size(); i++) {
decayZMin.push_back(-1.e5);
}
}
// if decayZMax size smaller than particleID , fill up further with defaults
if (particleID_.size() > decayZMax.size()) {
for (unsigned int i = decayZMax.size(); i < particleID_.size(); i++) {
decayZMax.push_back(1.e5);
}
}
}
// ------------ method called to skim the data ------------
bool MCMultiParticleFilter::filter(edm::StreamID, edm::Event& iEvent, const edm::EventSetup&) const {
edm::Handle<edm::HepMCProduct> evt;
iEvent.getByToken(token_, evt);
int nFound = 0;
const HepMC::GenEvent* myGenEvent = evt->GetEvent();
for (HepMC::GenEvent::particle_const_iterator p = myGenEvent->particles_begin(); p != myGenEvent->particles_end();
++p) {
for (unsigned int i = 0; i < particleID_.size(); ++i) {
if ((particleID_[i] == 0 || std::abs(particleID_[i]) == std::abs((*p)->pdg_id())) &&
(*p)->momentum().perp() > ptMin_[i] && std::fabs((*p)->momentum().eta()) < etaMax_[i] &&
(status_[i] == 0 || (*p)->status() == status_[i])) {
if (!((*p)->production_vertex()))
continue;
double decx = (*p)->production_vertex()->position().x();
double decy = (*p)->production_vertex()->position().y();
double decrad = sqrt(decx * decx + decy * decy);
if (decrad < decayRadiusMin[i])
continue;
if (decrad > decayRadiusMax[i])
continue;
double decz = (*p)->production_vertex()->position().z();
if (decz < decayZMin[i])
continue;
if (decz > decayZMax[i])
continue;
if (motherID_[i] == 0) { // do not check for mother ID if not sepcified
nFound++;
break; // only match a given particle once!
} else {
bool hascorrectmother = false;
for (HepMC::GenVertex::particles_in_const_iterator mo = (*p)->production_vertex()->particles_in_const_begin();
mo != (*p)->production_vertex()->particles_in_const_end();
++mo) {
if ((*mo)->pdg_id() == motherID_[i]) {
hascorrectmother = true;
break;
}
}
if (hascorrectmother) {
nFound++;
break; // only match a given particle once!
}
}
}
} // loop over targets
if (acceptMore_ && nFound == numRequired_)
break; // stop looking if we don't mind having more
} // loop over particles
if (nFound == numRequired_) {
return true;
} else {
return false;
}
}
//define this as a plug-in
DEFINE_FWK_MODULE(MCMultiParticleFilter);
|