// $Id: AliHLTTPCCATrackParam.cxx,v 1.6 2011/05/20 16:11:22 fisyak Exp $ // ************************************************************************** // This file is property of and copyright by the ALICE HLT Project * // ALICE Experiment at CERN, All rights reserved. * // * // Primary Authors: Sergey Gorbunov * // Ivan Kisel * // for The ALICE HLT Project. * // * // Developed by: Igor Kulakov * // Maksym Zyzak * // * // Permission to use, copy, modify and distribute this software and its * // documentation strictly for non-commercial purposes is hereby granted * // without fee, provided that the above copyright notice appears in all * // copies and that both the copyright notice and this permission notice * // appear in the supporting documentation. The authors make no claims * // about the suitability of this software for any purpose. It is * // provided "as is" without express or implied warranty. * // * //*************************************************************************** #include "AliHLTTPCCATrackParam.h" #include "AliHLTTPCCAMath.h" #include std::istream &operator>>( std::istream &in, AliHLTTPCCATrackParam &t ) { // TODO UNUSED_PARAM1(t); // in >> t.z; // for ( int i = 0; i < 5; i++ ) in >> t.Par(i); // for ( int i = 0; i < 15; i++ ) in >> t.Cov(i); return in; } std::ostream &operator<<( std::ostream &out, const AliHLTTPCCATrackParam &t ) { // TODO UNUSED_PARAM1(t); // out << t.X() << " " // << t.SignCosPhi() << " " // << t.Chi2() << " " // << t.NDF() // << '\n'; // for ( int i = 0; i < 5; i++ ) out << t.Par()[i] << " "; // out << '\n'; // for ( int i = 0; i < 15; i++ ) out << t.Cov()[i] << " "; // out << '\n'; return out; }