ROOT logo
#ifndef HGEOMTUBS_H
#define HGEOMTUBS_H

#include "hgeombasicshape.h"

class HGeomVolume;

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

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