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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
|
//HepMC Headers
#include "HepMC/GenEvent.h"
#include "HepMC/GenVertex.h"
#include "HepMC/GenParticle.h"
//Framework Headers
#include "FWCore/ParameterSet/interface/ParameterSet.h"
//CMSSW Data Formats
#include "DataFormats/HepMCCandidate/interface/GenParticle.h"
#include "DataFormats/Candidate/interface/Candidate.h"
//FAMOS Headers
#include "FastSimulation/Particle/interface/pdg_functions.h"
#include "FastSimulation/Particle/interface/makeParticle.h"
#include "FastSimulation/Event/interface/FBaseSimEvent.h"
#include "FastSimulation/Event/interface/FSimTrack.h"
#include "FastSimulation/Event/interface/FSimVertex.h"
#include "FastSimulation/Event/interface/KineParticleFilter.h"
#include "CommonTools/BaseParticlePropagator/interface/BaseParticlePropagator.h"
#include "FastSimDataFormats/NuclearInteractions/interface/FSimVertexType.h"
using namespace HepPDT;
// system include
#include <iostream>
#include <iomanip>
#include <map>
#include <string>
FBaseSimEvent::FBaseSimEvent(const edm::ParameterSet& kine)
: nSimTracks(0), nSimVertices(0), nGenParticles(0), nChargedParticleTracks(0), initialSize(5000) {
// Initialize the vectors of particles and vertices
theGenParticles = new std::vector<HepMC::GenParticle*>();
theSimTracks = new std::vector<FSimTrack>;
theSimVertices = new std::vector<FSimVertex>;
theChargedTracks = new std::vector<unsigned>();
theFSimVerticesType = new FSimVertexTypeCollection();
// Reserve some size to avoid mutiple copies
/* */
theSimTracks->resize(initialSize);
theSimVertices->resize(initialSize);
theGenParticles->resize(initialSize);
theChargedTracks->resize(initialSize);
theFSimVerticesType->resize(initialSize);
theTrackSize = initialSize;
theVertexSize = initialSize;
theGenSize = initialSize;
theChargedSize = initialSize;
/* */
// Initialize the Particle filter
myFilter = new KineParticleFilter(kine);
// Initialize the distance from (0,0,0) after which *generated* particles are
// no longer considered - because the mother could have interacted before.
// unit : cm x cm
lateVertexPosition = 2.5 * 2.5;
}
FBaseSimEvent::~FBaseSimEvent() {
// Clear the vectors
theGenParticles->clear();
theSimTracks->clear();
theSimVertices->clear();
theChargedTracks->clear();
theFSimVerticesType->clear();
// Delete
delete theGenParticles;
delete theSimTracks;
delete theSimVertices;
delete theChargedTracks;
delete theFSimVerticesType;
delete myFilter;
}
void FBaseSimEvent::initializePdt(const HepPDT::ParticleDataTable* aPdt) { pdt = aPdt; }
void FBaseSimEvent::fill(const HepMC::GenEvent& myGenEvent) {
// Clear old vectors
clear();
// Add the particles in the FSimEvent
addParticles(myGenEvent);
}
void FBaseSimEvent::fill(const std::vector<SimTrack>& simTracks, const std::vector<SimVertex>& simVertices) {
// Watch out there ! A SimVertex is in mm (stupid),
// while a FSimVertex is in cm (clever).
clear();
unsigned nVtx = simVertices.size();
unsigned nTks = simTracks.size();
// Empty event, do nothin'
if (nVtx == 0)
return;
// Two arrays for internal use.
std::vector<int> myVertices(nVtx, -1);
std::vector<int> myTracks(nTks, -1);
// create a map associating geant particle id and position in the
// event SimTrack vector
std::map<unsigned, unsigned> geantToIndex;
for (unsigned it = 0; it < simTracks.size(); ++it) {
geantToIndex[simTracks[it].trackId()] = it;
}
// Create also a map associating a SimTrack with its endVertex
/*
std::map<unsigned, unsigned> endVertex;
for ( unsigned iv=0; iv<simVertices.size(); ++iv ) {
endVertex[ simVertices[iv].parentIndex() ] = iv;
}
*/
// Set the main vertex for the kine particle filter
// SimVertices were in mm until 110_pre2
// HepLorentzVector primaryVertex = simVertices[0].position()/10.;
// SImVertices are now in cm
// Also : position is copied until SimVertex switches to Mathcore.
// XYZTLorentzVector primaryVertex = simVertices[0].position();
// The next 5 lines to be then replaced by the previous line
XYZTLorentzVector primaryVertex(simVertices[0].position().x(),
simVertices[0].position().y(),
simVertices[0].position().z(),
simVertices[0].position().t());
//
//myFilter->setMainVertex(primaryVertex);
// Add the main vertex to the list.
addSimVertex(/*myFilter->vertex()*/ primaryVertex, -1, FSimVertexType::PRIMARY_VERTEX);
myVertices[0] = 0;
for (unsigned trackId = 0; trackId < nTks; ++trackId) {
// The track
const SimTrack& track = simTracks[trackId];
// std::cout << std::endl << "SimTrack " << trackId << " " << track << std::endl;
// The origin vertex
int vertexId = track.vertIndex();
const SimVertex& vertex = simVertices[vertexId];
//std::cout << "Origin vertex " << vertexId << " " << vertex << std::endl;
// The mother track
int motherId = -1;
if (!vertex.noParent()) { // there is a parent to this vertex
// geant id of the mother
unsigned motherGeantId = vertex.parentIndex();
std::map<unsigned, unsigned>::iterator association = geantToIndex.find(motherGeantId);
if (association != geantToIndex.end())
motherId = association->second;
}
int originId = motherId == -1 ? -1 : myTracks[motherId];
//std::cout << "Origin id " << originId << std::endl;
/*
if ( endVertex.find(trackId) != endVertex.end() )
std::cout << "End vertex id = " << endVertex[trackId] << std::endl;
else
std::cout << "No endVertex !!! " << std::endl;
std::cout << "Tracker surface position " << track.trackerSurfacePosition() << std::endl;
*/
// Add the vertex (if it does not already exist!)
XYZTLorentzVector position(
vertex.position().px(), vertex.position().py(), vertex.position().pz(), vertex.position().e());
if (myVertices[vertexId] == -1)
// Momentum and position are copied until SimTrack and SimVertex
// switch to Mathcore.
// myVertices[vertexId] = addSimVertex(vertex.position(),originId);
// The next line to be then replaced by the previous line
myVertices[vertexId] = addSimVertex(position, originId);
// Add the track (with protection for brem'ing electrons and muons)
int motherType = motherId == -1 ? 0 : simTracks[motherId].type();
bool notBremInDetector = (abs(motherType) != 11 && std::abs(motherType) != 13) || motherType != track.type() ||
position.Perp2() < lateVertexPosition;
if (notBremInDetector) {
// Momentum and position are copied until SimTrack and SimVertex
// switch to Mathcore.
// RawParticle part(track.momentum(), vertex.position());
// The next 3 lines to be then replaced by the previous line
XYZTLorentzVector momentum(
track.momentum().px(), track.momentum().py(), track.momentum().pz(), track.momentum().e());
RawParticle part = makeParticle(theTable(), track.type(), momentum, position);
//
//std::cout << "Ctau = " << part.PDGcTau() << std::endl;
// Don't save tracks that have decayed immediately but for which no daughters
// were saved (probably due to cuts on E, pT and eta)
// if ( part.PDGcTau() > 0.1 || endVertex.find(trackId) != endVertex.end() )
myTracks[trackId] = addSimTrack(&part, myVertices[vertexId], track.genpartIndex());
if (myTracks[trackId] >= 0) {
(*theSimTracks)[myTracks[trackId]].setTkPosition(track.trackerSurfacePosition());
(*theSimTracks)[myTracks[trackId]].setTkMomentum(track.trackerSurfaceMomentum());
}
} else {
myTracks[trackId] = myTracks[motherId];
if (myTracks[trackId] >= 0) {
(*theSimTracks)[myTracks[trackId]].setTkPosition(track.trackerSurfacePosition());
(*theSimTracks)[myTracks[trackId]].setTkMomentum(track.trackerSurfaceMomentum());
}
}
}
// Now loop over the remaining end vertices !
for (unsigned vertexId = 0; vertexId < nVtx; ++vertexId) {
// if the vertex is already saved, just ignore.
if (myVertices[vertexId] != -1)
continue;
// The yet unused vertex
const SimVertex& vertex = simVertices[vertexId];
// The mother track
int motherId = -1;
if (!vertex.noParent()) { // there is a parent to this vertex
// geant id of the mother
unsigned motherGeantId = vertex.parentIndex();
std::map<unsigned, unsigned>::iterator association = geantToIndex.find(motherGeantId);
if (association != geantToIndex.end())
motherId = association->second;
}
int originId = motherId == -1 ? -1 : myTracks[motherId];
// Add the vertex
// Momentum and position are copied until SimTrack and SimVertex
// switch to Mathcore.
// myVertices[vertexId] = addSimVertex(vertex.position(),originId);
// The next 3 lines to be then replaced by the previous line
XYZTLorentzVector position(
vertex.position().px(), vertex.position().py(), vertex.position().pz(), vertex.position().e());
myVertices[vertexId] = addSimVertex(position, originId);
}
// Finally, propagate all particles to the calorimeters
BaseParticlePropagator myPart;
XYZTLorentzVector mom;
XYZTLorentzVector pos;
// Loop over the tracks
for (int fsimi = 0; fsimi < (int)nTracks(); ++fsimi) {
FSimTrack& myTrack = track(fsimi);
double trackerSurfaceTime =
myTrack.vertex().position().t() + myTrack.momentum().e() / myTrack.momentum().pz() *
(myTrack.trackerSurfacePosition().z() - myTrack.vertex().position().z());
pos = XYZTLorentzVector(myTrack.trackerSurfacePosition().x(),
myTrack.trackerSurfacePosition().y(),
myTrack.trackerSurfacePosition().z(),
trackerSurfaceTime);
mom = XYZTLorentzVector(myTrack.trackerSurfaceMomentum().x(),
myTrack.trackerSurfaceMomentum().y(),
myTrack.trackerSurfaceMomentum().z(),
myTrack.trackerSurfaceMomentum().t());
if (mom.T() > 0.) {
// The particle to be propagated
myPart = BaseParticlePropagator(RawParticle(mom, pos, myTrack.charge()), 0., 0., 4.);
// Propagate to Preshower layer 1
myPart.propagateToPreshowerLayer1(false);
if (myTrack.notYetToEndVertex(myPart.particle().vertex()) && myPart.getSuccess() > 0)
myTrack.setLayer1(myPart.particle(), myPart.getSuccess());
// Propagate to Preshower Layer 2
myPart.propagateToPreshowerLayer2(false);
if (myTrack.notYetToEndVertex(myPart.particle().vertex()) && myPart.getSuccess() > 0)
myTrack.setLayer2(myPart.particle(), myPart.getSuccess());
// Propagate to Ecal Endcap
myPart.propagateToEcalEntrance(false);
if (myTrack.notYetToEndVertex(myPart.particle().vertex()))
myTrack.setEcal(myPart.particle(), myPart.getSuccess());
// Propagate to HCAL entrance
myPart.propagateToHcalEntrance(false);
if (myTrack.notYetToEndVertex(myPart.particle().vertex()))
myTrack.setHcal(myPart.particle(), myPart.getSuccess());
// Attempt propagation to HF for low pt and high eta
if (myPart.particle().cos2ThetaV() > 0.8 || mom.T() < 3.) {
// Propagate to VFCAL entrance
myPart.propagateToVFcalEntrance(false);
if (myTrack.notYetToEndVertex(myPart.particle().vertex()))
myTrack.setVFcal(myPart.particle(), myPart.getSuccess());
// Otherwise propagate to the HCAL exit and HO.
} else {
// Propagate to HCAL exit
myPart.propagateToHcalExit(false);
if (myTrack.notYetToEndVertex(myPart.particle().vertex()))
myTrack.setHcalExit(myPart.particle(), myPart.getSuccess());
// Propagate to HOLayer entrance
myPart.setMagneticField(0);
myPart.propagateToHOLayer(false);
if (myTrack.notYetToEndVertex(myPart.particle().vertex()))
myTrack.setHO(myPart.particle(), myPart.getSuccess());
}
}
}
}
void FBaseSimEvent::addParticles(const HepMC::GenEvent& myGenEvent) {
/// Some internal array to work with.
int genEventSize = myGenEvent.particles_size();
std::vector<int> myGenVertices(genEventSize, static_cast<int>(0));
// If no particles, no work to be done !
if (myGenEvent.particles_empty())
return;
// Are there particles in the FSimEvent already ?
int offset = nGenParts();
// Primary vertex
HepMC::GenVertex* primaryVertex = *(myGenEvent.vertices_begin());
// unit transformation (needs review)
XYZTLorentzVector primaryVertexPosition(primaryVertex->position().x() / 10.,
primaryVertex->position().y() / 10.,
primaryVertex->position().z() / 10.,
primaryVertex->position().t() / 10.);
// This is the main vertex index
int mainVertex = addSimVertex(primaryVertexPosition, -1, FSimVertexType::PRIMARY_VERTEX);
int initialBarcode = 0;
if (myGenEvent.particles_begin() != myGenEvent.particles_end()) {
initialBarcode = (*myGenEvent.particles_begin())->barcode();
}
// Loop on the particles of the generated event
for (auto piter = myGenEvent.particles_begin(); piter != myGenEvent.particles_end(); ++piter) {
// This is the generated particle pointer - for the signal event only
HepMC::GenParticle* p = *piter;
if (!offset) {
(*theGenParticles)[nGenParticles++] = p;
if (nGenParticles / theGenSize * theGenSize == nGenParticles) {
theGenSize *= 2;
theGenParticles->resize(theGenSize);
}
}
// Reject particles with late origin vertex (i.e., coming from late decays)
// This should not happen, but one never knows what users may be up to!
// For example exotic particles might decay late - keep the decay products in the case.
XYZTLorentzVector productionVertexPosition(0., 0., 0., 0.);
HepMC::GenVertex* productionVertex = p->production_vertex();
if (productionVertex) {
unsigned productionMother = productionVertex->particles_in_size();
if (productionMother) {
unsigned motherId = (*(productionVertex->particles_in_const_begin()))->pdg_id();
if (motherId < 1000000)
productionVertexPosition = XYZTLorentzVector(productionVertex->position().x() / 10.,
productionVertex->position().y() / 10.,
productionVertex->position().z() / 10.,
productionVertex->position().t() / 10.);
}
}
if (!myFilter->acceptVertex(productionVertexPosition))
continue;
int abspdgId = std::abs(p->pdg_id());
HepMC::GenVertex* endVertex = p->end_vertex();
// Keep only:
// 1) Stable particles (watch out! New status code = 1001!)
bool testStable = p->status() % 1000 == 1;
// Declare stable standard particles that decay after a macroscopic path length
// (except if exotic)
if (p->status() == 2 && abspdgId < 1000000) {
if (endVertex) {
XYZTLorentzVector decayPosition = XYZTLorentzVector(endVertex->position().x() / 10.,
endVertex->position().y() / 10.,
endVertex->position().z() / 10.,
endVertex->position().t() / 10.);
// If the particle flew enough to be beyond the beam pipe enveloppe, just declare it stable
if (decayPosition.Perp2() > lateVertexPosition)
testStable = true;
}
}
// 2) or particles with stable daughters (watch out! New status code = 1001!)
bool testDaugh = false;
if (!testStable && p->status() == 2 && endVertex && endVertex->particles_out_size()) {
HepMC::GenVertex::particles_out_const_iterator firstDaughterIt = endVertex->particles_out_const_begin();
HepMC::GenVertex::particles_out_const_iterator lastDaughterIt = endVertex->particles_out_const_end();
for (; firstDaughterIt != lastDaughterIt; ++firstDaughterIt) {
HepMC::GenParticle* daugh = *firstDaughterIt;
if (daugh->status() % 1000 == 1) {
// Check that it is not a "prompt electron or muon brem":
if (abspdgId == 11 || abspdgId == 13) {
if (endVertex) {
XYZTLorentzVector endVertexPosition = XYZTLorentzVector(endVertex->position().x() / 10.,
endVertex->position().y() / 10.,
endVertex->position().z() / 10.,
endVertex->position().t() / 10.);
// If the particle flew enough to be beyond the beam pipe enveloppe, just declare it stable
if (endVertexPosition.Perp2() < lateVertexPosition) {
break;
}
}
}
testDaugh = true;
break;
}
}
}
// 3) or particles that fly more than one micron.
double dist = 0.;
if (!testStable && !testDaugh && p->production_vertex()) {
XYZTLorentzVector productionVertexPosition(p->production_vertex()->position().x() / 10.,
p->production_vertex()->position().y() / 10.,
p->production_vertex()->position().z() / 10.,
p->production_vertex()->position().t() / 10.);
dist = (primaryVertexPosition - productionVertexPosition).Vect().Mag2();
}
bool testDecay = (dist > 1e-8) ? true : false;
// Save the corresponding particle and vertices
if (testStable || testDaugh || testDecay) {
/*
const HepMC::GenParticle* mother = p->production_vertex() ?
*(p->production_vertex()->particles_in_const_begin()) : 0;
*/
int motherBarcode = p->production_vertex() && p->production_vertex()->particles_in_const_begin() !=
p->production_vertex()->particles_in_const_end()
? (*(p->production_vertex()->particles_in_const_begin()))->barcode()
: 0;
int originVertex = motherBarcode && myGenVertices[motherBarcode - initialBarcode]
? myGenVertices[motherBarcode - initialBarcode]
: mainVertex;
XYZTLorentzVector momentum(p->momentum().px(), p->momentum().py(), p->momentum().pz(), p->momentum().e());
RawParticle part = makeParticle(theTable(), p->pdg_id(), momentum, vertex(originVertex).position());
// Add the particle to the event and to the various lists
int theTrack = testStable && p->end_vertex() ?
// The particle is scheduled to decay
addSimTrack(&part, originVertex, nGenParts() - offset, p->end_vertex())
:
// The particle is not scheduled to decay
addSimTrack(&part, originVertex, nGenParts() - offset);
if (
// This one deals with particles with no end vertex
!p->end_vertex() ||
// This one deals with particles that have a pre-defined
// decay proper time, but have not decayed yet
(testStable && p->end_vertex() && !p->end_vertex()->particles_out_size())
// In both case, just don't add a end vertex in the FSimEvent
)
continue;
// Add the vertex to the event and to the various lists
XYZTLorentzVector decayVertex = XYZTLorentzVector(p->end_vertex()->position().x() / 10.,
p->end_vertex()->position().y() / 10.,
p->end_vertex()->position().z() / 10.,
p->end_vertex()->position().t() / 10.);
// vertex(mainVertex).position();
int theVertex = addSimVertex(decayVertex, theTrack, FSimVertexType::DECAY_VERTEX);
if (theVertex != -1)
myGenVertices[p->barcode() - initialBarcode] = theVertex;
// There we are !
}
}
}
int FBaseSimEvent::addSimTrack(const RawParticle* p, int iv, int ig, const HepMC::GenVertex* ev) {
// Check that the particle is in the Famos "acceptance"
// Keep all primaries of pile-up events, though
if (!myFilter->acceptParticle(*p) && ig >= -1)
return -1;
// The new track index
int trackId = nSimTracks++;
if (nSimTracks / theTrackSize * theTrackSize == nSimTracks) {
theTrackSize *= 2;
theSimTracks->resize(theTrackSize);
}
// Attach the particle to the origin vertex, and to the mother
vertex(iv).addDaughter(trackId);
if (!vertex(iv).noParent()) {
track(vertex(iv).parent().id()).addDaughter(trackId);
if (ig == -1) {
int motherId = track(vertex(iv).parent().id()).genpartIndex();
if (motherId < -1)
ig = motherId;
}
}
// Some transient information for FAMOS internal use
(*theSimTracks)[trackId] =
ev ?
// A proper decay time is scheduled
FSimTrack(p,
iv,
ig,
trackId,
this,
ev->position().t() / 10. * pdg::mass(p->pid(), theTable()) / std::sqrt(p->momentum().Vect().Mag2()))
:
// No proper decay time is scheduled
FSimTrack(p, iv, ig, trackId, this);
return trackId;
}
int FBaseSimEvent::addSimVertex(const XYZTLorentzVector& v, int im, FSimVertexType::VertexType type) {
// Check that the vertex is in the Famos "acceptance"
if (!myFilter->acceptVertex(v))
return -1;
// The number of vertices
int vertexId = nSimVertices++;
if (nSimVertices / theVertexSize * theVertexSize == nSimVertices) {
theVertexSize *= 2;
theSimVertices->resize(theVertexSize);
theFSimVerticesType->resize(theVertexSize);
}
// Attach the end vertex to the particle (if accepted)
if (im != -1)
track(im).setEndVertex(vertexId);
// Some transient information for FAMOS internal use
(*theSimVertices)[vertexId] = FSimVertex(v, im, vertexId, this);
(*theFSimVerticesType)[vertexId] = FSimVertexType(type);
return vertexId;
}
void FBaseSimEvent::printMCTruth(const HepMC::GenEvent& myGenEvent) {
std::cout << "Id Gen Name eta phi pT E Vtx1 "
<< " x y z "
<< "Moth Vtx2 eta phi R Z Da1 Da2 Ecal?" << std::endl;
for (HepMC::GenEvent::particle_const_iterator piter = myGenEvent.particles_begin();
piter != myGenEvent.particles_end();
++piter) {
HepMC::GenParticle* p = *piter;
/* */
int partId = p->pdg_id();
std::string name;
if (pdt->particle(ParticleID(partId)) != nullptr) {
name = (pdt->particle(ParticleID(partId)))->name();
} else {
name = "none";
}
XYZTLorentzVector momentum1(p->momentum().px(), p->momentum().py(), p->momentum().pz(), p->momentum().e());
int vertexId1 = 0;
if (!p->production_vertex())
continue;
XYZVector vertex1(p->production_vertex()->position().x() / 10.,
p->production_vertex()->position().y() / 10.,
p->production_vertex()->position().z() / 10.);
vertexId1 = p->production_vertex()->barcode();
std::cout.setf(std::ios::fixed, std::ios::floatfield);
std::cout.setf(std::ios::right, std::ios::adjustfield);
std::cout << std::setw(4) << p->barcode() << " " << name;
for (unsigned int k = 0; k < 11 - name.length() && k < 12; k++)
std::cout << " ";
double eta = momentum1.eta();
if (eta > +10.)
eta = +10.;
if (eta < -10.)
eta = -10.;
std::cout << std::setw(6) << std::setprecision(2) << eta << " " << std::setw(6) << std::setprecision(2)
<< momentum1.phi() << " " << std::setw(7) << std::setprecision(2) << momentum1.pt() << " " << std::setw(7)
<< std::setprecision(2) << momentum1.e() << " " << std::setw(4) << vertexId1 << " " << std::setw(6)
<< std::setprecision(1) << vertex1.x() << " " << std::setw(6) << std::setprecision(1) << vertex1.y()
<< " " << std::setw(6) << std::setprecision(1) << vertex1.z() << " ";
const HepMC::GenParticle* mother = *(p->production_vertex()->particles_in_const_begin());
if (mother)
std::cout << std::setw(4) << mother->barcode() << " ";
else
std::cout << " ";
if (p->end_vertex()) {
XYZTLorentzVector vertex2(p->end_vertex()->position().x() / 10.,
p->end_vertex()->position().y() / 10.,
p->end_vertex()->position().z() / 10.,
p->end_vertex()->position().t() / 10.);
int vertexId2 = p->end_vertex()->barcode();
std::vector<const HepMC::GenParticle*> children;
HepMC::GenVertex::particles_out_const_iterator firstDaughterIt = p->end_vertex()->particles_out_const_begin();
HepMC::GenVertex::particles_out_const_iterator lastDaughterIt = p->end_vertex()->particles_out_const_end();
for (; firstDaughterIt != lastDaughterIt; ++firstDaughterIt) {
children.push_back(*firstDaughterIt);
}
std::cout << std::setw(4) << vertexId2 << " " << std::setw(6) << std::setprecision(2) << vertex2.eta() << " "
<< std::setw(6) << std::setprecision(2) << vertex2.phi() << " " << std::setw(5) << std::setprecision(1)
<< vertex2.pt() << " " << std::setw(6) << std::setprecision(1) << vertex2.z() << " ";
for (unsigned id = 0; id < children.size(); ++id)
std::cout << std::setw(4) << children[id]->barcode() << " ";
}
std::cout << std::endl;
}
}
void FBaseSimEvent::print() const {
std::cout << " Id Gen Name eta phi pT E Vtx1 "
<< " x y z "
<< "Moth Vtx2 eta phi R Z Daughters Ecal?" << std::endl;
for (int i = 0; i < (int)nTracks(); i++)
std::cout << track(i) << std::endl;
for (int i = 0; i < (int)nVertices(); i++)
std::cout << "i = " << i << " " << vertexType(i) << std::endl;
}
void FBaseSimEvent::clear() {
nSimTracks = 0;
nSimVertices = 0;
nGenParticles = 0;
nChargedParticleTracks = 0;
}
void FBaseSimEvent::addChargedTrack(int id) {
(*theChargedTracks)[nChargedParticleTracks++] = id;
if (nChargedParticleTracks / theChargedSize * theChargedSize == nChargedParticleTracks) {
theChargedSize *= 2;
theChargedTracks->resize(theChargedSize);
}
}
int FBaseSimEvent::chargedTrack(int id) const {
if (id >= 0 && id < (int)nChargedParticleTracks)
return (*theChargedTracks)[id];
else
return -1;
}
const HepMC::GenParticle* FBaseSimEvent::embdGenpart(int i) const { return (*theGenParticles)[i]; }
|