EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PndGeoCave.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PndGeoCave.h
1 #ifndef PNDGEOCAVE_H
2 #define PNDGEOCAVE_H
3 
4 #include "FairGeoSet.h"
5 #include "TString.h"
6 #include "FairGeoMedia.h"
7 #include <fstream>
8 class PndGeoCave : public FairGeoSet {
9 protected:
10  TString name;
11 public:
12  PndGeoCave();
14  const char* getModuleName(Int_t) {return name.Data();}
15  Bool_t read(std::fstream&,FairGeoMedia*);
16  void addRefNodes();
17  void write(std::fstream&);
18  void print();
19  ClassDef(PndGeoCave,0) // Class for the geometry of CAVE
20 };
21 
22 #endif /* !PNDGEOCAVE_H */