Jpp 19.3.0-rc.1
the software that should make you happy
Loading...
Searching...
No Matches
JHistogramMap_t.hh
Go to the documentation of this file.
1#ifndef __JHISTOGRAMMAP_T__
2#define __JHISTOGRAMMAP_T__
3
4
5#include "JTools/JElement.hh"
6#include "JTools/JMap.hh"
7#include "JTools/JGridMap.hh"
9
10
11/**
12 * \author mdejong
13 */
14
15namespace JTOOLS {}
16namespace JPP { using namespace JTOOLS; }
17
18namespace JTOOLS {
19
20
21 /**
22 * Type definition of a JHistogramMap based on JMap implementation.
23 */
24 template<class JKey_t, class JHistogram_t, class JDistance_t = JDistance<JKey_t> >
26 public JHistogramMap<JKey_t, JHistogram_t, JMap, JDistance_t>
27 {};
28
29
30 /**
31 * Type definition of a JHistogramMap based on JGridMap implementation.
32 */
33 template<class JKey_t, class JHistogram_t, class JDistance_t = JDistance<JKey_t> >
35 public JHistogramMap<JKey_t, JHistogram_t, JGridMap, JDistance_t>
36 {};
37}
38
39#endif
The elements in a collection are sorted according to their abscissa values and a given distance opera...
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
Auxiliary classes and methods for multi-dimensional interpolations and histograms.
Type definition of a JHistogramMap based on JGridMap implementation.
Type definition of a JHistogramMap based on JMap implementation.