]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant4/TG4Polycone.h
Noninitialized pointers set to 0 (J. Belikov)
[u/mrichter/AliRoot.git] / TGeant4 / TG4Polycone.h
CommitLineData
c41ca2c7 1// $Id$
2// Category: geometry
c41ca2c7 3//
499b353a 4// Author: I. Hrivnacova, 12.10.2000
5//
6// Class TG4Polycone
7// -----------------
c41ca2c7 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
17class 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