]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4Polyhedra.h
Latest version
[u/mrichter/AliRoot.git] / TGeant4 / TG4Polyhedra.h
1 // $Id$
2 // Category: geometry
3 // 
4 // Author: I. Hrivnacova, 12.10.2000 
5 //
6 // Class TG4Polyhedra
7 // ------------------
8 // G4Polyhedra class extented for public access method
9 // to the original parameters.
10
11 #ifndef TG4_POLYHEDRA_H
12 #define TG4_POLYHEDRA_H
13
14 #include <G4Polyhedra.hh>
15 #include <globals.hh>
16
17 class TG4Polyhedra : public G4Polyhedra
18 {
19   public:
20     TG4Polyhedra(const G4Polyhedra& rhs);
21     // TG4Polyhedra(); --> moved to private
22     virtual ~TG4Polyhedra();
23
24     // methods 
25    G4int GetNofZPlanes();
26    G4double* GetRmin();
27    G4double* GetRmax();
28    G4double* GetZ();
29
30   private:
31     TG4Polyhedra();
32     
33     void CheckOrigin();
34 };
35
36 #endif //TG4_POLYHEDRA_H
37