ROOT logo
#ifndef HGEOMTRAP_H
#define HGEOMTRAP_H

#include "hgeombasicshape.h"

class HGeomVolume;

class HGeomTrap : public HGeomBasicShape {
private:
  HGeomRotation intrinsicRot;
public:
  HGeomTrap();
  ~HGeomTrap();
  TArrayD* calcVoluParam(HGeomVolume*);
  void calcVoluPosition(HGeomVolume*,
            const HGeomTransform&,const HGeomTransform&);
  ClassDef(HGeomTrap,0) // class for geometry shape TRAP
};

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