ATLAS Offline Software
Loading...
Searching...
No Matches
TrackParticle.cxx File Reference
#include "Particle/TrackParticle.h"
#include "TrkEventPrimitives/ParamDefs.h"
#include "TrkEventPrimitives/ParticleHypothesis.h"
#include "GaudiKernel/MsgStream.h"
#include <sstream>
Include dependency graph for TrackParticle.cxx:

Go to the source code of this file.

Namespaces

namespace  Rec
 Gaudi Tools.

Functions

MsgStream & operator<< (MsgStream &sl, const Rec::TrackParticle &trackParticle)
 Overload of << operator for MsgStream for debug output.
std::ostream & operator<< (std::ostream &sl, const Rec::TrackParticle &trackParticle)
 Overload of << operator for std::ostream for debug output.

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & sl,
const Rec::TrackParticle & trackParticle )

Overload of << operator for MsgStream for debug output.

Definition at line 250 of file TrackParticle.cxx.

251 {
252 trackParticle.dump(sl);
253 return sl;
254 }
virtual MsgStream & dump(MsgStream &out) const
Dump methods to be used by the overloaded stream operator (inheritance!)

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & sl,
const Rec::TrackParticle & trackParticle )

Overload of << operator for std::ostream for debug output.

Definition at line 256 of file TrackParticle.cxx.

257 {
258 trackParticle.dump(sl);
259 return sl;
260 }