SegmentSort.hpp
1 #ifndef OPALS_SEGMENT_SORT_HPP_INCLUDED
2 #define OPALS_SEGMENT_SORT_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Enumerator for sorting segments
9  namespace SegmentSort
10  {
11  enum Type
12  {
13  native , ///< internal continous segment numbers
14  ascendingPSize , ///< sort ascending by points per segment
15  descendingPSize , ///< sort descending by point per segment
16  Count ///< number of elements
17  };
18  }
19 }
20 
21 #endif