Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TMatrixDUtilsfwd.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_TMatrixDUtilsfwd
13 #define ROOT_TMatrixDUtilsfwd
14 
15 //////////////////////////////////////////////////////////////////////////
16 // //
17 // Matrix utility classes. //
18 // //
19 // Forward declaration of //
20 // TMatrixTRow_const <Double_t> TMatrixTRow <Double_t> //
21 // TMatrixTColumn_const <Double_t> TMatrixTColumn <Double_t> //
22 // TMatrixTDiag_const <Double_t> TMatrixTDiag <Double_t> //
23 // TMatrixTFlat_const <Double_t> TMatrixTFlat <Double_t> //
24 // TMatrixTSub_const <Double_t> TMatrixTSub <Double_t> //
25 // TMatrixTSparseRow_const <Double_t> TMatrixTSparseRow <Double_t> //
26 // TMatrixTSparseDiag_const<Double_t> TMatrixTSparseDiag<Double_t> //
27 // //
28 // TElementActionT <Double_t> //
29 // TElementPosActionT<Double_t> //
30 // //
31 //////////////////////////////////////////////////////////////////////////
32 
33 #include "Rtypes.h"
34 
35 template<class Element> class TMatrixTRow_const;
36 template<class Element> class TMatrixTColumn_const;
37 template<class Element> class TMatrixTDiag_const;
38 template<class Element> class TMatrixTFlat_const;
39 template<class Element> class TMatrixTSub_const;
40 template<class Element> class TMatrixTSparseRow_const;
41 template<class Element> class TMatrixTSparseDiag_const;
42 
43 template<class Element> class TMatrixTRow;
44 template<class Element> class TMatrixTColumn;
45 template<class Element> class TMatrixTDiag;
46 template<class Element> class TMatrixTFlat;
47 template<class Element> class TMatrixTSub;
48 template<class Element> class TMatrixTSparseRow;
49 template<class Element> class TMatrixTSparseDiag;
50 
51 template<class Element> class TElementActionT;
52 template<class Element> class TElementPosActionT;
53 
54 typedef TMatrixTRow_const <Double_t> TMatrixDRow_const;
55 typedef TMatrixTColumn_const <Double_t> TMatrixDColumn_const;
56 typedef TMatrixTDiag_const <Double_t> TMatrixDDiag_const;
57 typedef TMatrixTFlat_const <Double_t> TMatrixDFlat_const;
58 typedef TMatrixTSub_const <Double_t> TMatrixDSub_const;
59 typedef TMatrixTSparseRow_const <Double_t> TMatrixDSparseRow_const;
60 typedef TMatrixTSparseDiag_const<Double_t> TMatrixDSparseDiag_const;
61 
62 typedef TMatrixTRow <Double_t> TMatrixDRow;
63 typedef TMatrixTColumn <Double_t> TMatrixDColumn;
64 typedef TMatrixTDiag <Double_t> TMatrixDDiag;
65 typedef TMatrixTFlat <Double_t> TMatrixDFlat;
66 typedef TMatrixTSub <Double_t> TMatrixDSub;
67 typedef TMatrixTSparseRow <Double_t> TMatrixDSparseRow;
68 typedef TMatrixTSparseDiag <Double_t> TMatrixDSparseDiag;
69 
70 typedef TElementActionT <Double_t> TElementActionD;
71 typedef TElementPosActionT <Double_t> TElementPosActionD;
72 
73 #endif