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