File indexing completed on 2026-04-17 07:50:35
0001
0002
0003
0004 #pragma once
0005
0006 #include <podio/ObjectID.h>
0007
0008 namespace eicrecon {
0009
0010
0011
0012
0013
0014 template <typename T> struct CompareObjectID {
0015 bool operator()(const T& lhs, const T& rhs) const {
0016 if (lhs.getObjectID().collectionID == rhs.getObjectID().collectionID) {
0017 return (lhs.getObjectID().index < rhs.getObjectID().index);
0018 } else {
0019 return (lhs.getObjectID().collectionID < rhs.getObjectID().collectionID);
0020 }
0021 }
0022 };
0023
0024 }