Rosetta
|
#include <TwoDHistogram.hh>
Public Member Functions | |
TwoDHistogram ()=default | |
void | increase_count (std::pair< key1, key2 > paired_keys) |
increase the counts of a histogram using paired keys More... | |
void | increase_count (key1 key_1, key2 key_2) |
overflow function to increase count taking 2 keys to increment counts of histogram More... | |
void | insert_data (key1 key_1, key2 key_2, platform::Size counts) |
insert data to the histogram More... | |
void | insert_data (std::pair< key1, key2 > paired_keys, platform::Size counts) |
overload function to insert data to the histogram More... | |
platform::Size | lookup_counts (key1 key_1, key2 key_2) |
look up data based upon your keys More... | |
platform::Size | lookup_counts (std::pair< key1, key2 > paired_keys) |
overload function to lookup counts More... | |
Private Attributes | |
std::map< std::pair< key1, key2 >, platform::Size > | histogram_ |
|
default |
|
inline |
overflow function to increase count taking 2 keys to increment counts of histogram
References numeric::histograms::TwoDHistogram< key1, key2 >::histogram_.
|
inline |
increase the counts of a histogram using paired keys
References numeric::histograms::TwoDHistogram< key1, key2 >::histogram_.
|
inline |
insert data to the histogram
References bin_torsions::counts, and numeric::histograms::TwoDHistogram< key1, key2 >::histogram_.
|
inline |
overload function to insert data to the histogram
References bin_torsions::counts, and numeric::histograms::TwoDHistogram< key1, key2 >::histogram_.
|
inline |
look up data based upon your keys
References bin_torsions::counts, and numeric::histograms::TwoDHistogram< key1, key2 >::histogram_.
|
inline |
overload function to lookup counts
References bin_torsions::counts, and numeric::histograms::TwoDHistogram< key1, key2 >::histogram_.
|
private |