PandaRoot
PndGeoCave.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 #ifndef PNDGEOCAVE_H
14 #define PNDGEOCAVE_H
15 
16 #include "FairGeoSet.h"
17 #include "TString.h"
18 #include "FairGeoMedia.h"
19 #include <fstream>
20 class PndGeoCave : public FairGeoSet {
21  protected:
22  TString name;
23 
24  public:
25  PndGeoCave();
27  const char *getModuleName(Int_t) { return name.Data(); }
28  Bool_t read(std::fstream &, FairGeoMedia *);
29  void addRefNodes();
30  void write(std::fstream &);
31  void print();
32  ClassDef(PndGeoCave, 0) // Class for the geometry of CAVE
33 };
34 
35 #endif /* !PNDGEOCAVE_H */
void write(std::fstream &)
void print()
const char * getModuleName(Int_t)
Definition: PndGeoCave.h:27
void addRefNodes()
Bool_t read(std::fstream &, FairGeoMedia *)
TString name
Definition: PndGeoCave.h:22