EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Extent.cpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Extent.cpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2020 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
10 
11 #include <ostream>
12 
13 std::ostream& Acts::Extent::toStream(std::ostream& sl) const {
14  sl << "Extent in space : " << std::endl;
15  for (size_t ib = 0; ib < static_cast<size_t>(binValues); ++ib) {
16  sl << " - value :" << std::setw(10) << binningValueNames[ib]
17  << " | range = [" << ranges[ib].first << ", " << ranges[ib].second << "]"
18  << std::endl;
19  }
20  return sl;
21 }
22 
23 // Overload of << operator for std::ostream for debug output
24 std::ostream& Acts::operator<<(std::ostream& sl, const Extent& ext) {
25  return ext.toStream(sl);
26 }