ITrackParameters.cxx

Go to the documentation of this file.
00001 #include <iostream>
00002 #include "AtlfastEvent/ITrackParameters.h"
00003 
00004 namespace Atlfast{
00005 
00006   std::ostream& operator << ( std::ostream& s, const ITrackParameters* t ){
00007     return Atlfast::operator<<(s, *t);
00008   }
00009   std::ostream& operator << ( std::ostream& s, const ITrackParameters& t ) {
00010     s 
00011       <<    "eta: "<<            t.eta()<<" "
00012       <<    "phi: "<<            t.phi()<<" "
00013       <<   "q/pT: "<<    t.invPtCharge()<<" "
00014       <<     "d0: "<<t.impactParameter()<<" "
00015       <<     "z0: "<<       t.zPerigee()<<" "
00016       << "cot Th: "<<       t.cotTheta()<<" "
00017       << "\n"
00018       ;
00019     return s;
00020   }
00021 }//namespace

Generated on Fri Sep 21 13:00:10 2007 for AtlfastEvent by  doxygen 1.5.1