PandaRoot
PndGeoCave.h
Go to the documentation of this file.
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 
12  public:
13  PndGeoCave();
15  const char *getModuleName(Int_t) { return name.Data(); }
16  Bool_t read(std::fstream &, FairGeoMedia *);
17  void addRefNodes();
18  void write(std::fstream &);
19  void print();
20  ClassDef(PndGeoCave, 0) // Class for the geometry of CAVE
21 };
22 
23 #endif /* !PNDGEOCAVE_H */
void write(std::fstream &)
void print()
const char * getModuleName(Int_t)
Definition: PndGeoCave.h:15
void addRefNodes()
Bool_t read(std::fstream &, FairGeoMedia *)
TString name
Definition: PndGeoCave.h:10