SourceXtractorPlusPlus  0.15
Please provide a description of the project.
GrowthCurvePlugin.cpp
Go to the documentation of this file.
1 
24 
25 template <typename T>
27 
28 namespace SourceXtractor {
29 
31 
32 
34  return "GrowthCurvePlugin";
35 }
36 
39 
41  "flux_growth_step",
42  [](const GrowthCurveResampled& prop){
43  return prop.getStepSize();
44  },
45  "pixel",
46  "Growth curve step size"
47  );
49  "flux_growth",
50  [](const GrowthCurveResampled& prop) {
51  return prop.getSamples();
52  },
53  "count",
54  "Growth curve samples"
55  );
56 
57  plugin_api.getOutputRegistry().enableOutput<GrowthCurveResampled>("GrowthCurve");
58 }
59 
60 } // end of namespace SourceXtractor
SourceXtractor::growthcurve_plugin
static StaticPlugin< GrowthCurvePlugin > growthcurve_plugin
Definition: GrowthCurvePlugin.cpp:30
std::string
STL class.
Euclid::NdArray
SourceXtractor::GrowthCurvePlugin::getIdString
std::string getIdString() const override
Definition: GrowthCurvePlugin.cpp:33
StaticPlugin.h
SourceXtractor::GrowthCurvePlugin::registerPlugin
void registerPlugin(PluginAPI &plugin_api) override
Definition: GrowthCurvePlugin.cpp:37
GrowthCurveResampled.h
std::vector< double >
Euclid::NdArray::NdArray
SourceXtractor::GrowthCurveResampled
Definition: GrowthCurveResampled.h:31
SourceXtractor
Definition: Aperture.h:30
SourceXtractor::GrowthCurveTaskFactory
Definition: GrowthCurveTaskFactory.h:25
GrowthCurveTaskFactory.h
SourceXtractor::PluginAPI
This interface is given to the plugin to let it access object instances from the framework.
Definition: PluginAPI.h:39
SourceXtractor::TaskFactoryRegistry::registerTaskFactory
void registerTaskFactory()
Definition: TaskFactoryRegistry.h:51
Image.h
SourceXtractor::NdArray
Euclid::NdArray::NdArray< T > NdArray
Definition: VignetPlugin.h:37
GrowthCurve.h
SourceXtractor::GrowthCurve
Definition: GrowthCurve.h:30
GrowthCurvePlugin.h
SourceXtractor::PluginAPI::getOutputRegistry
virtual OutputRegistry & getOutputRegistry() const =0
SourceXtractor::PluginAPI::getTaskFactoryRegistry
virtual TaskFactoryRegistry & getTaskFactoryRegistry() const =0
SourceXtractor::StaticPlugin
Used to register compile-time (static) plugins with the PluginManager.
Definition: StaticPlugin.h:38
SourceXtractor::OutputRegistry::enableOutput
void enableOutput(std::string alias_name, bool configurable_output=false)
Definition: OutputRegistry.h:141
SourceXtractor::OutputRegistry::registerColumnConverter
void registerColumnConverter(std::string column_name, ColumnConverter< PropertyType, OutType > converter, std::string column_unit="", std::string column_description="")
Definition: OutputRegistry.h:46