ROOT logo
#ifndef HGEOMCONS_H
#define HGEOMCONS_H

#include "hgeombasicshape.h"

class HGeomVolume;

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

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