// @(#)root/base:$Name:  $:$Id: TMatrixFCramerInv.h,v 1.3 2005/04/07 14:43:35 rdm Exp $
// 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_TMatrixFCramerInv
#define ROOT_TMatrixFCramerInv

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TMatrixFCramerInv                                                    //
//                                                                      //
// Encapsulate 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_TMatrixF
#include "TMatrixF.h"
#endif

class TMatrixFCramerInv {

public:
  static Bool_t Inv2x2(TMatrixF &m,Double_t *determ);
  static Bool_t Inv3x3(TMatrixF &m,Double_t *determ);
  static Bool_t Inv4x4(TMatrixF &m,Double_t *determ);
  static Bool_t Inv5x5(TMatrixF &m,Double_t *determ);
  static Bool_t Inv6x6(TMatrixF &m,Double_t *determ);

  virtual ~TMatrixFCramerInv() { }
  ClassDef(TMatrixFCramerInv,0)  //Interface to math routines
};

#endif


syntax highlighted by Code2HTML, v. 0.9.1