Skip to content
Snippets Groups Projects
Commit 6ea7de60 authored by scott snyder's avatar scott snyder
Browse files

TrigEFMissingET: Comply with ATLAS naming convention.

Function parameters should not start with m_.



Former-commit-id: b33ac237
parent b4df726f
No related branches found
No related tags found
No related merge requests found
/* /*
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 { ...@@ -31,8 +31,8 @@ namespace {
float pt() { return sqrt(px*px+py*py); } float pt() { return sqrt(px*px+py*py); }
float cosPhi() { return pt() > 0 ? px/pt() : 1.; } float cosPhi() { return pt() > 0 ? px/pt() : 1.; }
float sinPhi() { return pt() > 0 ? py/pt() : 0.; } float sinPhi() { return pt() > 0 ? py/pt() : 0.; }
Tower& operator=(bool m_saveuncalibrated) { Tower& operator=(bool saveuncalibrated) {
if(m_saveuncalibrated) m_clusterstate = xAOD::CaloCluster::UNCALIBRATED; if(saveuncalibrated) m_clusterstate = xAOD::CaloCluster::UNCALIBRATED;
else m_clusterstate = xAOD::CaloCluster::CALIBRATED; else m_clusterstate = xAOD::CaloCluster::CALIBRATED;
return *this; return *this;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment