ROOT logo
#ifndef HGEOMMATRIX_H
#define HGEOMMATRIX_H

#include "TObject.h"
#include "hgeomvector.h"

class HGeomMatrix : public TObject {
protected:
  Double_t fM[9];
public:
  HGeomMatrix(void);
  ~HGeomMatrix(void);
  Double_t &operator()(Int_t i,Int_t j) { return fM[i*3+j]; }
  Double_t det(void);
  HGeomVector operator*(HGeomVector &v);
  HGeomMatrix &operator/=(Double_t d);
  ClassDef(HGeomMatrix,0)
};

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