forked from mcoquet642/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeneratorFromFile.cxx
More file actions
148 lines (131 loc) · 4.69 KB
/
GeneratorFromFile.cxx
File metadata and controls
148 lines (131 loc) · 4.69 KB
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
// Copyright CERN and copyright holders of ALICE O2. This software is
// distributed under the terms of the GNU General Public License v3 (GPL
// Version 3), copied verbatim in the file "COPYING".
//
// See http://alice-o2.web.cern.ch/license for full licensing information.
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.
#include "Generators/GeneratorFromFile.h"
#include <FairLogger.h>
#include <FairPrimaryGenerator.h>
#include <TBranch.h>
#include <TClonesArray.h>
#include <TFile.h>
#include <TParticle.h>
#include <TTree.h>
#include <sstream>
namespace o2
{
namespace eventgen
{
GeneratorFromFile::GeneratorFromFile(const char* name)
{
mEventFile = TFile::Open(name);
if (mEventFile == nullptr) {
LOG(FATAL) << "EventFile " << name << " not found \n";
return;
}
// the kinematics will be stored inside a Tree "TreeK" with branch "Particles"
// different events are stored inside TDirectories
// we need to probe for the number of events
TObject* object = nullptr;
do {
std::stringstream eventstringstr;
eventstringstr << "Event" << mEventsAvailable;
// std::cout << "probing for " << eventstring << "\n";
object = mEventFile->Get(eventstringstr.str().c_str());
// std::cout << "got " << object << "\n";
if (object != nullptr)
mEventsAvailable++;
} while (object != nullptr);
LOG(INFO) << "Found " << mEventsAvailable << " events in this file \n";
}
void GeneratorFromFile::SetStartEvent(int start)
{
if (start < mEventsAvailable) {
mEventCounter = start;
} else {
LOG(ERROR) << "start event bigger than available events\n";
}
}
bool isOnMassShell(TParticle const& p)
{
const auto nominalmass = p.GetMass();
auto calculatedmass = p.Energy() * p.Energy() - (p.Px() * p.Px() + p.Py() * p.Py() + p.Pz() * p.Pz());
calculatedmass = (calculatedmass >= 0.) ? std::sqrt(calculatedmass) : -std::sqrt(-calculatedmass);
const double tol = 1.E-4;
auto difference = std::abs(nominalmass - calculatedmass);
LOG(DEBUG) << "ISONMASSSHELL INFO" << difference << " " << nominalmass << " " << calculatedmass;
return std::abs(nominalmass - calculatedmass) < tol;
}
Bool_t GeneratorFromFile::ReadEvent(FairPrimaryGenerator* primGen)
{
if (mEventCounter < mEventsAvailable) {
int particlecounter = 0;
// get the tree and the branch
std::stringstream treestringstr;
treestringstr << "Event" << mEventCounter << "/TreeK";
TTree* tree = (TTree*)mEventFile->Get(treestringstr.str().c_str());
if (tree == nullptr) {
return kFALSE;
}
auto branch = tree->GetBranch("Particles");
TParticle* particle = nullptr;
branch->SetAddress(&particle);
LOG(INFO) << "Reading " << branch->GetEntries() << " particles from Kinematics file";
// read the whole kinematics initially
std::vector<TParticle> particles;
for (int i = 0; i < branch->GetEntries(); ++i) {
branch->GetEntry(i);
particles.push_back(*particle);
}
// filter the particles from Kinematics.root originally put by a generator
// and which are trackable
auto isFirstTrackableDescendant = [](TParticle const& p) {
const int kDoneBit = 4;
// The particle should have not set kDone bit and its status should not exceed 1
if (p.GetStatusCode() > 1 || p.TestBit(kDoneBit)) {
return false;
}
return true;
};
for (int i = 0; i < branch->GetEntries(); ++i) {
auto& p = particles[i];
if (!isFirstTrackableDescendant(p)) {
continue;
}
auto pdgid = p.GetPdgCode();
auto px = p.Px();
auto py = p.Py();
auto pz = p.Pz();
auto vx = p.Vx();
auto vy = p.Vy();
auto vz = p.Vz();
bool wanttracking = true; // RS as far as I understand, if it reached this point, it is trackable
if (wanttracking || !mSkipNonTrackable) {
auto parent = -1;
auto e = p.Energy();
auto tof = p.T();
auto weight = p.GetWeight();
if (!isOnMassShell(p)) {
LOG(WARNING) << "Skipping " << pdgid << " since off-mass shell";
continue;
}
LOG(DEBUG) << "Putting primary " << pdgid << " " << p.GetStatusCode() << " " << p.GetUniqueID();
primGen->AddTrack(pdgid, px, py, pz, vx, vy, vz, parent, wanttracking, e, tof, weight);
particlecounter++;
}
}
mEventCounter++;
LOG(INFO) << "Event generator put " << particlecounter << " on stack";
return kTRUE;
} else {
LOG(ERROR) << "GeneratorFromFile: Ran out of events\n";
}
return kFALSE;
}
} // namespace eventgen
} // end namespace o2
ClassImp(o2::eventgen::GeneratorFromFile);