HistoMode.hpp
1 #ifndef OPALS_HISTO_MODE_HPP_INCLUDED
2 #define OPALS_HISTO_MODE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// HistoMode enumerates different modes of histogram computations
9  namespace HistoMode
10  {
11  enum Type
12  {
13  automatic , ///< derived mode from attribute type
14  real , ///< allow arbitrary bin width values
15  integer , ///< limits bin width to natural numbers
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif