ROOT logo
#ifndef HGEOMCONE_H
#define HGEOMCONE_H

#include "hgeombasicshape.h"

class HGeomVolume;

class HGeomCone : public HGeomBasicShape {
public:
  HGeomCone();
  ~HGeomCone();
  TArrayD* calcVoluParam(HGeomVolume*);
  void calcVoluPosition(HGeomVolume*,
          const HGeomTransform&,const HGeomTransform&);
  Int_t readPoints(fstream*,HGeomVolume*);   
  Bool_t writePoints(fstream*,HGeomVolume*);   
  void printPoints(HGeomVolume* volu);
  ClassDef(HGeomCone,0) // class for geometry shape CONE
};

#endif  /* !HGEOMCONE_H */
 hgeomcone.h:1
 hgeomcone.h:2
 hgeomcone.h:3
 hgeomcone.h:4
 hgeomcone.h:5
 hgeomcone.h:6
 hgeomcone.h:7
 hgeomcone.h:8
 hgeomcone.h:9
 hgeomcone.h:10
 hgeomcone.h:11
 hgeomcone.h:12
 hgeomcone.h:13
 hgeomcone.h:14
 hgeomcone.h:15
 hgeomcone.h:16
 hgeomcone.h:17
 hgeomcone.h:18
 hgeomcone.h:19
 hgeomcone.h:20
 hgeomcone.h:21