// @(#)root/base:$Id$
// Authors: Fons Rademakers, Eddy Offermann  Jan 2004

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TMatrixTCramerInv
#define ROOT_TMatrixTCramerInv

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TMatrixTCramerInv                                                    //
//                                                                      //
// Encapsulate templates of Cramer Inversion routines.                  //
//                                                                      //
// The 4x4, 5x5 and 6x6 are adapted from routines written by            //
// Mark Fischler and Steven Haywood as part of the CLHEP package        //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif

#ifndef ROOT_TMatrixT
#include "TMatrixT.h"
#endif

namespace TMatrixTCramerInv {

   template<class Element> Bool_t Inv2x2(TMatrixT<Element> &m,Double_t *determ);
   template<class Element> Bool_t Inv3x3(TMatrixT<Element> &m,Double_t *determ);
   template<class Element> Bool_t Inv4x4(TMatrixT<Element> &m,Double_t *determ);
   template<class Element> Bool_t Inv5x5(TMatrixT<Element> &m,Double_t *determ);
   template<class Element> Bool_t Inv6x6(TMatrixT<Element> &m,Double_t *determ);

}

#endif
 TMatrixTCramerInv.h:1
 TMatrixTCramerInv.h:2
 TMatrixTCramerInv.h:3
 TMatrixTCramerInv.h:4
 TMatrixTCramerInv.h:5
 TMatrixTCramerInv.h:6
 TMatrixTCramerInv.h:7
 TMatrixTCramerInv.h:8
 TMatrixTCramerInv.h:9
 TMatrixTCramerInv.h:10
 TMatrixTCramerInv.h:11
 TMatrixTCramerInv.h:12
 TMatrixTCramerInv.h:13
 TMatrixTCramerInv.h:14
 TMatrixTCramerInv.h:15
 TMatrixTCramerInv.h:16
 TMatrixTCramerInv.h:17
 TMatrixTCramerInv.h:18
 TMatrixTCramerInv.h:19
 TMatrixTCramerInv.h:20
 TMatrixTCramerInv.h:21
 TMatrixTCramerInv.h:22
 TMatrixTCramerInv.h:23
 TMatrixTCramerInv.h:24
 TMatrixTCramerInv.h:25
 TMatrixTCramerInv.h:26
 TMatrixTCramerInv.h:27
 TMatrixTCramerInv.h:28
 TMatrixTCramerInv.h:29
 TMatrixTCramerInv.h:30
 TMatrixTCramerInv.h:31
 TMatrixTCramerInv.h:32
 TMatrixTCramerInv.h:33
 TMatrixTCramerInv.h:34
 TMatrixTCramerInv.h:35
 TMatrixTCramerInv.h:36
 TMatrixTCramerInv.h:37
 TMatrixTCramerInv.h:38
 TMatrixTCramerInv.h:39
 TMatrixTCramerInv.h:40
 TMatrixTCramerInv.h:41
 TMatrixTCramerInv.h:42
 TMatrixTCramerInv.h:43
 TMatrixTCramerInv.h:44