CbmRoot
Loading...
Searching...
No Matches
CbmCave.h
Go to the documentation of this file.
1/* Copyright (C) 2006-2009 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Denis Bertini [committer] */
4
5#ifndef Cave_H
6#define Cave_H
7
8#include "FairModule.h"
9
10
11class CbmCave : public FairModule {
12public:
13 CbmCave(const char* name, const char* Title = "Exp Cave");
14 CbmCave();
15 virtual ~CbmCave();
16 virtual void ConstructGeometry();
17
18
19private:
20 Double_t world[3];
21 ClassDef(CbmCave, 1) //CBMCaveSD
22};
23
24#endif //Cave_H
CbmCave()
Definition CbmCave.cxx:53
virtual void ConstructGeometry()
Double_t world[3]
Definition CbmCave.h:20
virtual ~CbmCave()
Definition CbmCave.cxx:55