Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/edm4hep/SimCalorimeterHitData.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_SimCalorimeterHitDATA_H
0004 #define EDM4HEP_SimCalorimeterHitDATA_H
0005 
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008 
0009 namespace edm4hep {
0010 
0011 /** @class SimCalorimeterHitData
0012  *  Simulated calorimeter hit
0013  *  @author: EDM4hep authors
0014  */
0015 class SimCalorimeterHitData {
0016 public:
0017   std::uint64_t cellID{};         ///< ID of the sensor that created this hit
0018   float energy{};                 ///< energy of the hit [GeV]
0019   ::edm4hep::Vector3f position{}; ///< position of the hit in world coordinates [mm]
0020 
0021   unsigned int contributions_begin{};
0022   unsigned int contributions_end{};
0023 };
0024 
0025 namespace v5 {
0026   using SimCalorimeterHitData = edm4hep::SimCalorimeterHitData;
0027 } // namespace v5
0028 
0029 } // namespace edm4hep
0030 
0031 #endif