Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PrintParameters.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PrintParameters.hpp
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 
9 #pragma once
10 
13 
14 #include <cstdint>
15 #include <iosfwd>
16 
17 namespace Acts {
18 
19 class Surface;
20 
21 namespace detail {
22 
29 void printBoundParameters(std::ostream& os, const Surface& surface,
30  const BoundVector& params,
31  const BoundSquareMatrix* cov = nullptr);
32 
38 void printFreeParameters(std::ostream& os, const FreeVector& params,
39  const FreeMatrix* cov = nullptr);
40 
48 void printMeasurement(std::ostream& os, BoundIndices size,
49  const uint8_t* indices, const ActsScalar* params,
50  const ActsScalar* cov);
51 
59 void printMeasurement(std::ostream& os, FreeIndices size,
60  const uint8_t* indices, const ActsScalar* params,
61  const ActsScalar* cov);
62 
63 } // namespace detail
64 } // namespace Acts