ROOT logo
#ifndef HGEOMPCON_H
#define HGEOMPCON_H

#include "hgeombasicshape.h"

class HGeomVolume;

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

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