Jpp 21.0.0-rc.1
the software that should make you happy
Loading...
Searching...
No Matches
JFunctionalMap_t.hh
Go to the documentation of this file.
1#ifndef __JTOOLS__JFUNCTIONALMAP_T__
2#define __JTOOLS__JFUNCTIONALMAP_T__
3
4#include "JTools/JDistance.hh"
5#include "JTools/JMap.hh"
6#include "JTools/JGridMap.hh"
7#include "JTools/JPolint.hh"
8#include "JTools/JSpline.hh"
9#include "JTools/JResult.hh"
10
11
12/**
13 * \file
14 *
15 * Various implementations of functional maps.
16 * \author mdejong
17 */
18namespace JTOOLS {}
19namespace JPP { using namespace JTOOLS; }
20
21namespace JTOOLS {
22
23
24 /**
25 * Type definition of a spline interpolation based on a JMap implementation.
26 */
27 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
29
30
31 /**
32 * Type definition of a spline interpolation based on a JGridMap implementation.
33 */
34 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
36
37
38 /**
39 * Type definition of a zero degree polynomial interpolation based on a JMap implementation.
40 */
41 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
43
44
45 /**
46 * Type definition of a 1st degree polynomial interpolation based on a JMap implementation.
47 */
48 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
50
51
52 /**
53 * Type definition of a 2nd degree polynomial interpolation based on a JMap implementation.
54 */
55 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
57
58
59 /**
60 * Type definition of a 3rd degree polynomial interpolation based on a JMap implementation.
61 */
62 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
64
65
66 /**
67 * Type definition of a zero degree polynomial interpolation based on a JGridMap implementation.
68 */
69 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
71
72
73 /**
74 * Type definition of a 1st degree polynomial interpolation based on a JGridMap implementation.
75 */
76 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
78
79
80 /**
81 * Type definition of a 2nd degree polynomial interpolation based on a JGridMap implementation.
82 */
83 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
85
86
87 /**
88 * Type definition of a 3rd degree polynomial interpolation based on a JGridMap implementation.
89 */
90 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
92
93
94 /**
95 * Type definition of a spline interpolation based on a JMap implementation.
96 */
97 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
99
100
101 /**
102 * Type definition of a spline interpolation based on a JGridMap implementation.
103 */
104 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
106
107
108 /**
109 * Type definition of a zero degree polynomial interpolation based on a JMap implementation.
110 */
111 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
113
114
115 /**
116 * Type definition of a 1st degree polynomial interpolation based on a JMap implementation.
117 */
118 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
120
121
122 /**
123 * Type definition of a 2nd degree polynomial interpolation based on a JMap implementation.
124 */
125 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
127
128
129 /**
130 * Type definition of a 3rd degree polynomial interpolation based on a JMap implementation.
131 */
132 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
134
135
136 /**
137 * Type definition of a zero degree polynomial interpolation based on a JGridMap implementation.
138 */
139 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
141
142
143 /**
144 * Type definition of a 1st degree polynomial interpolation based on a JGridMap implementation.
145 */
146 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
148
149
150 /**
151 * Type definition of a 2nd degree polynomial interpolation based on a JGridMap implementation.
152 */
153 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
155
156
157 /**
158 * Type definition of a 3rd degree polynomial interpolation based on a JGridMap implementation.
159 */
160 template<class JKey_t, class JValue_t, class JDistance_t = JDistance<JKey_t> >
162}
163
164#endif
This include file containes various data structures that can be used as specific return types for the...
Functional map with polynomial interpolation.
Definition JPolint.hh:1153
Functional map with spline interpolation.
Definition JSpline.hh:787
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Auxiliary classes and methods for multi-dimensional interpolations and histograms.