StripAdjustStage.hpp
1 #ifndef OPALS_STRIP_ADJUST_STAGE_HPP_INCLUDED
2 #define OPALS_STRIP_ADJUST_STAGE_HPP_INCLUDED
3 
4 #include <opals/config.hpp>
5 
6 namespace opals
7 {
8  /// Defines the workflow phases of module StripAdjust
9  namespace StripAdjustStage
10  {
11  enum Type
12  {
13  importData , ///< Import strip data.
14  preprocess , ///< Preprocess data.
15  adjust , ///< Do the actual adjustment.
16  postprocess , ///< Postprocess the adjusted data.
17  exportData , ///< Export the adjusted data.
18  exportStrips , ///< Export the adjusted strips.
19  Count ///< number of elements
20  };
21  }
22 }
23 
24 #endif