Skip to content
Snippets Groups Projects
Commit db686055 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'naming.TrigEFMissingET-20181211' into 'master'

TrigEFMissingET: Comply with ATLAS naming convention.

See merge request atlas/athena!16676

Former-commit-id: c804e5d4
parents 8478bd71 6ea7de60
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 {
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;
}
......
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