EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairGeoMatrix.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairGeoMatrix.h
1 #ifndef FAIRGEOMATRIX_H
2 #define FAIRGEOMATRIX_H
3 
4 #include "FairGeoVector.h"
5 
6 #include "TObject.h"
7 
11 class FairGeoMatrix : public TObject
12 {
13  protected:
14  Double_t fM[9];
15  public:
16  FairGeoMatrix(void);
17  ~FairGeoMatrix(void);
18  Double_t& operator()(Int_t i,Int_t j) { return fM[i*3+j]; }
19  Double_t det(void);
21  FairGeoMatrix& operator/=(Double_t d);
22  ClassDef(FairGeoMatrix,0)
23 };
24 
25 #endif