SourceXtractorPlusPlus  0.10
Please provide a description of the project.
ExternalFlagPlugin.cpp
Go to the documentation of this file.
1 
17 /*
18  * ExternalFlag.cpp
19  *
20  * Created on: Aug 5, 2016
21  * Author: mschefer
22  */
23 
25 
28 
30 
31 namespace SourceXtractor {
32 
34 
37 
39  "isophotal_image_flags",
40  [](const ExternalFlag& prop){
41  return prop.getFlag();
42  },
43  "[]",
44  "Flags for the isophotal magnitude"
45  );
46 
48  "isophotal_image_flags_pixel_count",
49  [](const ExternalFlag& prop){
50  return prop.getCount();
51  },
52  "[]",
53  "Flags provided from input images"
54  );
55 
57 }
58 
60  return "";
61 }
62 
63 }
std::string
STL class.
StaticPlugin.h
SourceXtractor::ExternalFlagPlugin::registerPlugin
virtual void registerPlugin(PluginAPI &plugin_api) override
Definition: ExternalFlagPlugin.cpp:35
SourceXtractor::pixel_boundaries_plugin
static StaticPlugin< ExternalFlagPlugin > pixel_boundaries_plugin
Definition: ExternalFlagPlugin.cpp:33
ExternalFlag.h
ExternalFlagTaskFactory.h
SourceXtractor
Definition: Aperture.h:30
SourceXtractor::PluginAPI
This interface is given to the plugin to let it access object instances from the framework.
Definition: PluginAPI.h:39
SourceXtractor::ExternalFlagTaskFactory::propertyName
static const char propertyName[]
Definition: ExternalFlagTaskFactory.h:42
SourceXtractor::TaskFactoryRegistry::registerTaskFactory
void registerTaskFactory()
Definition: TaskFactoryRegistry.h:51
SourceXtractor::OutputRegistry::enableOutput
void enableOutput(std::string alias_name)
Definition: OutputRegistry.h:128
std::int64_t
SourceXtractor::ExternalFlagTaskFactory
Definition: ExternalFlagTaskFactory.h:39
SourceXtractor::ExternalFlag
Definition: ExternalFlag.h:46
SourceXtractor::PluginAPI::getOutputRegistry
virtual OutputRegistry & getOutputRegistry() const =0
SourceXtractor::PluginAPI::getTaskFactoryRegistry
virtual TaskFactoryRegistry & getTaskFactoryRegistry() const =0
SourceXtractor::ExternalFlagPlugin::getIdString
virtual std::string getIdString() const override
Definition: ExternalFlagPlugin.cpp:59
SourceXtractor::StaticPlugin
Used to register compile-time (static) plugins with the PluginManager.
Definition: StaticPlugin.h:38
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
ExternalFlagPlugin.h