Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TMatrixFLazy.h
Go to the documentation of this file.
1 // @(#)root/matrix:$Id$
2 // Authors: Fons Rademakers, Eddy Offermann Nov 2003
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TMatrixFLazy
13 #define ROOT_TMatrixFLazy
14 
15 //////////////////////////////////////////////////////////////////////////
16 // //
17 // Lazy Matrix classes. //
18 // //
19 // Instantation of //
20 // TMatrixTLazy <Float_t> //
21 // TMatrixTSymLazy <Float_t> //
22 // THaarMatrixT <Float_t> //
23 // THilbertMatrixT <Float_t> //
24 // THilbertMatrixTSym<Float_t> //
25 // //
26 //////////////////////////////////////////////////////////////////////////
27 
28 #include "TMatrixTLazy.h"
29 #include "TMatrixFfwd.h"
30 #include "TMatrixFSymfwd.h"
31 
32 typedef TMatrixTLazy <Float_t> TMatrixFLazy;
33 typedef TMatrixTSymLazy <Float_t> TMatrixFSymLazy;
34 typedef THaarMatrixT <Float_t> THaarMatrixF;
35 typedef THilbertMatrixT <Float_t> THilbertMatrixF;
36 typedef THilbertMatrixTSym<Float_t> THilbertMatrixFSym;
37 
38 #endif