gparticle
Loading...
Searching...
No Matches
gparticle_lund_reader.cc
Go to the documentation of this file.
1// gparticle
4
5// geant4
6#include "G4ParticleTable.hh"
7
8// c++
9#include <cmath>
10#include <fstream>
11#include <sstream>
12#include <utility>
13#include <vector>
14
15namespace {
16constexpr size_t LUND_MIN_HEADER_COLUMNS = 10;
17constexpr size_t LUND_MAX_HEADER_COLUMNS = 100;
18constexpr size_t LUND_MIN_PARTICLE_COLUMNS = 14;
19constexpr size_t LUND_MAX_PARTICLE_COLUMNS = 100;
20constexpr int LUND_PROPAGATED_TYPE = 1;
21
22bool is_blank_line(const std::string& line) {
23 return line.find_first_not_of(" \t\r\n") == std::string::npos;
24}
25
26std::vector<double> parse_lund_header(const std::string& line) {
27 std::istringstream stream(line);
28 std::vector<double> values;
29 double value = 0;
30
31 while (stream >> value) { values.emplace_back(value); }
32 stream >> std::ws;
33 if (!stream.eof()) { values.clear(); }
34
35 return values;
36}
37
38struct LundParticleLine
39{
40 int index = 0;
41 double lifetime = 0;
42 int type = 0;
43 int pid = 0;
44 int parent = 0;
45 int daughter = 0;
46 double px = 0;
47 double py = 0;
48 double pz = 0;
49 double energy = 0;
50 double mass = 0;
51 double vx = 0;
52 double vy = 0;
53 double vz = 0;
54};
55
56bool parse_lund_particle_line(const std::string& line, LundParticleLine& particle) {
57 std::istringstream stream(line);
58 std::vector<double> values;
59 double value = 0;
60
61 while (stream >> value) { values.emplace_back(value); }
62 stream >> std::ws;
63 if (!stream.eof() ||
64 values.size() < LUND_MIN_PARTICLE_COLUMNS ||
65 values.size() > LUND_MAX_PARTICLE_COLUMNS) {
66 return false;
67 }
68
69 particle.index = static_cast<int>(values[0]);
70 particle.lifetime = values[1];
71 particle.type = static_cast<int>(values[2]);
72 particle.pid = static_cast<int>(values[3]);
73 particle.parent = static_cast<int>(values[4]);
74 particle.daughter = static_cast<int>(values[5]);
75 particle.px = values[6];
76 particle.py = values[7];
77 particle.pz = values[8];
78 particle.energy = values[9];
79 particle.mass = values[10];
80 particle.vx = values[11];
81 particle.vy = values[12];
82 particle.vz = values[13];
83
84 return particle.index == values[0] &&
85 particle.type == values[2] &&
86 particle.pid == values[3] &&
87 particle.parent == values[4] &&
88 particle.daughter == values[5];
89}
90
91std::string particle_name_from_pid(int pid, const std::shared_ptr<GLogger>& logger) {
92 auto particle_table = G4ParticleTable::GetParticleTable();
93 if (particle_table == nullptr) {
95 "G4ParticleTable not found while reading Lund particles");
96 return {};
97 }
98
99 auto particle_definition = particle_table->FindParticle(pid);
100 if (particle_definition == nullptr) {
101 logger->error(gparticle::ERR_GPARTICLENOTFOUND, "Lund pid <", pid, "> was not found in G4ParticleTable");
102 return {};
103 }
104
105 return particle_definition->GetParticleName();
106}
107
108GparticlePtr make_gparticle_from_lund(const LundParticleLine& particle, const std::shared_ptr<GLogger>& logger) {
109 const auto particle_name = particle_name_from_pid(particle.pid, logger);
110 if (particle_name.empty()) { return nullptr; }
111
112 const double momentum = std::sqrt(
113 particle.px * particle.px +
114 particle.py * particle.py +
115 particle.pz * particle.pz
116 );
117
118 double theta = 0;
119 if (momentum > 0) { theta = std::acos(particle.pz / momentum); }
120
121 const double phi = std::atan2(particle.py, particle.px);
122
123 return std::make_shared<Gparticle>(
124 particle_name,
125 1,
126 gutilities::getG4Number(momentum, "GeV"),
127 0,
128 "uniform",
129 gutilities::getG4Number(theta, "rad"),
130 0,
131 "uniform",
132 gutilities::getG4Number(phi, "rad"),
133 0,
134 gutilities::getG4Number(particle.vx, "cm"),
135 gutilities::getG4Number(particle.vy, "cm"),
136 gutilities::getG4Number(particle.vz, "cm"),
137 0,
138 0,
139 0,
140 "uniform",
141 logger,
142 particle.type
143 );
144}
145
146GParticleRecord make_record_from_lund(const LundParticleLine& particle,
147 const std::shared_ptr<GLogger>& logger) {
148 (void)logger;
149
150 const double momentum = std::sqrt(
151 particle.px * particle.px +
152 particle.py * particle.py +
153 particle.pz * particle.pz
154 );
155
156 double theta = 0;
157 if (momentum > 0) { theta = std::acos(particle.pz / momentum); }
158
159 std::string particle_name;
160 auto particle_table = G4ParticleTable::GetParticleTable();
161 if (particle_table != nullptr) {
162 auto particle_definition = particle_table->FindParticle(particle.pid);
163 if (particle_definition != nullptr) { particle_name = particle_definition->GetParticleName(); }
164 }
165 if (particle_name.empty()) { particle_name = std::to_string(particle.pid); }
166
167 return {
168 particle_name,
169 particle.pid,
170 particle.type,
171 1,
172 momentum,
173 theta,
174 std::atan2(particle.py, particle.px),
175 particle.vx,
176 particle.vy,
177 particle.vz
178 };
179}
180
181}
182
184 const std::shared_ptr<GLogger>& logger,
185 bool propagated_only) {
186 GParticleEvents events;
187 std::ifstream input(source.filename);
188
189 if (!input.is_open()) {
190 logger->error(gparticle::ERR_GPARTICLEFILEOPEN, "Could not open Lund particle file <", source.filename, ">");
191 return events;
192 }
193
194 std::string line;
195 while (std::getline(input, line)) {
196 if (is_blank_line(line)) { continue; }
197
198 const auto header_values = parse_lund_header(line);
199
200 if (header_values.size() < LUND_MIN_HEADER_COLUMNS || header_values.size() > LUND_MAX_HEADER_COLUMNS) {
201 logger->error(gparticle::ERR_GPARTICLEFILEFORMAT, "Malformed Lund event header in <",
202 source.filename, ">: ", line);
203 continue;
204 }
205
206 const auto particle_count = static_cast<int>(header_values.front());
207 if (particle_count < 0 || particle_count != header_values.front()) {
209 "Lund event header first column must be a non-negative integer in <",
210 source.filename, ">: ", line);
211 continue;
212 }
213
214 bool have_first_particle_line = false;
215 if (!std::getline(input, line)) {
217 "Lund event header must be followed by a blank line in <", source.filename, ">");
218 continue;
219 }
220 if (!is_blank_line(line)) { have_first_particle_line = true; }
221
222 GParticleEvent event_particles;
223 for (int i = 0; i < particle_count; i++) {
224 if (have_first_particle_line) {
225 have_first_particle_line = false;
226 }
227 else if (!std::getline(input, line)) {
229 "Lund event declared ", particle_count, " particles but ended after ",
230 i, " particle lines in <", source.filename, ">");
231 break;
232 }
233
234 if (is_blank_line(line)) {
236 "Unexpected blank line inside Lund particle block in <", source.filename, ">");
237 continue;
238 }
239
240 LundParticleLine lund_particle;
241 if (!parse_lund_particle_line(line, lund_particle)) {
242 logger->error(gparticle::ERR_GPARTICLEFILEFORMAT, "Malformed Lund particle line in <",
243 source.filename, ">: ", line);
244 continue;
245 }
246
247 if (lund_particle.index != i + 1) {
249 "Lund particle index must start from 1 and follow particle order in <",
250 source.filename, ">: ", line);
251 continue;
252 }
253
254 if (propagated_only && lund_particle.type != LUND_PROPAGATED_TYPE) { continue; }
255
256 auto particle = make_gparticle_from_lund(lund_particle, logger);
257 if (particle != nullptr) { event_particles.emplace_back(particle); }
258 }
259
260 events.emplace_back(std::move(event_particles));
261 }
262
263 logger->info(1, "Loaded ", events.size(), " Lund events from <", source.filename, ">");
264 return events;
265}
266
267std::vector<GparticlePtr> GParticleLundReader::loadParticles(const GParticleSourceDefinition& source,
268 const std::shared_ptr<GLogger>& logger) {
269 std::vector<GparticlePtr> particles;
270 for (const auto& event : loadParticleEvents(source, logger)) {
271 particles.insert(particles.end(), event.begin(), event.end());
272 }
273
274 logger->info(1, "Loaded ", particles.size(), " propagated particles from Lund file <", source.filename, ">");
275 return particles;
276}
277
279 const std::shared_ptr<GLogger>& logger) {
281 std::ifstream input(source.filename);
282
283 if (!input.is_open()) {
284 logger->error(gparticle::ERR_GPARTICLEFILEOPEN, "Could not open Lund particle file <", source.filename, ">");
285 return events;
286 }
287
288 std::string line;
289 while (std::getline(input, line)) {
290 if (is_blank_line(line)) { continue; }
291
292 const auto header_values = parse_lund_header(line);
293 if (header_values.size() < LUND_MIN_HEADER_COLUMNS || header_values.size() > LUND_MAX_HEADER_COLUMNS) {
294 logger->error(gparticle::ERR_GPARTICLEFILEFORMAT, "Malformed Lund event header in <",
295 source.filename, ">: ", line);
296 continue;
297 }
298
299 const auto particle_count = static_cast<int>(header_values.front());
300 if (particle_count < 0 || particle_count != header_values.front()) {
302 "Lund event header first column must be a non-negative integer in <",
303 source.filename, ">: ", line);
304 continue;
305 }
306
307 bool have_first_particle_line = false;
308 if (!std::getline(input, line)) {
310 "Lund event header must be followed by a blank line in <", source.filename, ">");
311 continue;
312 }
313 if (!is_blank_line(line)) { have_first_particle_line = true; }
314
315 GParticleRecordEvent event_particles;
316 for (int i = 0; i < particle_count; i++) {
317 if (have_first_particle_line) {
318 have_first_particle_line = false;
319 }
320 else if (!std::getline(input, line)) {
322 "Lund event declared ", particle_count, " particles but ended after ",
323 i, " particle lines in <", source.filename, ">");
324 break;
325 }
326
327 if (is_blank_line(line)) {
329 "Unexpected blank line inside Lund particle block in <", source.filename, ">");
330 continue;
331 }
332
333 LundParticleLine lund_particle;
334 if (!parse_lund_particle_line(line, lund_particle)) {
335 logger->error(gparticle::ERR_GPARTICLEFILEFORMAT, "Malformed Lund particle line in <",
336 source.filename, ">: ", line);
337 continue;
338 }
339
340 if (lund_particle.index != i + 1) {
342 "Lund particle index must start from 1 and follow particle order in <",
343 source.filename, ">: ", line);
344 continue;
345 }
346
347 event_particles.emplace_back(make_record_from_lund(lund_particle, logger));
348 }
349
350 events.emplace_back(std::move(event_particles));
351 }
352
353 logger->info(1, "Loaded ", events.size(), " Lund generated-particle record events from <", source.filename, ">");
354 return events;
355}
GParticleRecordEvents loadParticleRecordEvents(const GParticleSourceDefinition &source, const std::shared_ptr< GLogger > &logger) override
Loads Lund events as generated-particle records.
GParticleEvents loadParticleEvents(const GParticleSourceDefinition &source, const std::shared_ptr< GLogger > &logger, bool propagated_only=true) override
Loads Lund events as Geant4-shootable particles.
std::vector< GparticlePtr > loadParticles(const GParticleSourceDefinition &source, const std::shared_ptr< GLogger > &logger) override
Loads all propagated Lund particles as one flattened list.
event
Conventions and error codes for the gparticle module.
std::vector< GParticleEvent > GParticleEvents
Sequence of file-backed generated-particle events.
std::vector< GparticlePtr > GParticleEvent
Event-local list of Geant4-propagated generator particles.
std::vector< GParticleRecordEvent > GParticleRecordEvents
Sequence of generated-particle record events indexed by event number.
std::vector< GParticleRecord > GParticleRecordEvent
Event-local list of generated-particle records for output.
std::shared_ptr< Gparticle > GparticlePtr
Shared pointer type used for Gparticle instances.
Definition gparticle.h:453
constexpr int ERR_GPARTICLETABLENOTFOUND
G4ParticleTable could not be obtained (unexpected runtime state).
constexpr int ERR_GPARTICLEFILEFORMAT
Particle input file contained malformed or unsupported data.
constexpr int ERR_GPARTICLEFILEOPEN
Particle input file could not be opened.
constexpr int ERR_GPARTICLENOTFOUND
Requested particle name was not found in the G4ParticleTable.
double getG4Number(const string &v, bool warnIfNotUnit=false)
Immutable generated-particle metadata used for output banks.
One configured -gparticlefile source.
std::string filename
Source filename.