QwAnalysis
QwPartialTrack.cc File Reference
#include "QwPartialTrack.h"
#include "TRandom.h"
#include "QwLog.h"
#include "QwUnits.h"
#include "QwVertex.h"
+ Include dependency graph for QwPartialTrack.cc:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &stream, const QwPartialTrack &pt)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  stream,
const QwPartialTrack pt 
)

Output stream operator overloading

Definition at line 303 of file QwPartialTrack.cc.

References Qw::cm, QwPartialTrack::fAverageResidual, QwPartialTrack::fChi, QwPartialTrack::fOffsetX, QwPartialTrack::fOffsetY, QwPartialTrack::fSlopeX, QwPartialTrack::fSlopeY, VQwTrackingElement::GetPackage(), VQwTrackingElement::GetRegion(), QwPartialTrack::IsVoid(), and kRegionIDNull.

304 {
305  stream << "pt: ";
306  if (pt.GetRegion() != kRegionIDNull)
307  stream << "(" << pt.GetRegion() << "/" << "?UD"[pt.GetPackage()] << "); ";
308  stream << "x,y(z=0) = (" << pt.fOffsetX/Qw::cm << " cm, " << pt.fOffsetY/Qw::cm << " cm), ";
309  stream << "d(x,y)/dz = (" << pt.fSlopeX << ", " << pt.fSlopeY << ")";
310 
311  double x=pt.fOffsetX/Qw::cm-663*pt.fSlopeX;
312  double y=pt.fOffsetY/Qw::cm-663*pt.fSlopeY;
313  stream << " downstream target: " << x << ", " << y;
314  if (pt.fChi > 0.0) { // parttrack has been fitted
315  stream << ", chi = " << pt.fChi;
316  }
317  if (pt.fAverageResidual > 0.0) {
318  stream << ", res = " << pt.fAverageResidual;
319  }
320  if (pt.IsVoid()) stream << " (void)";
321  return stream;
322 }
Double_t fOffsetX
x coordinate (at MAGNET_CENTER)
bool IsVoid() const
Double_t fSlopeY
y slope
double fAverageResidual
number of Plane 0 Treelines
Double_t fChi
combined chi square
EQwRegionID GetRegion() const
Get the region.
Double_t fSlopeX
x slope
Double_t fOffsetY
y coordinate (at MAGNET_CENTER)
EQwDetectorPackage GetPackage() const
Get the package.
static const double cm
Length units: base unit is mm.
Definition: QwUnits.h:61

+ Here is the call graph for this function: