Skip to content
Snippets Groups Projects

CaloEvent: Add missing const qualifiers.

Merged Scott Snyder requested to merge ssnyder/athena:const.CaloEvent-20220111 into master
2 files
+ 6
6
Compare changes
  • Side-by-side
  • Inline
Files
2
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/
//Dear emacs, this is -*-c++-*-
@@ -180,9 +180,9 @@ class CaloCluster : public CaloCompositeKineBase,
MomentStoreIter operator--(int);
/*! \brief Equality comparator */
bool operator==(const MomentStoreIter& anOther);
bool operator==(const MomentStoreIter& anOther) const;
/*! \brief Inequality comparator */
bool operator!=(const MomentStoreIter& anOther);
bool operator!=(const MomentStoreIter& anOther) const;
/*! \brief Operator access to \a CaloClusterMoment */
const CaloClusterMoment& operator*() const;
Loading