00001 00010 #ifndef PERSIMHITCOLLECTION_H 00011 #define PERSIMHITCOLLECTION_H 00012 00013 #include "PerSimEvent/PerSimHit.h" 00014 00015 #include <vector> 00016 00017 class PerSimHitCollection { 00018 public: 00019 typedef std::vector<PerSimHit*> phit_container; 00020 00021 PerSimHitCollection(); 00022 PerSimHitCollection(short int detId, const phit_container& in_hits); 00023 ~PerSimHitCollection(); 00024 00025 short int detId; 00026 phit_container hits; 00027 }; 00028 00029 #endif // PERSIMHITCOLLECTION_H