#ifndef HGEOCAVE_H #define HGEOCAVE_H #include "TString.h" #include "FairGeoSet.h" class HGeoMedia; class HGeoCave : public FairGeoSet { protected: TString name; public: HGeoCave(); ~HGeoCave() {} const char* getModuleName(Int_t) {return name.Data();} Bool_t read(fstream&,FairGeoMedia*); void write(fstream&); void print(); ClassDef(HGeoCave,0) // Class for CAVE }; #endif /* !HGEOCAVE_H */