// @(#)root/base:$Id$
// Authors: Fons Rademakers, Eddy Offermann  Oct 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_TMatrixTSymCramerInv
#define ROOT_TMatrixTSymCramerInv

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TMatrixTSymCramerInv                                                 //
//                                                                      //
// 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_TMatrixTSym
#include "TMatrixTSym.h"
#endif

namespace TMatrixTSymCramerInv {

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

}

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