Skip to content

Commit 6344432

Browse files
committed
further fixes
1 parent eee20c3 commit 6344432

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGDQ/Tasks/global-muon-matcher.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111
//
12-
/// \file global-muon-matcher.cxx // o2-linter: disable=name/file-cpp,name/workflow-file
12+
/// \file global-muon-matcher.cxx // o2-linter: disable=name/file-cpp,name/workflow-file (legacy workflow executable name)
1313
/// \brief Task for analysis MFT-MCH muon matching
1414
/// \author Andrea Ferrero
1515
///
@@ -1271,7 +1271,7 @@ struct GlobalMuonMatching {
12711271

12721272
std::vector<int64_t> taggedMuons;
12731273
getTaggedMuons(collisions, muonTracks, taggedMuons);
1274-
for (int64_t mchTrackIndex : taggedMuons) {
1274+
for (const auto& mchTrackIndex : taggedMuons) {
12751275
auto it = mMchTrackInfos.find(mchTrackIndex);
12761276
if (it != mMchTrackInfos.end()) {
12771277
it->second.isTagged = true;

0 commit comments

Comments
 (0)