ROOT logo
#ifndef HGEOMTUBE_H
#define HGEOMTUBE_H

#include "hgeombasicshape.h"

class HGeomVolume;

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

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