/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 00011 #ifndef PERSIMHIT_H 00012 #define PERSIMHIT_H 00013 00014 #include "PerSimEvent/PerSimIndirection.h" 00015 #include "CLHEP/Vector/ThreeVector.h" 00016 00017 class PerSimHit { 00018 public: 00019 PerSimHit(); 00020 PerSimHit(int sensDetId, double in_time, 00021 const CLHEP::Hep3Vector& in_pos, float in_weight); 00022 virtual ~PerSimHit(); 00023 00024 int sensDetId; 00025 double time; 00026 CLHEP::Hep3Vector pos; 00027 float weight; 00028 PerSimIndirection ancestor; 00029 }; 00030 00031 #endif // PERSIMHIT_H