File: IParamFunctionfwd.h

package info (click to toggle)
bornagain 23.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 103,956 kB
  • sloc: cpp: 423,131; python: 40,997; javascript: 11,167; awk: 630; sh: 356; ruby: 173; xml: 130; makefile: 45; ansic: 24
file content (47 lines) | stat: -rw-r--r-- 1,704 bytes parent folder | download | duplicates (5)
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 */