Jpp  18.0.1-rc.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
15 namespace JTOOLS {}
16 namespace JPP { using namespace JTOOLS; }
17 
18 namespace 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> >
25  struct JHistogramMap_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
Histogram map.
The elements in a collection are sorted according to their abscissa values and a given distance opera...
Type definition of a JHistogramMap based on JGridMap implementation.
Type definition of a JHistogramMap based on JMap implementation.