Revision 022486c0898d6a1f04c0ef2d13c0218422ef0b04 authored by Rene Brun on 01 October 2006, 16:53:42 UTC, committed by Rene Brun on 01 October 2006, 16:53:42 UTC
   // if the box has no fill style (ie fill style=0), the box contour is drawn
   // if the box has a fill style, the box contour is not drawn by default.
   // to force the contour to be drawn, specify option "l"


git-svn-id: http://root.cern.ch/svn/root/trunk@16391 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 3d66a9c
Raw File
TMatrixFUtilsfwd.h
// @(#)root/matrix:$Name:  $:$Id: TMatrixFUtils.h,v 1.30 2005/04/07 14:43:35 rdm Exp $
// Authors: Fons Rademakers, Eddy Offermann   Nov 2003

/*************************************************************************
 * 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_TMatrixFUtilsfwd
#define ROOT_TMatrixFUtilsfwd

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// Matrix utility classes.                                              //
//                                                                      //
//  Forward declaration of                                              //
//   TMatrixTRow_const       <Float_t>  TMatrixTRow       <Float_t>     //
//   TMatrixTColumn_const    <Float_t>  TMatrixTColumn    <Float_t>     //
//   TMatrixTDiag_const      <Float_t>  TMatrixTDiag      <Float_t>     //
//   TMatrixTFlat_const      <Float_t>  TMatrixTFlat      <Float_t>     //
//   TMatrixTSub_const       <Float_t>  TMatrixTSub       <Float_t>     //
//   TMatrixTSparseRow_const <Float_t>  TMatrixTSparseRow <Float_t>     //
//   TMatrixTSparseDiag_const<Float_t>  TMatrixTSparseDiag<Float_t>     //
//                                                                      //
//   TElementActionT   <Float_t>                                        //
//   TElementPosActionT<Float_t>                                        //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

template<class Element> class TMatrixTRow_const;
template<class Element> class TMatrixTColumn_const;
template<class Element> class TMatrixTDiag_const;
template<class Element> class TMatrixTFlat_const;
template<class Element> class TMatrixTSub_const;
template<class Element> class TMatrixTSparseRow_const;
template<class Element> class TMatrixTSparseDiag_const;

template<class Element> class TMatrixTRow;
template<class Element> class TMatrixTColumn;
template<class Element> class TMatrixTDiag;
template<class Element> class TMatrixTFlat;
template<class Element> class TMatrixTSub;
template<class Element> class TMatrixTSparseRow;
template<class Element> class TMatrixTSparseDiag;

template<class Element> class TElementActionT;
template<class Element> class TElementPosActionT;

typedef TMatrixTRow_const       <Float_t> TMatrixFRow_const;
typedef TMatrixTColumn_const    <Float_t> TMatrixFColumn_const;
typedef TMatrixTDiag_const      <Float_t> TMatrixFDiag_const;
typedef TMatrixTFlat_const      <Float_t> TMatrixFFlat_const;
typedef TMatrixTSub_const       <Float_t> TMatrixFSub_const;
typedef TMatrixTSparseRow_const <Float_t> TMatrixFSparseRow_const;
typedef TMatrixTSparseDiag_const<Float_t> TMatrixFSparseDiag_const;

typedef TMatrixTRow             <Float_t> TMatrixFRow;
typedef TMatrixTColumn          <Float_t> TMatrixFColumn;
typedef TMatrixTDiag            <Float_t> TMatrixFDiag;
typedef TMatrixTFlat            <Float_t> TMatrixFFlat;
typedef TMatrixTSub             <Float_t> TMatrixFSub;
typedef TMatrixTSparseRow       <Float_t> TMatrixFSparseRow;
typedef TMatrixTSparseDiag      <Float_t> TMatrixFSparseDiag;

typedef TElementActionT         <Float_t> TElementActionF;
typedef TElementPosActionT      <Float_t> TElementPosActionF;

#endif
back to top