IZonalFit.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/SearchMode.hpp>
5 #include <opals/SelectionMode.hpp>
6 #include <opals/String.hpp>
7 #include <opals/Path.hpp>
8 #include <opals/Array.hpp>
9 #include <opals/Vector.hpp>
10 #include <opals/HistoStats.hpp>
11 #include <opals/GeomModel.hpp>
12 #include <DM/StatFeature.hpp>
13 
14 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
15  #if defined _DEBUG && !defined OPALS_NO_DEBUG
16  #pragma comment(lib, "opalsZonalFit_d.lib")
17  #else
18  #pragma comment(lib, "opalsZonalFit.lib")
19  #endif
20 #endif
21 
22 namespace opals {
23 
24  namespace opts
25  {
26  /// Options of \ref ModuleZonalFit
27  namespace ZonalFit
28  {
29  /// Options of \ref ModuleZonalFit
30  using Options =
31  IGroup< Names::_, false,
50  >;
51  }
52  }
53 
54  /// Fits geometry models to a set of data points for multiple regions-of-interest
55  /** TODO:
56  More details on opalsopalsZonalFit with much more words,
57  possibly on several lines. */
58  /// \see \ref ModuleZonalFit
59  class OPALS_API IZonalFit : virtual public IModuleBase
60  {
61 
62  public:
63  static IZonalFit* New();
64  static IZonalFit* New( IControlObject &controlObject );
65  static IZonalFit* New( const IModuleBase &parent );
66  static IZonalFit* New( const IModuleBase &parent, IControlObject &controlObject );
67 
68  virtual ~IZonalFit() {}
69 
70  /// \name Access to module-specific options.
71  ///@{
73  virtual Options& opts() = 0;
74  virtual const Options& opts() const = 0;
75  ///@}
76 
77  };
78 
79 };
Leaf that holds a read-only value.
Definition: IOption.hpp:63
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
Fits geometry models to a set of data points for multiple regions-of-interest.
Definition: IZonalFit.hpp:59
Abstract base class of all opals modules.
Definition: IModuleBase.hpp:13
Interface for retrieving status and progress information from a module run.
Definition: c++_api/inc/opals/IControlObject.hpp:30
IGroup< Names::_, false, ILeaf< Names::inFile, false, Path >, ILeaf< Names::attribute, false, String >, ILeaf< Names::aoi, false, String >, ILeaf< Names::filter, false, String >, ILeaf< Names::plotFile, false, String >, ILeaf< Names::binWidth, false, double >, ILeaf< Names::sampleRange, false, Array< double, 2 > >, ILeaf< Names::densityRange, false, Array< double, 2 > >, ILeaf< Names::outGeometry, true, Vector< String > >, ILeaf< Names::limit, false, Array< double, 4 > >, ILeaf< Names::histogram, true, Vector< HistoStats > >, ILeaf< Names::geometryModel, false, GeomModel >, ILeaf< Names::neighbours, false, int >, ILeaf< Names::searchRadius, false, Vector< float > >, ILeaf< Names::searchMode, false, SearchMode >, ILeaf< Names::selMode, false, SelectionMode >, ILeaf< Names::storeStatistics, false, Vector< DM::StatFeature > >, ILeaf< Names::byproduct, false, Path > > Options
Options of Module ZonalFit.
Definition: IZonalFit.hpp:50
A group of options.
Definition: IOption.hpp:108