Version: SMASH-3.2
hepmcoutput.cc
Go to the documentation of this file.
1 /*
2  *
3  * Copyright (c) 2020-2024
4  * SMASH Team
5  *
6  * GNU General Public License (GPLv3 or later)
7  *
8  */
9 
10 #include "smash/hepmcoutput.h"
11 
12 #include "HepMC3/Print.h"
13 #include "HepMC3/WriterAscii.h"
14 
15 #ifdef SMASH_USE_HEPMC_ROOTIO
16 #include "HepMC3/WriterRootTree.h"
17 #endif
18 
19 namespace smash {
20 // clang-format off
253 // clang-format on
254 HepMcOutput::HepMcOutput(const std::filesystem::path &path, std::string name,
255  const bool full_event, std::string HepMC3_output_type)
256  : HepMcInterface(name, full_event),
257  filename_(path / (name + "." + HepMC3_output_type)) {
259  filename_unfinished_ += +".unfinished";
260 #ifdef SMASH_USE_HEPMC_ROOTIO
261  if (HepMC3_output_type == "asciiv3") {
262 #endif
263  output_file_ = std::make_unique<HepMC3::WriterAscii>(
264  filename_unfinished_.string(), event_.run_info());
266 #ifdef SMASH_USE_HEPMC_ROOTIO
267  } else {
268  output_file_ = std::make_unique<HepMC3::WriterRootTree>(
269  filename_unfinished_.string(), event_.run_info());
271  }
272 #endif
273 }
275  logg[LOutput].debug() << "Renaming file " << filename_unfinished_ << " to "
276  << filename_ << std::endl;
277  output_file_->close();
278  std::filesystem::rename(filename_unfinished_, filename_);
279 }
280 
281 void HepMcOutput::at_eventend(const Particles &particles,
282  const EventLabel &event_label,
283  const EventInfo &event) {
284  HepMcInterface::at_eventend(particles, event_label, event);
285  logg[LOutput].debug() << "Writing event " << event_label.event_number
286  << " with " << event_.particles().size()
287  << " particles and " << event_.vertices().size()
288  << " vertices to output " << std::endl;
289  output_file_->write_event(event_);
290 }
291 
292 } // namespace smash
Base class for output handlers that need the HepMC3 structure.
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Add the final particles information of an event to the central vertex.
HepMC3::GenEvent event_
The event.
const std::filesystem::path filename_
Filename of output.
Definition: hepmcoutput.h:66
HepMcOutput(const std::filesystem::path &path, std::string name, const bool full_event, std::string HepMC3_output_type)
Create HepMC particle output.
Definition: hepmcoutput.cc:254
void at_eventend(const Particles &particles, const EventLabel &event_label, const EventInfo &event) override
Add the final particles information of an event to the central vertex.
Definition: hepmcoutput.cc:281
~HepMcOutput()
Destructor renames file.
Definition: hepmcoutput.cc:274
std::filesystem::path filename_unfinished_
Filename of output as long as simulation is still running.
Definition: hepmcoutput.h:68
type_of_HepMC3_output output_type_
HepMC3 output type.
Definition: hepmcoutput.h:74
std::unique_ptr< HepMC3::Writer > output_file_
Pointers to the base class of HepMC3 output files.
Definition: hepmcoutput.h:70
The Particles class abstracts the storage and manipulation of particles.
Definition: particles.h:33
std::array< einhard::Logger<>, std::tuple_size< LogArea::AreaTuple >::value > logg
An array that stores all pre-configured Logger objects.
Definition: logging.cc:40
Definition: action.h:24
static constexpr int LOutput
Structure to contain custom data for output.
Structure to contain information about the event and ensemble numbers.
int32_t event_number
The number of the event.