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