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
|
// -*- C++ -*-
//
// Package: MCSmartSingleParticleFilter
// Class: MCSmartSingleParticleFilter
//
/*
Description: filter events based on the Pythia particleID, the Pt and the production vertex
Implementation: inherits from generic EDFilter
*/
// Created: J. Alcaraz, 04/07/2008
//
#include "DataFormats/Common/interface/Handle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDFilter.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 "GeneratorInterface/GenFilters/plugins/MCFilterZboostHelper.h"
#include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
#include <cmath>
#include <cstdlib>
#include <iostream>
#include <string>
#include <vector>
class MCSmartSingleParticleFilter : public edm::global::EDFilter<> {
public:
explicit MCSmartSingleParticleFilter(const edm::ParameterSet&);
bool filter(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;
private:
const edm::EDGetTokenT<edm::HepMCProduct> token_;
std::vector<int> particleID;
std::vector<double> pMin;
std::vector<double> ptMin;
std::vector<double> etaMin;
std::vector<double> etaMax;
std::vector<int> status;
std::vector<double> decayRadiusMin;
std::vector<double> decayRadiusMax;
std::vector<double> decayZMin;
std::vector<double> decayZMax;
const double betaBoost;
};
using namespace std;
MCSmartSingleParticleFilter::MCSmartSingleParticleFilter(const edm::ParameterSet& iConfig)
: token_(consumes<edm::HepMCProduct>(
iConfig.getUntrackedParameter<edm::InputTag>("moduleLabel", edm::InputTag("generator", "unsmeared")))),
betaBoost(iConfig.getUntrackedParameter("BetaBoost", 0.)) {
vector<int> defpid;
defpid.push_back(0);
particleID = iConfig.getUntrackedParameter<vector<int> >("ParticleID", defpid);
vector<double> defpmin;
defpmin.push_back(0.);
pMin = iConfig.getUntrackedParameter<vector<double> >("MinP", defpmin);
vector<double> defptmin;
defptmin.push_back(0.);
ptMin = iConfig.getUntrackedParameter<vector<double> >("MinPt", defptmin);
vector<double> defetamin;
defetamin.push_back(-10.);
etaMin = iConfig.getUntrackedParameter<vector<double> >("MinEta", defetamin);
vector<double> defetamax;
defetamax.push_back(10.);
etaMax = iConfig.getUntrackedParameter<vector<double> >("MaxEta", defetamax);
vector<int> defstat;
defstat.push_back(0);
status = iConfig.getUntrackedParameter<vector<int> >("Status", defstat);
vector<double> defDecayRadiusmin;
defDecayRadiusmin.push_back(-1.);
decayRadiusMin = iConfig.getUntrackedParameter<vector<double> >("MinDecayRadius", defDecayRadiusmin);
vector<double> defDecayRadiusmax;
defDecayRadiusmax.push_back(1.e5);
decayRadiusMax = iConfig.getUntrackedParameter<vector<double> >("MaxDecayRadius", defDecayRadiusmax);
vector<double> defDecayZmin;
defDecayZmin.push_back(-1.e5);
decayZMin = iConfig.getUntrackedParameter<vector<double> >("MinDecayZ", defDecayZmin);
vector<double> defDecayZmax;
defDecayZmax.push_back(1.e5);
decayZMax = iConfig.getUntrackedParameter<vector<double> >("MaxDecayZ", defDecayZmax);
// check for same size
if ((pMin.size() > 1 && particleID.size() != pMin.size()) ||
(ptMin.size() > 1 && particleID.size() != ptMin.size()) ||
(etaMin.size() > 1 && particleID.size() != etaMin.size()) ||
(etaMax.size() > 1 && particleID.size() != etaMax.size()) ||
(status.size() > 1 && particleID.size() != status.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::LogError("Configuration")
<< "WARNING: MCPROCESSFILTER : size of MinPthat and/or MaxPthat not matching with ProcessID size!!";
}
// if pMin size smaller than particleID , fill up further with defaults
if (particleID.size() > pMin.size()) {
for (unsigned int i = pMin.size(); i < particleID.size(); i++) {
pMin.push_back(0.);
}
}
// if ptMin size smaller than particleID , fill up further with defaults
if (particleID.size() > ptMin.size()) {
for (unsigned int i = ptMin.size(); i < particleID.size(); i++) {
ptMin.push_back(0.);
}
}
// if etaMin size smaller than particleID , fill up further with defaults
if (particleID.size() > etaMin.size()) {
for (unsigned int i = etaMin.size(); i < particleID.size(); i++) {
etaMin.push_back(-10.);
}
}
// if etaMax size smaller than particleID , fill up further with defaults
if (particleID.size() > etaMax.size()) {
for (unsigned int i = etaMax.size(); i < particleID.size(); i++) {
etaMax.push_back(10.);
}
}
// if status size smaller than particleID , fill up further with defaults
if (particleID.size() > status.size()) {
for (unsigned int i = status.size(); i < particleID.size(); i++) {
status.push_back(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);
}
}
// check if beta is smaller than 1
if (std::abs(betaBoost) >= 1) {
edm::LogError("MCSmartSingleParticleFilter") << "Input beta boost is >= 1 !";
}
}
bool MCSmartSingleParticleFilter::filter(edm::StreamID, edm::Event& iEvent, const edm::EventSetup&) const {
bool accepted = false;
edm::Handle<edm::HepMCProduct> evt;
iEvent.getByToken(token_, evt);
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] == (*p)->pdg_id() || particleID[i] == 0) {
if ((*p)->momentum().perp() > ptMin[i] && ((*p)->status() == status[i] || status[i] == 0)) {
HepMC::FourVector mom = MCFilterZboostHelper::zboost((*p)->momentum(), betaBoost);
if (mom.rho() > pMin[i] && mom.eta() > etaMin[i] && mom.eta() < etaMax[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;
accepted = true;
}
}
}
}
}
return accepted;
}
DEFINE_FWK_MODULE(MCSmartSingleParticleFilter);
|