ROOT logo
#ifndef HGEOMBRIK_H
#define HGEOMBRIK_H

#include "hgeombasicshape.h"

class HGeomVolume;

class HGeomBrik : public HGeomBasicShape {
public:
  HGeomBrik();
  ~HGeomBrik();
  TArrayD* calcVoluParam(HGeomVolume*);
  void calcVoluPosition(HGeomVolume*,
          const HGeomTransform&,const HGeomTransform&);
  ClassDef(HGeomBrik,0) // class for geometry shape BOX or BRIK
};

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