// @(#)root/base:$Name: $:$Id: TMatrixTSymCramerInv.h,v 1.2 2006/05/17 06:22:06 brun Exp $
// 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
ROOT page - Class index - Class Hierarchy - Top of the page
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.