MARLEY (Model of Argon Reaction Low Energy Yields) v2.0.0
A Monte Carlo event generator for tens-of-MeV neutrino interactions
Loading...
Searching...
No Matches
GenRunInfoData.h
1// -*- C++ -*-
2//
3// This file is part of HepMC
4// Copyright (C) 2014-2023 The HepMC collaboration (see AUTHORS for details)
5//
6#ifndef HEPMC3_DATA_GENRUNINFODATA_H
7#define HEPMC3_DATA_GENRUNINFODATA_H
18#include <vector>
19#include <string>
20
21namespace HepMC3 {
22
24 std::vector<std::string> weight_names;
25
26 std::vector<std::string> tool_name;
27 std::vector<std::string> tool_version;
28 std::vector<std::string> tool_description;
29
30 std::vector<std::string> attribute_name;
31 std::vector<std::string> attribute_string;
32};
33
34} // namespace HepMC
35
36#endif
Stores serializable run information.
std::vector< std::string > weight_names
Weight names.
std::vector< std::string > tool_name
Tool names.
std::vector< std::string > attribute_string
Attribute serialized as string.
std::vector< std::string > tool_version
Tool versions.
std::vector< std::string > tool_description
Tool descriptions.
std::vector< std::string > attribute_name
Attribute name.