2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
4#ifndef MUONSPACEPOINT_MUONSPACEPOINTHELPERS_ICC
5#define MUONSPACEPOINT_MUONSPACEPOINTHELPERS_ICC
7#include "MuonSpacePoint/SpacePointHelpers.h"
12 template<Acts::Experimental::CompositeSpacePointContainer cont_t>
13 std::string print(const cont_t& container) {
14 std::stringstream sstr{};
16 sstr<<"Container has "<<container.size()<<" measurements:"<<std::endl;
17 for (const auto& sp : container) {
18 sstr<<" ***"<<(++idx)<<") "<<(*sp)<<std::endl;