00001
00002
00003 #ifndef SLIC_HITSCOLLECTIONUTIL_HH
00004 #define SLIC_HITSCOLLECTIONUTIL_HH 1
00005
00006
00007 #include <vector>
00008 #include <string>
00009
00010 class G4SensitiveDetector;
00011
00012 namespace slic
00013 {
00018 class HitsCollectionUtil
00019 {
00020 private:
00021 HitsCollectionUtil();
00022
00023 public:
00024
00025 static std::vector<G4SensitiveDetector*> getSensitiveDetectors();
00026 static std::vector<int> getHCIDs();
00027 static std::vector<std::string> getHCNames();
00028 };
00029 }
00030
00031 #endif