#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

Last change: Sat May 22 12:56:22 2010
Last generated: 2010-05-22 12:56

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.