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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
|
//-ap #include "Configuration/CSA06Skimming/interface/MCParticlePairFilter.h"
#include "GeneratorInterface/GenFilters/plugins/MCParticlePairFilter.h"
#include "GeneratorInterface/GenFilters/plugins/MCFilterZboostHelper.h"
#include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
#include <iostream>
using namespace edm;
using namespace std;
MCParticlePairFilter::MCParticlePairFilter(const edm::ParameterSet& iConfig)
: token_(consumes<edm::HepMCProduct>(
edm::InputTag(iConfig.getUntrackedParameter("moduleLabel", std::string("generator")), "unsmeared"))),
particleCharge(iConfig.getUntrackedParameter("ParticleCharge", 0)),
minInvMass(iConfig.getUntrackedParameter("MinInvMass", 0.)),
maxInvMass(iConfig.getUntrackedParameter("MaxInvMass", 14000.)),
minDeltaPhi(iConfig.getUntrackedParameter("MinDeltaPhi", 0.)),
maxDeltaPhi(iConfig.getUntrackedParameter("MaxDeltaPhi", 6.3)),
minDeltaR(iConfig.getUntrackedParameter("MinDeltaR", 0.)),
maxDeltaR(iConfig.getUntrackedParameter("MaxDeltaR", 10000.)),
betaBoost(iConfig.getUntrackedParameter("BetaBoost", 0.)) {
//here do whatever other initialization is needed
vector<int> defpid1;
defpid1.push_back(0);
particleID1 = iConfig.getUntrackedParameter<vector<int> >("ParticleID1", defpid1);
vector<int> defpid2;
defpid2.push_back(0);
particleID2 = iConfig.getUntrackedParameter<vector<int> >("ParticleID2", defpid2);
vector<double> defptmin;
defptmin.push_back(0.);
ptMin = iConfig.getUntrackedParameter<vector<double> >("MinPt", defptmin);
vector<double> defpmin;
defpmin.push_back(0.);
pMin = iConfig.getUntrackedParameter<vector<double> >("MinP", defpmin);
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);
// check for correct size
if (ptMin.size() != 2 || pMin.size() != 2 || etaMin.size() != 2 || etaMax.size() != 2 || status.size() != 2) {
cout << "WARNING: MCParticlePairFilter : size of some vectors not matching with 2!!" << endl;
}
// if ptMin size smaller than 2, fill up further with defaults
if (2 > ptMin.size()) {
vector<double> defptmin2;
for (unsigned int i = 0; i < 2; i++) {
defptmin2.push_back(0.);
}
ptMin = defptmin2;
}
// if pMin size smaller than 2, fill up further with defaults
if (2 > pMin.size()) {
vector<double> defpmin2;
for (unsigned int i = 0; i < 2; i++) {
defpmin2.push_back(0.);
}
pMin = defpmin2;
}
// if etaMin size smaller than 2, fill up further with defaults
if (2 > etaMin.size()) {
vector<double> defetamin2;
for (unsigned int i = 0; i < 2; i++) {
defetamin2.push_back(-10.);
}
etaMin = defetamin2;
}
// if etaMax size smaller than 2, fill up further with defaults
if (2 > etaMax.size()) {
vector<double> defetamax2;
for (unsigned int i = 0; i < 2; i++) {
defetamax2.push_back(10.);
}
etaMax = defetamax2;
}
// if status size smaller than 2, fill up further with defaults
if (2 > status.size()) {
vector<int> defstat2;
for (unsigned int i = 0; i < 2; i++) {
defstat2.push_back(0);
}
status = defstat2;
}
}
MCParticlePairFilter::~MCParticlePairFilter() {
// do anything here that needs to be done at desctruction time
// (e.g. close files, deallocate resources etc.)
}
// ------------ method called to skim the data ------------
bool MCParticlePairFilter::filter(edm::StreamID, edm::Event& iEvent, const edm::EventSetup& iSetup) const {
using namespace edm;
bool accepted = false;
Handle<HepMCProduct> evt;
iEvent.getByToken(token_, evt);
const double pi = 3.14159;
vector<HepMC::GenParticle*> typeApassed;
vector<HepMC::GenParticle*> typeBpassed;
const HepMC::GenEvent* myGenEvent = evt->GetEvent();
for (HepMC::GenEvent::particle_const_iterator p = myGenEvent->particles_begin(); p != myGenEvent->particles_end();
++p) {
// check for type A conditions
bool gottypeAID = false;
for (unsigned int j = 0; j < particleID1.size(); ++j) {
if (abs((*p)->pdg_id()) == abs(particleID1[j]) || particleID1[j] == 0) {
gottypeAID = true;
break;
}
}
if (gottypeAID) {
HepMC::FourVector mom = MCFilterZboostHelper::zboost((*p)->momentum(), betaBoost);
if (mom.perp() > ptMin[0] && mom.rho() > pMin[0] && mom.eta() > etaMin[0] && mom.eta() < etaMax[0] &&
((*p)->status() == status[0] || status[0] == 0)) {
// passed A type conditions ...
// ... now check pair-conditions with B type passed particles
unsigned int i = 0;
double deltaphi;
double phi1 = mom.phi();
double phi2;
double deltaeta;
double eta1 = mom.eta();
double eta2;
double deltaR;
double tot_x = 0.;
double tot_y = 0.;
double tot_z = 0.;
double tot_e = 0.;
double invmass = 0.;
int charge1 = 0;
int combcharge = 0;
while (!accepted && i < typeBpassed.size()) {
tot_x = mom.px();
tot_y = mom.py();
tot_z = mom.pz();
tot_e = mom.e();
charge1 = charge((*p)->pdg_id());
HepMC::FourVector mom_i = MCFilterZboostHelper::zboost(typeBpassed[i]->momentum(), betaBoost);
tot_x += mom_i.px();
tot_y += mom_i.py();
tot_z += mom_i.pz();
tot_e += mom_i.e();
invmass = sqrt(tot_e * tot_e - tot_x * tot_x - tot_y * tot_y - tot_z * tot_z);
combcharge = charge1 * charge(typeBpassed[i]->pdg_id());
if (invmass > minInvMass && invmass < maxInvMass) {
phi2 = mom_i.phi();
deltaphi = fabs(phi1 - phi2);
if (deltaphi > pi)
deltaphi = 2. * pi - deltaphi;
if (deltaphi > minDeltaPhi && deltaphi < maxDeltaPhi) {
eta2 = mom_i.eta();
deltaeta = fabs(eta1 - eta2);
deltaR = sqrt(deltaeta * deltaeta + deltaphi * deltaphi);
if (deltaR > minDeltaR && deltaR < maxDeltaR) {
if (combcharge * particleCharge >= 0) {
accepted = true;
}
}
}
}
i++;
}
// if we found a matching pair quit the loop
if (accepted)
break;
else {
typeApassed.push_back(*p); // else remember the particle to have passed type A conditions
}
}
}
// check for type B conditions
bool gottypeBID = false;
for (unsigned int j = 0; j < particleID2.size(); ++j) {
if (abs((*p)->pdg_id()) == abs(particleID2[j]) || particleID2[j] == 0) {
gottypeBID = true;
break;
}
}
if (gottypeBID) {
HepMC::FourVector mom = MCFilterZboostHelper::zboost((*p)->momentum(), betaBoost);
if (mom.perp() > ptMin[1] && mom.rho() > pMin[1] && mom.eta() > etaMin[1] && mom.eta() < etaMax[1] &&
((*p)->status() == status[1] || status[1] == 0)) {
// passed B type conditions ...
// ... now check pair-conditions with A type passed particles vector
unsigned int i = 0;
double deltaphi;
double phi1 = mom.phi();
double phi2;
double deltaeta;
double eta1 = mom.eta();
double eta2;
double deltaR;
double tot_x = 0.;
double tot_y = 0.;
double tot_z = 0.;
double tot_e = 0.;
double invmass = 0.;
int charge1 = 0;
int combcharge = 0;
while (!accepted && i < typeApassed.size()) {
if ((*p) != typeApassed[i]) {
tot_x = mom.px();
tot_y = mom.py();
tot_z = mom.pz();
tot_e = mom.e();
charge1 = charge((*p)->pdg_id());
HepMC::FourVector mom_i = MCFilterZboostHelper::zboost(typeApassed[i]->momentum(), betaBoost);
tot_x += mom_i.px();
tot_y += mom_i.py();
tot_z += mom_i.pz();
tot_e += mom_i.e();
invmass = sqrt(tot_e * tot_e - tot_x * tot_x - tot_y * tot_y - tot_z * tot_z);
combcharge = charge1 * charge(typeApassed[i]->pdg_id());
if (invmass > minInvMass && invmass < maxInvMass) {
phi2 = mom_i.phi();
deltaphi = fabs(phi1 - phi2);
if (deltaphi > pi)
deltaphi = 2. * pi - deltaphi;
if (deltaphi > minDeltaPhi && deltaphi < maxDeltaPhi) {
eta2 = mom_i.eta();
deltaeta = fabs(eta1 - eta2);
deltaR = sqrt(deltaeta * deltaeta + deltaphi * deltaphi);
if (deltaR > minDeltaR && deltaR < maxDeltaR) {
if (combcharge * particleCharge >= 0) {
accepted = true;
}
}
}
}
}
i++;
}
// if we found a matching pair quit the loop
if (accepted)
break;
else {
typeBpassed.push_back(*p); // else remember the particle to have passed type B conditions
}
}
}
}
if (accepted) {
return true;
} else {
return false;
}
}
int MCParticlePairFilter::charge(int Id) const {
//...Purpose: to give three times the charge for a particle/parton.
// ID = particle ID
// hepchg = particle charge times 3
int kqa, kq1, kq2, kq3, kqj, irt, kqx, kqn;
int hepchg;
constexpr const int ichg[109] = {-1, 2, -1, 2, -1, 2, -1, 2, 0, 0, -3, 0, -3, 0, -3, 0, -3, 0, 0, 0, 0, 0,
0, 3, 0, 0, 0, 0, 0, 0, 3, 0, 3, 6, 0, 0, 3, 6, 0, 0, -1, 2, -1, 2,
-1, 2, 0, 0, 0, 0, -3, 0, -3, 0, -3, 0, 0, 0, 0, 0, -1, 2, -1, 2, -1, 2,
0, 0, 0, 0, -3, 0, -3, 0, -3, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
//...Initial values. Simple case of direct readout.
hepchg = 0;
kqa = abs(Id);
kqn = kqa / 1000000000 % 10;
kqx = kqa / 1000000 % 10;
kq3 = kqa / 1000 % 10;
kq2 = kqa / 100 % 10;
kq1 = kqa / 10 % 10;
kqj = kqa % 10;
irt = kqa % 10000;
//...illegal or ion
//...set ion charge to zero - not enough information
if (kqa == 0 || kqa >= 10000000) {
if (kqn == 1) {
hepchg = 0;
}
}
//... direct translation
else if (kqa <= 100) {
hepchg = ichg[kqa - 1];
}
//... KS and KL (and undefined)
else if (kqj == 0) {
hepchg = 0;
}
//C... direct translation
else if (kqx > 0 && irt < 100) {
hepchg = ichg[irt - 1];
if (kqa == 1000017 || kqa == 1000018) {
hepchg = 0;
}
if (kqa == 1000034 || kqa == 1000052) {
hepchg = 0;
}
if (kqa == 1000053 || kqa == 1000054) {
hepchg = 0;
}
if (kqa == 5100061 || kqa == 5100062) {
hepchg = 6;
}
}
//...Construction from quark content for heavy meson, diquark, baryon.
//...Mesons.
else if (kq3 == 0) {
hepchg = ichg[kq2 - 1] - ichg[kq1 - 1];
//...Strange or beauty mesons.
if ((kq2 == 3) || (kq2 == 5)) {
hepchg = ichg[kq1 - 1] - ichg[kq2 - 1];
}
} else if (kq1 == 0) {
//...Diquarks.
hepchg = ichg[kq3 - 1] + ichg[kq2 - 1];
}
else {
//...Baryons
hepchg = ichg[kq3 - 1] + ichg[kq2 - 1] + ichg[kq1 - 1];
}
//... fix sign of charge
if (Id < 0 && hepchg != 0) {
hepchg = -1 * hepchg;
}
// cout << hepchg<< endl;
return hepchg;
}
|