Skip to content
Snippets Groups Projects
Commit 8d8c466d authored by cont-integration's avatar cont-integration
Browse files

[skip ci] applied clang format

parent 3de00b4e
No related branches found
No related tags found
1 merge request!448Draft: Resolve "Implementation of new nodes creation"
Pipeline #20418 skipped
...@@ -135,10 +135,10 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce ...@@ -135,10 +135,10 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce
ProfilingUnit profiling_capture_, profiling_kf_; ProfilingUnit profiling_capture_, profiling_kf_;
public: public:
void startCaptureProfiling(); void startCaptureProfiling();
void stopCaptureProfiling(); void stopCaptureProfiling();
void startKFProfiling(); void startKFProfiling();
void stopKFProfiling(); void stopKFProfiling();
virtual void printProfiling(std::ostream& stream = std::cout) const; virtual void printProfiling(std::ostream& stream = std::cout) const;
/** \brief constructor /** \brief constructor
......
...@@ -189,7 +189,7 @@ class ProcessorTracker : public ProcessorBase ...@@ -189,7 +189,7 @@ class ProcessorTracker : public ProcessorBase
* - initializing counters, flags, or any derived variables * - initializing counters, flags, or any derived variables
* - initializing algorithms needed for processing the derived data * - initializing algorithms needed for processing the derived data
*/ */
virtual void preProcess() {}; virtual void preProcess(){};
/** Post-process /** Post-process
* *
...@@ -201,7 +201,7 @@ class ProcessorTracker : public ProcessorBase ...@@ -201,7 +201,7 @@ class ProcessorTracker : public ProcessorBase
* - resetting and/or clearing variables and/or algorithms at the end of processing * - resetting and/or clearing variables and/or algorithms at the end of processing
* - drawing / printing / logging the results of the processing * - drawing / printing / logging the results of the processing
*/ */
virtual void postProcess() {}; virtual void postProcess(){};
/** \brief Tracker function /** \brief Tracker function
* \return The number of successful tracks. * \return The number of successful tracks.
...@@ -387,7 +387,7 @@ inline unsigned int ProcessorTracker::processNewProfiling(const int& _max_featur ...@@ -387,7 +387,7 @@ inline unsigned int ProcessorTracker::processNewProfiling(const int& _max_featur
process_new_profiling_.startProfiling(); process_new_profiling_.startProfiling();
auto result = processNew(_max_features); auto result = processNew(_max_features);
process_new_profiling_.stopProfiling(); process_new_profiling_.stopProfiling();
return result; return result;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment