Skip to content
Snippets Groups Projects
Commit ae6f004f authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'master-InDetPerformanceMonitoring-v2' into 'master'

Remove unnecessary mutable keyword in IDPerfMonZmumu and IDPerfMuonRefitter.

See merge request atlas/athena!34299
parents a2169c2b f66f4446
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef IDPERFMON_ZMUMU_H
......@@ -94,9 +94,9 @@ class IDPerfMonZmumu : public AthAlgorithm
TTree* m_combStacoTree;
TTree* m_combMuidTree;
mutable unsigned int m_runNumber{};
mutable unsigned int m_evtNumber{};
mutable unsigned int m_lumi_block{};
unsigned int m_runNumber{};
unsigned int m_evtNumber{};
unsigned int m_lumi_block{};
double m_positive_px{};
double m_positive_py{};
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/
#ifndef IDPerfMuonRefitterTER_H
......@@ -43,9 +43,9 @@ class IDPerfMuonRefitter : public AthAlgorithm
std::string m_outputTracksName;
mutable int m_N_Muons;
mutable int m_N_MuonsRefit;
mutable int m_N_MuonRefitFailures;
int m_N_Muons;
int m_N_MuonsRefit;
int m_N_MuonRefitFailures;
PerfMonServices::CONTAINERS m_container;
......
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