CbmRoot
Loading...
Searching...
No Matches
LitCudaTrackParam.h
Go to the documentation of this file.
1/* Copyright (C) 2010-2011 GSI/JINR-LIT, Darmstadt/Dubna
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Andrey Lebedev [committer] */
4
5#ifndef LITCUDATRACKPARAM_H_
6#define LITCUDATRACKPARAM_H_ 1
7
8#include <iostream>
9
11 float X, Y, Z, Tx, Ty, Qp;
12
13 float C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, C11, C12, C13, C14;
14
15 friend std::ostream& operator<<(std::ostream& strm, const LitCudaTrackParam& par)
16 {
17 strm << "LitCudaTrackParam: "
18 << "X=" << par.X << " Y=" << par.Y << " Z=" << par.Z << " Tx=" << par.Tx << " Ty=" << par.Ty
19 << " Qp=" << par.Qp << std::endl;
20 return strm;
21 }
22};
23
24#endif
friend std::ostream & operator<<(std::ostream &strm, const LitCudaTrackParam &par)