From b33ac2376e65eb395f3a54064b07395185a3963e Mon Sep 17 00:00:00 2001
From: scott snyder <snyder@bnl.gov>
Date: Tue, 11 Dec 2018 11:27:54 +0100
Subject: [PATCH] TrigEFMissingET: Comply with ATLAS naming convention.

Function parameters should not start with m_.
---
 .../src/EFMissingETFromClustersTracksPUC.cxx                | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromClustersTracksPUC.cxx b/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromClustersTracksPUC.cxx
index 8503a1cfb7d..70bdb62973d 100644
--- a/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromClustersTracksPUC.cxx
+++ b/Trigger/TrigAlgorithms/TrigEFMissingET/src/EFMissingETFromClustersTracksPUC.cxx
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
 */
 
 /********************************************************************
@@ -31,8 +31,8 @@ namespace {
     float pt() { return sqrt(px*px+py*py); }
     float cosPhi() { return pt() > 0 ? px/pt() : 1.; }
     float sinPhi() { return pt() > 0 ? py/pt() : 0.; }
-    Tower& operator=(bool m_saveuncalibrated) {
-      if(m_saveuncalibrated) m_clusterstate = xAOD::CaloCluster::UNCALIBRATED;
+    Tower& operator=(bool saveuncalibrated) {
+      if(saveuncalibrated) m_clusterstate = xAOD::CaloCluster::UNCALIBRATED;
       else m_clusterstate = xAOD::CaloCluster::CALIBRATED;
       return *this;
     }
-- 
GitLab