R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BCave.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) 2019 GSI Helmholtzzentrum für Schwerionenforschung GmbH *
3 * Copyright (C) 2019-2025 Members of R3B Collaboration *
4 * *
5 * This software is distributed under the terms of the *
6 * GNU General Public Licence (GPL) version 3, *
7 * copied verbatim in the file "LICENSE". *
8 * *
9 * In applying this license GSI does not waive the privileges and immunities *
10 * granted to it by virtue of its status as an Intergovernmental Organization *
11 * or submit itself to any jurisdiction. *
12 ******************************************************************************/
13
14#ifndef R3BCAVE_H
15#define R3BCAVE_H 1
16
17#include "FairDetector.h"
18#include "FairModule.h"
19
20#include "Rtypes.h"
21
22class R3BCave : public FairModule
23{
24 public:
25 R3BCave(const char* name, const char* Title = "Exp Cave");
26 R3BCave();
27 virtual ~R3BCave();
28 virtual void ConstructGeometry();
29
30 virtual FairModule* CloneModule() const;
31
32 private:
33 Double_t world[3];
34
35 R3BCave(const R3BCave&);
36 R3BCave& operator=(const R3BCave&);
37
38 ClassDef(R3BCave, 2);
39};
40
41#endif // R3BCave_H
virtual void ConstructGeometry()
Definition R3BCave.cxx:54
virtual ~R3BCave()
Definition R3BCave.cxx:52
R3BCave()
Definition R3BCave.cxx:31
virtual FairModule * CloneModule() const
Definition R3BCave.cxx:97
R3BCave(const char *name, const char *Title="Exp Cave")
Definition R3BCave.cxx:36