1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
// @(#)root/mathcore:$Id$
// Author: L. Moneta Tue Nov 14 14:38:52 2006
/**********************************************************************
* *
* Copyright (c) 2006 LCG ROOT Math Team, CERN/PH-SFT *
* *
* *
**********************************************************************/
// Forward declarations for template class IParamFunction class
#ifndef ROOT_Math_IParamFunctionfwd
#define ROOT_Math_IParamFunctionfwd
#include "Math/IFunctionfwd.h"
namespace ROOT {
namespace Math {
class IParametricFunctionOneDim;
class IParametricGradFunctionOneDim;
template<class T>
class IParametricFunctionMultiDimTempl;
using IParametricFunctionMultiDim = IParametricFunctionMultiDimTempl<double>;
template<class T>
class IParametricGradFunctionMultiDimTempl;
using IParametricGradFunctionMultiDim = IParametricGradFunctionMultiDimTempl<double>;
typedef IParametricFunctionOneDim IParamFunction;
typedef IParametricFunctionMultiDim IParamMultiFunction;
template<class T>
using IParamMultiFunctionTempl = IParametricFunctionMultiDimTempl<T>;
typedef IParametricGradFunctionOneDim IParamGradFunction;
typedef IParametricGradFunctionMultiDim IParamMultiGradFunction;
template<class T>
using IParamMultiGradFunctionTempl = IParametricGradFunctionMultiDimTempl<T>;
} // end namespace Math
} // end namespace ROOT
#endif /* ROOT_Math_IParamFunctionfwd */
|