Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_SimTrackerHitDATA_H
0004 #define EDM4HEP_SimTrackerHitDATA_H
0005 
0006 #include "edm4hep/Vector3d.h"
0007 #include "edm4hep/Vector3f.h"
0008 #include <cstdint>
0009 
0010 namespace edm4hep {
0011 
0012 /** @class SimTrackerHitData
0013  *  Simulated tracker hit
0014  *  @author: F.Gaede, DESY
0015  */
0016 class SimTrackerHitData {
0017 public:
0018   std::uint64_t cellID{};         ///< ID of the sensor that created this hit
0019   float EDep{};                   ///< energy deposited in the hit [GeV].
0020   float time{};                   ///< proper time of the hit in the lab frame in [ns].
0021   float pathLength{};             ///< path length of the particle in the sensitive material that resulted in this hit.
0022   std::int32_t quality{};         ///< quality bit flag.
0023   ::edm4hep::Vector3d position{}; ///< the hit position in [mm].
0024   ::edm4hep::Vector3f momentum{}; ///< the 3-momentum of the particle at the hits position in [GeV]
0025 };
0026 
0027 } // namespace edm4hep
0028 
0029 #endif