SND@LHC Software
Loading...
Searching...
No Matches
ShipGeoCave.h
Go to the documentation of this file.
1#ifndef SNOOPYGEOCAVE_H
2#define SNOOPYGEOCAVE_H
3
4#include "FairGeoSet.h" // for FairGeoSet
5
6#include <iosfwd> // for fstream
7#include "Rtypes.h" // for ShipGeoCave::Class, Bool_t, etc
8#include "TString.h" // for TString
9
10#include <fstream> // for fstream
11
12class FairGeoMedia;
13
14class ShipGeoCave : public FairGeoSet
15{
16 protected:
17 TString name;
18 public:
21 const char* getModuleName(Int_t) {return name.Data();}
22 Bool_t read(std::fstream&,FairGeoMedia*);
23 void addRefNodes();
24 void write(std::fstream&);
25 void print();
26 ClassDef(ShipGeoCave,0) // Class for the geometry of CAVE
27};
28
29#endif /* !PNDGEOCAVE_H */
void addRefNodes()
Bool_t read(std::fstream &, FairGeoMedia *)
TString name
Definition ShipGeoCave.h:17
void write(std::fstream &)
const char * getModuleName(Int_t)
Definition ShipGeoCave.h:21