Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-06-03 08:33:24

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_GeneratorPdfInfoDATA_H
0004 #define EDM4HEP_GeneratorPdfInfoDATA_H
0005 
0006 #include <array>
0007 
0008 namespace edm4hep {
0009 
0010 /** @class GeneratorPdfInfoData
0011  *  Generator pdf information
0012  *  @author: EDM4hep authors
0013  */
0014 class GeneratorPdfInfoData {
0015 public:
0016   std::array<int, 2> partonId{}; ///< Parton PDG id
0017   std::array<int, 2> lhapdfId{}; ///< LHAPDF PDF id (see https://lhapdf.hepforge.org/pdfsets.html)
0018   std::array<double, 2> x{};     ///< Parton momentum fraction
0019   std::array<double, 2> xf{};    ///< PDF value
0020   double scale{};                ///< Factorisation scale [GeV]
0021 };
0022 
0023 } // namespace edm4hep
0024 
0025 #endif