BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/MdcTrkRecon/include/MdcTrkRecon/mdcTwoInv.h
Go to the documentation of this file.
1inline int mdcTwoInv( double matrix[3], double invmat[3] ) {
2
3 double det = matrix[0] * matrix[2] - matrix[1] * matrix[1];
4 if ( det == 0.0 )
5 {
6 invmat[0] = invmat[2] = invmat[1] = 0.00000;
7 return 1;
8 }
9 else
10 {
11 double detinv = 1. / det;
12 invmat[0] = matrix[2] * detinv;
13 invmat[2] = matrix[0] * detinv;
14 invmat[1] = -matrix[1] * detinv;
15 return 0;
16 }
17}
int mdcTwoInv(double matrix[3], double invmat[3])