SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
GrowthCurveResampledTask.h
Go to the documentation of this file.
1
17
18#ifndef _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVERESAMPLEDTASK_H_
19#define _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVERESAMPLEDTASK_H_
20
22
23namespace SourceXtractor {
24
26public:
27 virtual ~GrowthCurveResampledTask() = default;
28
29 GrowthCurveResampledTask(const std::vector<unsigned>& instances, size_t nsamples);
30
31 void computeProperties(SourceInterface& source) const override;
32
33private:
35 size_t m_nsamples;
36};
37
38} // end of namespace SourceXtractor
39
40#endif /* _SEIMPLEMENTATION_PLUGIN_GROWTHCURVE_GROWTHCURVERESAMPLEDTASK_H_ */
void computeProperties(SourceInterface &source) const override
Computes one or more properties for the Source.
GrowthCurveResampledTask(const std::vector< unsigned > &instances, size_t nsamples)
The SourceInterface is an abstract "source" that has properties attached to it.
A Task that acts on a Source to compute one or more properties.
Definition SourceTask.h:36