IRadioCal.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/Path.hpp>
5 #include <opals/String.hpp>
6 #include <opals/CalibrationStats.hpp>
7 
8 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
9  #if defined _DEBUG && !defined OPALS_NO_DEBUG
10  #pragma comment(lib, "opalsRadioCal_d.lib")
11  #else
12  #pragma comment(lib, "opalsRadioCal.lib")
13  #endif
14 #endif
15 
16 namespace opals {
17 
18  namespace opts
19  {
20  /// Options of \ref ModuleRadioCal
21  namespace RadioCal
22  {
23  /// Options of \ref ModuleRadioCal
24  using Options =
25  IGroup< Names::_, false,
36  >;
37  }
38  }
39 
40  /// Performs radiometric calibration of ALS data and calculates physical quantities (backscatter cross section/coefficient, reflectance) for each return.
41  /** TODO:
42  More details on opalsRadioCal */
43  /// \see \ref ModuleRadioCal
44  class OPALS_API IRadioCal : virtual public IModuleBase
45  {
46 
47  public:
48  static IRadioCal* New();
49  static IRadioCal* New( IControlObject &controlObject );
50  static IRadioCal* New( const IModuleBase &parent );
51  static IRadioCal* New( const IModuleBase &parent, IControlObject &controlObject );
52 
53  virtual ~IRadioCal() {}
54 
55  /// \name Access to module-specific options.
56  ///@{
58  virtual Options& opts() = 0;
59  virtual const Options& opts() const = 0;
60  ///@}
61 
62  };
63 
64 };
Leaf that holds a read-only value.
Definition: IOption.hpp:63
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
IGroup< Names::_, false, ILeaf< Names::inFile, false, Vector< Path > >, ILeaf< Names::outFile, false, Path >, ILeaf< Names::oFormat, false, String >, ILeaf< Names::filter, false, String >, ILeaf< Names::calRegionFile, false, Vector< Path > >, ILeaf< Names::atmosphericAtt, false, double >, ILeaf< Names::beamDivergence, false, double >, ILeaf< Names::radioCal, false, CalibrationStats >, ILeaf< Names::splitByAttribute, false, String >, ILeaf< Names::maxSigma, false, float > > Options
Options of Module RadioCal.
Definition: IRadioCal.hpp:36
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
A group of options.
Definition: IOption.hpp:108
Performs radiometric calibration of ALS data and calculates physical quantities (backscatter cross se...
Definition: IRadioCal.hpp:44