An abstract class for interpolation function or interpolator that estimate coverages at non-observed times of a CoverageSeries. More...
#include <AbstractCoverageSeriesInterp.h>
  
 Public Member Functions | |
| virtual std::auto_ptr< Coverage > | estimate (const CoverageSeries &cvs, te::dt::DateTime *time) const =0 | 
| It estimates a coverage of a coverage series at a given non-observed time .  More... | |
| virtual  te::common::AbstractParameters *  | getParams ()=0 | 
| It gets the parameters associated to the interpolator.  More... | |
| virtual void | setParams (te::common::AbstractParameters *p)=0 | 
| It sets the parameters associated to the interpolator.  More... | |
| virtual | ~AbstractCoverageSeriesInterp () | 
| Virtual destructor.  More... | |
Protected Member Functions | |
| AbstractCoverageSeriesInterp () | |
| Constructor.  More... | |
An abstract class for interpolation function or interpolator that estimate coverages at non-observed times of a CoverageSeries.
This is an abstract class for every class that implements interpolation functions that estimate coverages at non-observaved times of a coverage series.
Definition at line 63 of file AbstractCoverageSeriesInterp.h.
      
  | 
  virtual | 
Virtual destructor.
Definition at line 34 of file AbstractCoverageSeriesInterp.cpp.
      
  | 
  protected | 
Constructor.
Definition at line 30 of file AbstractCoverageSeriesInterp.cpp.
      
  | 
  pure virtual | 
It estimates a coverage of a coverage series at a given non-observed time .
| cvs | A coverage series. | 
| time | The given non-observed time. | 
Implemented in te::st::NearestCoverageAtTimeInterp.
      
  | 
  pure virtual | 
It gets the parameters associated to the interpolator.
Implemented in te::st::NearestCoverageAtTimeInterp.
      
  | 
  pure virtual | 
It sets the parameters associated to the interpolator.
| p | The parameters to be associated to the interpolator. | 
Implemented in te::st::NearestCoverageAtTimeInterp.