From f8c905985cceec7633cdc77604a92346cbadae03 Mon Sep 17 00:00:00 2001 From: Bohdan Dudar Date: Mon, 11 Oct 2021 15:48:00 +0200 Subject: [PATCH] Docstring comment cleanup --- TimeOfFlight/include/TOFEstimators.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/TimeOfFlight/include/TOFEstimators.h b/TimeOfFlight/include/TOFEstimators.h index 5fb9d4d6..1b5a82dd 100644 --- a/TimeOfFlight/include/TOFEstimators.h +++ b/TimeOfFlight/include/TOFEstimators.h @@ -14,16 +14,14 @@ Marlin processor that calculates harmonic mean momentum, track length and time-o class TOFEstimators : public marlin::Processor { public: /** - Copy constructor . + Copy constructor. We remove it to avoid W-effc++ warnings. - Copying objects with pointer members is a bad idea. */ TOFEstimators(const TOFEstimators&) = delete; /** Copy assignment operator. We remove it to avoid W-effc++ warnings. - Copying objects with pointer members is a bad idea. */ TOFEstimators& operator=(const TOFEstimators&) = delete;