#ifndef HGEORICH_H #define HGEORICH_H #include "FairGeoSet.h" class HGeoRich : public FairGeoSet { protected: char modName[5]; // name of module char eleName[2]; // substring for elements in module public: HGeoRich(); ~HGeoRich() {} const char* getModuleName(Int_t) {return modName;} const char* getEleName(Int_t) {return eleName;} Bool_t read(fstream&,FairGeoMedia*); ClassDef(HGeoRich,0) // Class for Rich }; #endif /* !HGEORICH_H */