2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
5 /// Helpers for overlaying Identifiable Containers
6 /// @author Tadej Novak
13 template <class IDC_Container>
14 std::string debugPrint(const IDC_Container *container,
17 std::ostringstream os;
19 for (unsigned i = 0; i < maxprint; i++) {
20 auto p = container->indexFindPtr(i);
22 os << " " << p->size();
33 } // namespace Overlay