R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BCave.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) 2009 GSI Helmholtzzentrum für Schwerionenforschung GmbH *
3 * Copyright (C) 2009-2026 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#pragma once
15
16#include <FairDetector.h>
17#include <FairModule.h>
18
19#include <Rtypes.h>
20
21class R3BCave : public FairModule
22{
23 public:
24 R3BCave();
25 explicit R3BCave(const char* name, const char* Title = "Exp Cave");
26
27 virtual ~R3BCave() = default;
28
29 virtual void ConstructGeometry();
30
31 virtual FairModule* CloneModule() const;
32
33 private:
34 double world[3]{};
35
36 R3BCave(const R3BCave&);
38
39 public:
40 ClassDef(R3BCave, 2); // NOLINT
41};
virtual void ConstructGeometry()
Definition R3BCave.cxx:47
virtual ~R3BCave()=default
R3BCave()
Definition R3BCave.cxx:31
virtual FairModule * CloneModule() const
Definition R3BCave.cxx:90
double world[3]
Definition R3BCave.h:34
R3BCave & operator=(const R3BCave &)
ClassDef(R3BCave, 2)