#ifndef HGEOTARGET_H #define HGEOTARGET_H #include "FairGeoSet.h" class HGeoTarget : public FairGeoSet { protected: char modName[2]; // name of module char eleName[2]; // substring for elements in module public: HGeoTarget(); ~HGeoTarget() {} const char* getModuleName(Int_t) {return modName;} const char* getEleName(Int_t) {return eleName;} ClassDef(HGeoTarget,0) // Class for Target }; #endif /* !HGEOTARGET_H */