ROOT logo
#ifndef HGEOMELTU_H
#define HGEOMELTU_H

#include "hgeombasicshape.h"

class HGeomVolume;

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

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