diff --git a/Modules/include/StatusAggregator.h b/Modules/include/StatusAggregator.h index abef317792baa87b16b4864777e7045ca5e051c6..a952112a7569e118c111ed779bfab720424935d2 100644 --- a/Modules/include/StatusAggregator.h +++ b/Modules/include/StatusAggregator.h @@ -9,7 +9,7 @@ #include <vector> #include <string> -namespace ChimeraTK{ +namespace ChimeraTK { /** * The StatusAggregator collects results of multiple StatusMonitor instances @@ -21,26 +21,25 @@ namespace ChimeraTK{ * included in the scope (ModuleGroup, Application, ...) of interest. */ class StatusAggregator : public ApplicationModule { - public: - + public: StatusAggregator(EntityOwner* owner, const std::string& name, const std::string& description, - const std::string& output, - HierarchyModifier modifier, const std::unordered_set<std::string>& tags = {}) - : ApplicationModule(owner, name, description, modifier, tags), status(this, output, "", "", {}) { + const std::string& output, HierarchyModifier modifier, const std::unordered_set<std::string>& tags = {}) + : ApplicationModule(owner, name, description, modifier, tags), status(this, output, "", "", {}) { populateStatusInput(); } - ~StatusAggregator() override {} + StatusAggregator() = default; + StatusAggregator(StatusAggregator&&) = default; - protected: + ~StatusAggregator() override {} + protected: void mainLoop() override { - std::cout << "Entered StatusAggregator::mainLoop()" << std::endl; -// while(true){ -// // Status collection goes here -// } + // while(true){ + // // Status collection goes here + // } } /// Recursivly search for StatusMonitors and other StatusAggregators @@ -53,11 +52,10 @@ namespace ChimeraTK{ std::vector<ScalarPushInput<uint16_t>> statusInput; //TODO Also provide this for the aggregator? -// /** Disable the monitor. The status will always be OFF. You don't have to connect this input. -// * When there is no feeder, ApplicationCore will connect it to a constant feeder with value 0, hence the monitor is always enabled. -// */ -// ScalarPushInput<int> disable{this, "disable", "", "Disable the status monitor"}; - + // /** Disable the monitor. The status will always be OFF. You don't have to connect this input. + // * When there is no feeder, ApplicationCore will connect it to a constant feeder with value 0, hence the monitor is always enabled. + // */ + // ScalarPushInput<int> disable{this, "disable", "", "Disable the status monitor"}; }; } // namespace ChimeraTK