diff --git a/Tracker/TrackerConditions/FaserSCT_ConditionsTools/src/FaserSCT_NoisyStripTool.cxx b/Tracker/TrackerConditions/FaserSCT_ConditionsTools/src/FaserSCT_NoisyStripTool.cxx
index 3110d8a08ea964448c45dd002958c1e198c82032..0e2b5c444a8839e0421a073fd79b0737a89ed635 100644
--- a/Tracker/TrackerConditions/FaserSCT_ConditionsTools/src/FaserSCT_NoisyStripTool.cxx
+++ b/Tracker/TrackerConditions/FaserSCT_ConditionsTools/src/FaserSCT_NoisyStripTool.cxx
@@ -21,7 +21,7 @@ StatusCode FaserSCT_NoisyStripTool::finalize() {
 
 
 std::map<std::pair<int, int>, double>
-FaserSCT_NoisyStripTool::getNoisyStrips(const EventContext& ctx) const {
+FaserSCT_NoisyStripTool::getNoisyStrips(const EventContext& /*ctx*/) const {
   // TODO fix hard-coded definition of noisy strip and read from NoisyPixels.xml database
   std::map<std::pair<int, int>, double> noisyStrips {};
   // noisyStrips.insert({std::make_pair(10, 150), 0.25279282895176935});
diff --git a/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerByteStreamCnv.h b/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerByteStreamCnv.h
index 77fae1331adba459e99f22bbbca6984388a6c048..86262fbc244530aecac352d968a13d54d0943728 100644
--- a/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerByteStreamCnv.h
+++ b/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerByteStreamCnv.h
@@ -41,11 +41,11 @@ public:
   static const CLID& classID();
   
 private:
+  ServiceHandle<IFaserROBDataProviderSvc> m_rdpSvc;
+  ServiceHandle<StoreGateSvc>             m_detStoreSvc;
   ToolHandle<TrackerDataDecoderTool>      m_tool;
   ToolHandle<ISCT_CableMappingTool>       m_mappingTool;
   ToolHandle<ISCT_NoisyStripTool>         m_noisyStripTool;
-  ServiceHandle<IFaserROBDataProviderSvc> m_rdpSvc;
-  ServiceHandle<StoreGateSvc>             m_detStoreSvc;
   const FaserSCT_ID*                      m_sctID{nullptr};
 };
 
diff --git a/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerDataDecoderTool.cxx b/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerDataDecoderTool.cxx
index 520bb5dbbc46e07001af6939edd9ff39f0a4afaa..612978a068a931bf4a85b267537d89b626ba53e5 100644
--- a/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerDataDecoderTool.cxx
+++ b/Tracker/TrackerEventCnv/TrackerByteStream/src/TrackerDataDecoderTool.cxx
@@ -45,7 +45,7 @@ TrackerDataDecoderTool::initialize()
 
   ATH_CHECK(detStore()->retrieve(m_sctID, "FaserSCT_ID"));
 
-  auto first_wafer = m_sctID->wafer_begin();
+  // auto first_wafer = m_sctID->wafer_begin();
   // m_trb0Station = m_sctID->station(*first_wafer);
 
   m_sctContext = m_sctID->wafer_context();
diff --git a/Tracker/TrackerRecAlgs/FaserSpacePoints/python/FaserSpacePointsConfig.py b/Tracker/TrackerRecAlgs/FaserSpacePoints/python/FaserSpacePointsConfig.py
index 36a2008a833453937a2adf9c4c1c2f3d81525362..7fa948ab3072fbbd11340eafb6c6c59cd92595dc 100644
--- a/Tracker/TrackerRecAlgs/FaserSpacePoints/python/FaserSpacePointsConfig.py
+++ b/Tracker/TrackerRecAlgs/FaserSpacePoints/python/FaserSpacePointsConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2021 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentFactory import CompFactory
diff --git a/Tracker/TrackerRecAlgs/MCEvents/python/MCEventsConfig.py b/Tracker/TrackerRecAlgs/MCEvents/python/MCEventsConfig.py
index 87fabb5738421fa804d7b6eced90c6a074a3829c..215d7a0ba1b878434beeb126931b32d832699155 100644
--- a/Tracker/TrackerRecAlgs/MCEvents/python/MCEventsConfig.py
+++ b/Tracker/TrackerRecAlgs/MCEvents/python/MCEventsConfig.py
@@ -1,3 +1,6 @@
+"""
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
+"""
 from AthenaConfiguration.ComponentFactory import CompFactory
 from FaserSCT_GeoModel.FaserSCT_GeoModelConfig import FaserSCT_GeometryCfg
 
diff --git a/Tracker/TrackerRecAlgs/MyExtrapolationExample/python/MyExtrapolationExampleConfig.py b/Tracker/TrackerRecAlgs/MyExtrapolationExample/python/MyExtrapolationExampleConfig.py
index 6c2738946d33457377968f29831b007461af969e..d87ae7f5973b3f69dc4206fbb0cc5830f64344ae 100644
--- a/Tracker/TrackerRecAlgs/MyExtrapolationExample/python/MyExtrapolationExampleConfig.py
+++ b/Tracker/TrackerRecAlgs/MyExtrapolationExample/python/MyExtrapolationExampleConfig.py
@@ -1,3 +1,7 @@
+"""
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
+"""
+
 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
 from AthenaConfiguration.ComponentFactory import CompFactory
 from FaserSCT_GeoModel.FaserSCT_GeoModelConfig import FaserSCT_GeometryCfg
diff --git a/Tracker/TrackerRecAlgs/NoisyStripFinder/python/NoisyStripFinderConfig.py b/Tracker/TrackerRecAlgs/NoisyStripFinder/python/NoisyStripFinderConfig.py
index 5e94a1fb0e944666f4f245e8f47bc1100fcd6929..b408cb0e0d8c255833b5e51d47dafe461012a48b 100644
--- a/Tracker/TrackerRecAlgs/NoisyStripFinder/python/NoisyStripFinderConfig.py
+++ b/Tracker/TrackerRecAlgs/NoisyStripFinder/python/NoisyStripFinderConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2021 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentFactory import CompFactory
diff --git a/Tracker/TrackerRecAlgs/TrackCounts/python/TrackCountsConfig.py b/Tracker/TrackerRecAlgs/TrackCounts/python/TrackCountsConfig.py
index 934579044bcf3cd9d731f4199ed374cda045aebf..da136d0381b211477497550e2072cae6fec029d9 100644
--- a/Tracker/TrackerRecAlgs/TrackCounts/python/TrackCountsConfig.py
+++ b/Tracker/TrackerRecAlgs/TrackCounts/python/TrackCountsConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2021 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentFactory import CompFactory
diff --git a/Tracker/TrackerRecAlgs/TrackSeedPerformanceWriter/python/TrackSeedPerformanceWriterConfig.py b/Tracker/TrackerRecAlgs/TrackSeedPerformanceWriter/python/TrackSeedPerformanceWriterConfig.py
index f8b0eca720b42ed668d7918bac86569007f4d68f..7e064cf0c8a8247426d4f7d613d33e6b8c88626e 100644
--- a/Tracker/TrackerRecAlgs/TrackSeedPerformanceWriter/python/TrackSeedPerformanceWriterConfig.py
+++ b/Tracker/TrackerRecAlgs/TrackSeedPerformanceWriter/python/TrackSeedPerformanceWriterConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2022 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentFactory import CompFactory
diff --git a/Tracker/TrackerRecAlgs/TrackerClusterFit/python/TrackerClusterFitConfig.py b/Tracker/TrackerRecAlgs/TrackerClusterFit/python/TrackerClusterFitConfig.py
index 19fb699dae47f023b5a20665461f2cfe3a3510d6..61d1927154c731009a78be77a8c3b2431ae00871 100644
--- a/Tracker/TrackerRecAlgs/TrackerClusterFit/python/TrackerClusterFitConfig.py
+++ b/Tracker/TrackerRecAlgs/TrackerClusterFit/python/TrackerClusterFitConfig.py
@@ -1,6 +1,5 @@
 """Define methods to construct configured SCT Cluster Fit tools and algorithms
-
-Copyright (C) 2021 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 from AthenaConfiguration.ComponentFactory import CompFactory
 from FaserSCT_GeoModel.FaserSCT_GeoModelConfig import FaserSCT_GeometryCfg
diff --git a/Tracker/TrackerRecAlgs/TrackerData/python/TrackerSegmentFitDataConfig.py b/Tracker/TrackerRecAlgs/TrackerData/python/TrackerSegmentFitDataConfig.py
index 74497753353d66363d6c09ba12cb9a4c899351ad..cb46c5d7a8b748375ffcdca1178b2aa8ef3bdd3e 100644
--- a/Tracker/TrackerRecAlgs/TrackerData/python/TrackerSegmentFitDataConfig.py
+++ b/Tracker/TrackerRecAlgs/TrackerData/python/TrackerSegmentFitDataConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2022 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentFactory import CompFactory
diff --git a/Tracker/TrackerRecAlgs/TrackerSPFit/src/TrackerSPFit.cxx b/Tracker/TrackerRecAlgs/TrackerSPFit/src/TrackerSPFit.cxx
index 6902a70138cdad5f8957f0f7e0886d36e6d8213e..e78f7a8c5b72a0ad06d4b360388b3a35f995392b 100755
--- a/Tracker/TrackerRecAlgs/TrackerSPFit/src/TrackerSPFit.cxx
+++ b/Tracker/TrackerRecAlgs/TrackerSPFit/src/TrackerSPFit.cxx
@@ -1,6 +1,6 @@
 /*
-   Copyright (C) 2002-2021 ChRN for the benefit of the ATLAS collaboration
-   */
+   Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
+*/
 
 /***************************************************************************
   -------------------
diff --git a/Tracker/TrackerRecAlgs/TrackerSegmentFit/python/TrackerSegmentFitConfig.py b/Tracker/TrackerRecAlgs/TrackerSegmentFit/python/TrackerSegmentFitConfig.py
index 1ac1f94d55b030b729a1fc1f000142f275d127fb..f0de1582f2ccf47270203d4d1d6eb9a6bca341e9 100644
--- a/Tracker/TrackerRecAlgs/TrackerSegmentFit/python/TrackerSegmentFitConfig.py
+++ b/Tracker/TrackerRecAlgs/TrackerSegmentFit/python/TrackerSegmentFitConfig.py
@@ -1,6 +1,5 @@
 """Define methods to construct configured SCT Cluster Fit tools and algorithms
-
-Copyright (C) 2021 CERN for the benefit of the FASER collaboration
+Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 from AthenaConfiguration.ComponentFactory import CompFactory
 from FaserSCT_GeoModel.FaserSCT_GeoModelConfig import FaserSCT_GeometryCfg
diff --git a/Tracker/TrackerRecAlgs/TrackerTruth/python/TrackerTruthConfig.py b/Tracker/TrackerRecAlgs/TrackerTruth/python/TrackerTruthConfig.py
index 475e7ba6f60844cdea8c4b5da0ef4f43da70d2f5..92f56a8edc34c173636f16fb9162c8ab17d8850f 100644
--- a/Tracker/TrackerRecAlgs/TrackerTruth/python/TrackerTruthConfig.py
+++ b/Tracker/TrackerRecAlgs/TrackerTruth/python/TrackerTruthConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2022 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentFactory import CompFactory
diff --git a/Tracking/Acts/FaserActsGeometry/python/FaserActsMaterialMapping_jobOptions.py b/Tracking/Acts/FaserActsGeometry/python/FaserActsMaterialMapping_jobOptions.py
index 6466848fb515373c2b33bd8c0978d4f162e053bb..095edc7648474af1510d8c1f1174f8c955eccaa8 100644
--- a/Tracking/Acts/FaserActsGeometry/python/FaserActsMaterialMapping_jobOptions.py
+++ b/Tracking/Acts/FaserActsGeometry/python/FaserActsMaterialMapping_jobOptions.py
@@ -1,4 +1,6 @@
-# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS and FASER collaborations
+"""
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
+"""
 
 ###############################################################
 #
diff --git a/Tracking/Acts/FaserActsKalmanFilter/python/CKF2Config.py b/Tracking/Acts/FaserActsKalmanFilter/python/CKF2Config.py
index b0e1f575cb8fb9914fd2561eec19ec3d35841a1c..ea2dc0cb9eb08c309bf0453216230fe0b2074b4f 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/python/CKF2Config.py
+++ b/Tracking/Acts/FaserActsKalmanFilter/python/CKF2Config.py
@@ -1,4 +1,6 @@
-# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS and FASER collaborations
+"""
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
+"""
 
 from FaserSCT_GeoModel.FaserSCT_GeoModelConfig import FaserSCT_GeometryCfg
 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
diff --git a/Tracking/Acts/FaserActsKalmanFilter/python/FaserActsKalmanFilterConfig.py b/Tracking/Acts/FaserActsKalmanFilter/python/FaserActsKalmanFilterConfig.py
index cc44658845f4202f7295faf93de273cee776c552..a2ad7705968c54771f72345dfb56c82e9f03a8c4 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/python/FaserActsKalmanFilterConfig.py
+++ b/Tracking/Acts/FaserActsKalmanFilter/python/FaserActsKalmanFilterConfig.py
@@ -1,10 +1,11 @@
-# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS and FASER collaborations
+"""
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
+"""
 
-from math import pi
 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
 from AthenaConfiguration.ComponentFactory import CompFactory
 from OutputStreamAthenaPool.OutputStreamConfig import OutputStreamCfg
-from MagFieldServices.MagFieldServicesConfig import MagneticFieldSvcCfg
+# from MagFieldServices.MagFieldServicesConfig import MagneticFieldSvcCfg
 
 # FaserActsKalmanFilterAlg,FaserActsTrackingGeometrySvc, FaserActsTrackingGeometryTool, FaserActsExtrapolationTool,FaserActsAlignmentCondAlg, THistSvc = CompFactory.getComps("FaserActsKalmanFilterAlg","FaserActsTrackingGeometrySvc", "FaserActsTrackingGeometryTool", "FaserActsExtrapolationTool","FaserActsAlignmentCondAlg", "THistSvc")
 #
@@ -90,7 +91,7 @@ def FaserActsKalmanFilterCfg(flags, **kwargs):
     sigma_loc1 = 9e-1
     sigma_phi = 3.3e-2
     sigma_theta = 2.9e-4
-    sigma_p_rel = 0.1
+    # sigma_p_rel = 0.1
     p = 1
     sigma_qop = 0.1 * p / (p * p)
     initial_variance_inflation = [100, 100, 1000, 1000, 1000]
diff --git a/Tracking/Acts/FaserActsKalmanFilter/python/GhostBustersConfig.py b/Tracking/Acts/FaserActsKalmanFilter/python/GhostBustersConfig.py
index cd07ccd71e798da0f7668f3f4c8512956f17683d..ebe56d179393fcf3f51cb8df510271fbf5a85ebe 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/python/GhostBustersConfig.py
+++ b/Tracking/Acts/FaserActsKalmanFilter/python/GhostBustersConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2022 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
@@ -28,8 +28,8 @@ def GhostBustersCfg(flags, **kwargs):
     acc.addEventAlgo(CompFactory.GhostBusters(**kwargs))
     acc.merge(GhostBusters_OutputCfg(flags))
 
-    thistSvc = CompFactory.THistSvc()
-    thistSvc.Output += ["HIST2 DATAFILE='GhostBusters.root' OPT='RECREATE'"]
-    acc.addService(thistSvc)
+    # thistSvc = CompFactory.THistSvc()
+    # thistSvc.Output += ["HIST2 DATAFILE='GhostBusters.root' OPT='RECREATE'"]
+    # acc.addService(thistSvc)
 
     return acc
diff --git a/Tracking/Acts/FaserActsKalmanFilter/python/SeedingConfig.py b/Tracking/Acts/FaserActsKalmanFilter/python/SeedingConfig.py
index e9b200ccb1e8c209bb1b27cb1555e8b8b27ec7bc..e6a84e5b48f6886a0935e6665f4827db55eba958 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/python/SeedingConfig.py
+++ b/Tracking/Acts/FaserActsKalmanFilter/python/SeedingConfig.py
@@ -1,5 +1,5 @@
 """
-Copyright (C) 2022 CERN for the benefit of the FASER collaboration
+    Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
 """
 
 from AthenaConfiguration.ComponentFactory import CompFactory
diff --git a/Tracking/Acts/FaserActsKalmanFilter/src/CircleFitTrackSeedTool.cxx b/Tracking/Acts/FaserActsKalmanFilter/src/CircleFitTrackSeedTool.cxx
index f6e1e274794e339f51cecc5d5a0dab6cf6dea789..18499e4964e49ebf4ef041a870125bdae2d2d694 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/src/CircleFitTrackSeedTool.cxx
+++ b/Tracking/Acts/FaserActsKalmanFilter/src/CircleFitTrackSeedTool.cxx
@@ -214,7 +214,7 @@ void CircleFitTrackSeedTool::go(const std::array<std::vector<Segment>, 4> &v,
     seeds.push_back(Seed(combination));
     return;
   }
-  for (int i = offset; i < v.size() + 1 - k; ++i) {
+  for (std::size_t i = offset; i < v.size() + 1 - k; ++i) {
     for (const auto& ve : v[i]) {
       combination.push_back(ve);
       go(v, combination, seeds, i+1, k-1);
diff --git a/Tracking/Acts/FaserActsKalmanFilter/src/ResPlotTool.cxx b/Tracking/Acts/FaserActsKalmanFilter/src/ResPlotTool.cxx
index 11c1483a7762679e42ce41542d1a5b165aaf4f0c..47922a13e99abca49446668f9f8c180a86ebecdf 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/src/ResPlotTool.cxx
+++ b/Tracking/Acts/FaserActsKalmanFilter/src/ResPlotTool.cxx
@@ -119,7 +119,7 @@ void ResPlotTool::clear(ResPlotCache &resPlotCache) const {
 }
 
 void ResPlotTool::fill(
-    ResPlotCache& resPlotCache, const Acts::GeometryContext& gctx,
+    ResPlotCache& resPlotCache, const Acts::GeometryContext& /*gctx*/,
     std::unique_ptr<const Acts::BoundTrackParameters> truthParameters,
     const Acts::BoundTrackParameters& fittedParameters) const {
   using ParametersVector = Acts::BoundTrackParameters::ParametersVector;
diff --git a/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectoryStatesWriterTool.cxx b/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectoryStatesWriterTool.cxx
index a722b19435dd9304e08353ce4ef8b31efa663ec0..5378fc080cb49628248d4a7eda2e9206d6c016ba 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectoryStatesWriterTool.cxx
+++ b/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectoryStatesWriterTool.cxx
@@ -280,8 +280,8 @@ StatusCode RootTrajectoryStatesWriterTool::write(const Acts::GeometryContext& gc
       m_nStates = trajState.nStates;
 
       // Get the majority truth particle to this track
-      int barcode = NaNfloat;
-      int truthQ = NaNfloat;
+      int barcode = NaNint;
+      int truthQ = NaNint;
       float truthMomentum = NaNfloat;
       float truthLOC0 = NaNfloat;
       float truthLOC1 = NaNfloat;
@@ -535,7 +535,7 @@ StatusCode RootTrajectoryStatesWriterTool::write(const Acts::GeometryContext& gc
                 m_err_y_hit.push_back(NaNfloat);
                 m_pull_x_hit.push_back(NaNfloat);
                 m_pull_y_hit.push_back(NaNfloat);
-                m_dim_hit.push_back(NaNfloat);
+                m_dim_hit.push_back(NaNint);
               }
               // push default values if no track parameters
               // m_eLOC0[ipar].push_back(NaNfloat);
@@ -596,7 +596,7 @@ StatusCode RootTrajectoryStatesWriterTool::write(const Acts::GeometryContext& gc
               m_err_y_hit.push_back(NaNfloat);
               m_pull_x_hit.push_back(NaNfloat);
               m_pull_y_hit.push_back(NaNfloat);
-              m_dim_hit.push_back(NaNfloat);
+              m_dim_hit.push_back(NaNint);
             }
             // push default values if no track parameters
             m_eLOC0[ipar].push_back(NaNfloat);
diff --git a/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectorySummaryWriterTool.cxx b/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectorySummaryWriterTool.cxx
index e6afe3a77cf95528ac17d94b89c019048a7876a8..76d76029674dcccbe48c41f5cf31b82b7292ba1b 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectorySummaryWriterTool.cxx
+++ b/Tracking/Acts/FaserActsKalmanFilter/src/RootTrajectorySummaryWriterTool.cxx
@@ -253,7 +253,7 @@ StatusCode RootTrajectorySummaryWriterTool::write(
               continue;
             }
             // Get the truth particle info at vertex
-            const HepMC::GenVertex* vertex = particle->production_vertex();
+            // const HepMC::GenVertex* vertex = particle->production_vertex();
             t_p = truthParameters->momentum().mag();
             t_charge = truthParameters->charge();
             t_time = truthParameters->time();
diff --git a/Tracking/Acts/FaserActsKalmanFilter/src/SeedingAlg.cxx b/Tracking/Acts/FaserActsKalmanFilter/src/SeedingAlg.cxx
index 0d48e4a63c750462180753e9efb39f06d15e4641..5325703b0ba3599a1fdcdafb350850ddc621c555 100644
--- a/Tracking/Acts/FaserActsKalmanFilter/src/SeedingAlg.cxx
+++ b/Tracking/Acts/FaserActsKalmanFilter/src/SeedingAlg.cxx
@@ -11,7 +11,7 @@ StatusCode SeedingAlg::initialize() {
 
 
 StatusCode SeedingAlg::execute() {
-  const EventContext& ctx = Gaudi::Hive::currentContext();
+  // const EventContext& ctx = Gaudi::Hive::currentContext();
   ATH_CHECK(m_trackSeedTool->run());
   return StatusCode::SUCCESS;
 }