diff --git a/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.cxx b/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.cxx
index 71aa8ee757f87f61c490b3d32681bf275535291e..e66c049af8e135b2e7574b062621d4127e924b34 100644
--- a/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.cxx
+++ b/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.cxx
@@ -176,9 +176,9 @@ StatusCode ParticleSelectionAlg::finalize()
 
 
 
-StatusCode ParticleSelectionAlg::beginRun()
+StatusCode ParticleSelectionAlg::start()
 {
-  ATH_MSG_DEBUG ("BeginRun " << name() << "...");
+  ATH_MSG_DEBUG ("start " << name() << "...");
 
   // Nothing to be done here, if cut-flow bookkeeping was not requested
   if (!m_doCutFlow){ return StatusCode::SUCCESS; }
diff --git a/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.h b/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.h
index bcc5633c1f60a992d423f3d1b97ae7db133ea4b1..3c17dd6afa9fcf8f431882e9f03b9b35816beb4b 100644
--- a/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.h
+++ b/PhysicsAnalysis/AnalysisCommon/EventUtils/src/ParticleSelectionAlg.h
@@ -52,17 +52,17 @@ class ParticleSelectionAlg
 
 
   /// Athena algorithm's initalize hook
-  virtual StatusCode  initialize();
+  virtual StatusCode  initialize() override;
 
   /// Athena algorithm's beginRun hook
   /// (called once before running over the events, after initialize)
-  virtual StatusCode  beginRun();
+  virtual StatusCode  start() override;
 
   /// Athena algorithm's execute hook
-  virtual StatusCode  execute();
+  virtual StatusCode  execute() override;
 
   /// Athena algorithm's finalize hook
-  virtual StatusCode  finalize();
+  virtual StatusCode  finalize() override;
 
 
  private: