Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:28

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_CherenkovParticleIDHypothesis_H
0004 #define EDM4EIC_CherenkovParticleIDHypothesis_H
0005 
0006 #include <cstdint>
0007 #include <ostream>
0008 
0009 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0010 #include "nlohmann/json_fwd.hpp"
0011 #endif
0012 
0013 namespace edm4eic {
0014 
0015 /** @class CherenkovParticleIDHypothesis
0016  *  
0017  *  @author: 
0018  */
0019 class CherenkovParticleIDHypothesis {
0020 public:
0021   std::int32_t PDG{}; ///< PDG code
0022   float npe{}; ///< Overall photoelectron count
0023   float weight{}; ///< Weight of this hypothesis, such as likelihood, moment, etc.
0024 
0025 
0026 };
0027 
0028 std::ostream& operator<<(std::ostream& o, const edm4eic::CherenkovParticleIDHypothesis& value);
0029 
0030 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0031 void to_json(nlohmann::json& j, const CherenkovParticleIDHypothesis& value);
0032 #endif
0033 
0034 } // namespace edm4eic
0035 
0036 
0037 #endif