ATLAS Offline Software
Loading...
Searching...
No Matches
SpacePointHelpers.icc
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4#ifndef MUONSPACEPOINT_MUONSPACEPOINTHELPERS_ICC
5#define MUONSPACEPOINT_MUONSPACEPOINTHELPERS_ICC
6
7#include "MuonSpacePoint/SpacePointHelpers.h"
8
9#include <sstream>
10
11namespace MuonR4 {
12 template<Acts::Experimental::CompositeSpacePointContainer cont_t>
13 std::string print(const cont_t& container) {
14 std::stringstream sstr{};
15 unsigned idx{0};
16 sstr<<"Container has "<<container.size()<<" measurements:"<<std::endl;
17 for (const auto& sp : container) {
18 sstr<<" ***"<<(++idx)<<") "<<(*sp)<<std::endl;
19 }
20 return sstr.str();
21 }
22}
23
24#endif