Fork me on GitHub

source: git/external/HepMC3/Data/GenRunInfoData.h@ 95a917c

Last change on this file since 95a917c was 95a917c, checked in by Pavel Demin <pavel.demin@…>, 3 years ago

add HepMC3 library

  • Property mode set to 100644
File size: 926 bytes
Line 
1// -*- C++ -*-
2//
3// This file is part of HepMC
4// Copyright (C) 2014-2019 The HepMC collaboration (see AUTHORS for details)
5//
6#ifndef HEPMC3_DATA_GENRUNINFODATA_H
7#define HEPMC3_DATA_GENRUNINFODATA_H
8/**
9 * @file GenRunInfoData.h
10 * @brief Definition of \b struct GenRunInfoData
11 *
12 * @struct HepMC3::GenRunInfoData
13 * @brief Stores serializable run information
14 *
15 * @ingroup data
16 *
17 */
18#include <vector>
19#include <string>
20
21namespace HepMC3 {
22
23struct GenRunInfoData {
24 std::vector<std::string> weight_names; ///< Weight names
25
26 std::vector<std::string> tool_name; ///< Tool names
27 std::vector<std::string> tool_version; ///< Tool versions
28 std::vector<std::string> tool_description; ///< Tool descriptions
29
30 std::vector<std::string> attribute_name; ///< Attribute name
31 std::vector<std::string> attribute_string; ///< Attribute serialized as string
32};
33
34} // namespace HepMC
35
36#endif
Note: See TracBrowser for help on using the repository browser.