Skip to content
Snippets Groups Projects
Commit f66f4446 authored by Susumu Oda's avatar Susumu Oda
Browse files

Remove unnecessary mutable keyword in IDPerfMonZmumu and IDPerfMuonRefitter.

parent bfcbebae
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