ATTPCROOT  0.3.0-alpha
A ROOT-based framework for analyzing data from active target detectors
AtCave.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
3  * *
4  * This software is distributed under the terms of the *
5  * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
6  * copied verbatim in the file "LICENSE" *
7  ********************************************************************************/
8 
9 // -------------------------------------------------------------------------
10 // ----- AtCave file -----
11 // ----- Created 26/03/14 by M. Al-Turany -----
12 // -------------------------------------------------------------------------
13 
14 #ifndef Cave_H
15 #define Cave_H
16 
17 #include <FairModule.h> // for FairModule
18 
19 #include <Rtypes.h> // for AtCave::Class, ClassDef, etc
20 
21 class TBuffer;
22 class TClass;
23 class TMemberInspector;
24 
25 class AtCave : public FairModule {
26 public:
27  AtCave(const char *name, const char *Title = "Exp Cave");
28  AtCave();
29  virtual ~AtCave();
30  virtual void ConstructGeometry();
31 
32 private:
33  Double_t world[3]{0, 0, 0};
34  ClassDef(AtCave, 1) // PNDCaveSD
35 };
36 
37 #endif // Cave_H
AtCave::AtCave
AtCave()
Definition: AtCave.cxx:39
AtCave
Definition: AtCave.h:25
AtCave::ConstructGeometry
virtual void ConstructGeometry()
Definition: AtCave.cxx:27
AtCave::~AtCave
virtual ~AtCave()