From 9dabd26fcc0a6c21c150c8415d67781591c11b07 Mon Sep 17 00:00:00 2001
From: Andreas Salzburger <Andreas.Salzburger@cern.ch>
Date: Wed, 22 Feb 2017 10:35:31 +0100
Subject: [PATCH] add override final

---
 Core/include/ACTS/Digitization/CartesianSegmentation.hpp | 4 ++--
 Core/include/ACTS/Digitization/DigitizationModule.hpp    | 1 +
 Core/include/ACTS/Digitization/PlanarModuleCluster.hpp   | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/Core/include/ACTS/Digitization/CartesianSegmentation.hpp b/Core/include/ACTS/Digitization/CartesianSegmentation.hpp
index 3257e7167..eb7e0952b 100644
--- a/Core/include/ACTS/Digitization/CartesianSegmentation.hpp
+++ b/Core/include/ACTS/Digitization/CartesianSegmentation.hpp
@@ -104,12 +104,12 @@ public:
   /// return the surface bounds by reference
   /// specialization for Rectangle Bounds
   const PlanarBounds&
-  moduleBounds() const final;
+  moduleBounds() const final override;
 
   /// return the bin utility that defines the
   /// readout segmentation
   const BinUtility&
-  binUtility() const final;
+  binUtility() const final override;
 
 private:
   template <class T>
diff --git a/Core/include/ACTS/Digitization/DigitizationModule.hpp b/Core/include/ACTS/Digitization/DigitizationModule.hpp
index c780ebd39..dc35c38b1 100644
--- a/Core/include/ACTS/Digitization/DigitizationModule.hpp
+++ b/Core/include/ACTS/Digitization/DigitizationModule.hpp
@@ -61,6 +61,7 @@ public:
 
   /// Virtual Destructor
   virtual ~DigitizationModule() {}
+  
   /// Return the internal test segmentation surfaces to test between entry
   /// and exit given by their cell id's - the boundaries are not given
   ///
diff --git a/Core/include/ACTS/Digitization/PlanarModuleCluster.hpp b/Core/include/ACTS/Digitization/PlanarModuleCluster.hpp
index 220dd6a0c..0e2eeb743 100644
--- a/Core/include/ACTS/Digitization/PlanarModuleCluster.hpp
+++ b/Core/include/ACTS/Digitization/PlanarModuleCluster.hpp
@@ -64,7 +64,7 @@ public:
 
 private:
   std::vector<DigitizationCell> m_digitizationCells;  /// the digitization cells
-  std::vector<barcode_type>     m_barcodes;           /// barcode types
+  std::vector<barcode_type>     m_barcodes;           /// barcodes of particles 
 };
 
 inline const std::vector<DigitizationCell>&
-- 
GitLab