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