00001 // @(#)root/matrix:$Id: TMatrixFLazy.h 20882 2007-11-19 11:31:26Z rdm $ 00002 // Authors: Fons Rademakers, Eddy Offermann Nov 2003 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 #ifndef ROOT_TMatrixFLazy 00013 #define ROOT_TMatrixFLazy 00014 00015 ////////////////////////////////////////////////////////////////////////// 00016 // // 00017 // Lazy Matrix classes. // 00018 // // 00019 // Instantation of // 00020 // TMatrixTLazy <Float_t> // 00021 // TMatrixTSymLazy <Float_t> // 00022 // THaarMatrixT <Float_t> // 00023 // THilbertMatrixT <Float_t> // 00024 // THilbertMatrixTSym<Float_t> // 00025 // // 00026 ////////////////////////////////////////////////////////////////////////// 00027 00028 #ifndef ROOT_TMatrixTLazy 00029 #include "TMatrixTLazy.h" 00030 #endif 00031 00032 typedef TMatrixTLazy <Float_t> TMatrixFLazy; 00033 typedef TMatrixTSymLazy <Float_t> TMatrixFSymLazy; 00034 typedef THaarMatrixT <Float_t> THaarMatrixF; 00035 typedef THilbertMatrixT <Float_t> THilbertMatrixF; 00036 typedef THilbertMatrixTSym<Float_t> THilbertMatrixFSym; 00037 00038 #endif