Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-16 08:53:30

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_CalorimeterHitDATA_H
0004 #define EDM4HEP_CalorimeterHitDATA_H
0005 
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008 
0009 namespace edm4hep {
0010 
0011 
0012 /** @class CalorimeterHitData
0013  *  Calorimeter hit
0014  *  @author: EDM4hep authors
0015  */
0016 class CalorimeterHitData {
0017 public:
0018   std::uint64_t cellID{}; ///< detector specific (geometrical) cell id
0019   float energy{}; ///< energy of the hit [GeV]
0020   float energyError{}; ///< error of the hit energy [GeV]
0021   float time{}; ///< time of the hit [ns]
0022   ::edm4hep::Vector3f position{}; ///< position of the hit in world coordinates [mm]
0023   std::int32_t type{}; ///< type of hit
0024 
0025 };
0026 
0027 } // namespace edm4hep
0028 
0029 
0030 #endif