Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:12:14

0001 // @(#)root/matrix:$Id$
0002 // Authors: Fons Rademakers, Eddy Offermann   Nov 2003
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TMatrixDLazy
0013 #define ROOT_TMatrixDLazy
0014 
0015 //////////////////////////////////////////////////////////////////////////
0016 //                                                                      //
0017 // Lazy Matrix classes.                                                 //
0018 //                                                                      //
0019 //  Instantiation of                                                     //
0020 //   TMatrixTLazy      <Double_t>                                       //
0021 //   TMatrixTSymLazy   <Double_t>                                       //
0022 //   THaarMatrixT      <Double_t>                                       //
0023 //   THilbertMatrixT   <Double_t>                                       //
0024 //   THilbertMatrixTSym<Double_t>                                       //
0025 //                                                                      //
0026 //////////////////////////////////////////////////////////////////////////
0027 
0028 #include "TMatrixTLazy.h"
0029 #include "TMatrixDfwd.h"
0030 #include "TMatrixDSymfwd.h"
0031 
0032 typedef TMatrixTLazy      <Double_t> TMatrixDLazy;
0033 typedef TMatrixTSymLazy   <Double_t> TMatrixDSymLazy;
0034 typedef THaarMatrixT      <Double_t> THaarMatrixD;
0035 typedef THilbertMatrixT   <Double_t> THilbertMatrixD;
0036 typedef THilbertMatrixTSym<Double_t> THilbertMatrixDSym;
0037 
0038 #endif