]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant4/TG4Polyhedra.h
Made all AliL3FileHandler specific functions virtual in AliL3MemHandler.
[u/mrichter/AliRoot.git] / TGeant4 / TG4Polyhedra.h
CommitLineData
c41ca2c7 1// $Id$
2// Category: geometry
499b353a 3//
4// Author: I. Hrivnacova, 12.10.2000
c41ca2c7 5//
499b353a 6// Class TG4Polyhedra
7// ------------------
c41ca2c7 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
17class 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