ROOT logo
#ifndef HGEOMSPHE_H
#define HGEOMSPHE_H

#include "hgeombasicshape.h"

class HGeomVolume;

class HGeomSphe : public HGeomBasicShape {
public:
  HGeomSphe();
  ~HGeomSphe();
  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(HGeomSphe,0) // class for geometry shape SPHE
};

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