R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BGeoCave.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 "FairGeoSet.h"
17
18#include <Rtypes.h>
19#include <TString.h>
20#include <fstream>
21#include <iosfwd>
22
23class FairGeoMedia;
24
25class R3BGeoCave : public FairGeoSet
26{
27 protected:
28 TString name;
29
30 public:
31 R3BGeoCave();
33 const char* getModuleName(Int_t) { return name.Data(); }
34 Bool_t read(std::fstream&, FairGeoMedia*);
35 void addRefNodes();
36 void write(std::fstream&);
37 void print();
38 ClassDef(R3BGeoCave, 0); // Class for the geometry of CAVE
39};
TString name
Definition R3BGeoCave.h:28
void addRefNodes()
const char * getModuleName(Int_t)
Definition R3BGeoCave.h:33
ClassDef(R3BGeoCave, 0)
void write(std::fstream &)
Bool_t read(std::fstream &, FairGeoMedia *)