SND@LHC Software
Loading...
Searching...
No Matches
ShipCave.h
Go to the documentation of this file.
1#ifndef Cave_H
2#define Cave_H
3
4#include "FairModule.h" // for FairModule
5
6#include "Rtypes.h" // for ShipCave::Class, ClassDef, etc
7
8class ShipCave : public FairModule
9{
10 public:
11 ShipCave(const char* name, const char* Title="Exp Cave");
12 ShipCave();
13 virtual ~ShipCave();
14 virtual void ConstructGeometry();
15
16
17 private:
18 Double_t world[3];
19 ClassDef(ShipCave,1) //PNDCaveSD
20};
21
22#endif //Cave_H
23
virtual void ConstructGeometry()
Definition ShipCave.cxx:6
virtual ~ShipCave()
Definition ShipCave.cxx:22
Double_t world[3]
Definition ShipCave.h:18