Revision cb0a7058b9b82c346b86dee1e12b56059b29207d authored by Ilka Antcheva on 05 March 2007, 08:42:50 UTC, committed by Ilka Antcheva on 05 March 2007, 08:42:50 UTC
Allow the symbol "+" to be a part of the file directory
name. There was a clash with the ROOT file name convention
to treat "+" as a flag of the "animated" pixmap file.
-----
PS: STAR NFS directory do have the "+" in the directory
name. This is why the problem was discovered.


git-svn-id: http://root.cern.ch/svn/root/trunk@18149 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 76cc99c
Raw File
TMatrixFLazy.h
// @(#)root/matrix:$Name:  $:$Id: TMatrixFLazy.h,v 1.4 2004/01/26 20:57:35 brun 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_TMatrixFLazy
#define ROOT_TMatrixFLazy

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// Lazy Matrix classes.                                                 //
//                                                                      //
//  Instantation of                                                     //
//   TMatrixTLazy      <Float_t>                                        //
//   TMatrixTSymLazy   <Float_t>                                        //
//   THaarMatrixT      <Float_t>                                        //
//   THilbertMatrixT   <Float_t>                                        //
//   THilbertMatrixTSym<Float_t>                                        //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TMatrixTLazy
#include "TMatrixTLazy.h"
#endif

typedef TMatrixTLazy      <Float_t> TMatrixFLazy;
typedef TMatrixTSymLazy   <Float_t> TMatrixFSymLazy;
typedef THaarMatrixT      <Float_t> THaarMatrixF;
typedef THilbertMatrixT   <Float_t> THilbertMatrixF;
typedef THilbertMatrixTSym<Float_t> THilbertMatrixFSym;

#endif
back to top