#include "SimDataFormats/Track/interface/CoreSimTrack.h"
#include <iosfwd>
Go to the source code of this file.
Classes | |
class | SimTrack |
Functions | |
std::ostream & | operator<< (std::ostream &o, const SimTrack &t) |
std::ostream& operator<< | ( | std::ostream & | o, | |
const SimTrack & | t | |||
) |
Definition at line 22 of file SimTrack.cc.
References SimTrack::genpartIndex(), and SimTrack::vertIndex().
00023 { 00024 return o << (SimTrack::Core)(t) << ", " 00025 << t.vertIndex() << ", " 00026 << t.genpartIndex(); 00027 }