00001 00011 #ifndef PERSIMHITHEADER_H 00012 #define PERSIMHITHEADER_H 00013 00014 #include "PerSimEvent/PerSimHitCollection.h" 00015 00016 #include <map> 00017 00018 00019 class PerSimHitHeader { 00020 public: 00021 typedef std::map<short int,PerSimHitCollection*> phc_map; 00022 00023 PerSimHitHeader(); 00024 PerSimHitHeader(const phc_map& in_hitCollections); 00025 ~PerSimHitHeader(); 00026 00027 phc_map hitCollections; 00028 }; 00029 00030 #endif // PERSIMHITHEADER_H