QwAnalysis
QwHit.cc File Reference

Implementation of the decoding-to-QTR interface class. More...

#include "QwHit.h"
#include "QwDetectorInfo.h"
+ Include dependency graph for QwHit.cc:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &stream, const QwHit &hit)
 

Detailed Description

Implementation of the decoding-to-QTR interface class.

Author
Jie Pan
Date
Wed Jul 8 16:18:53 CDT 2009

Definition in file QwHit.cc.

Function Documentation

std::ostream& operator<< ( std::ostream &  stream,
const QwHit hit 
)

Output stream operator

Parameters
streamStream
hitHit object
Returns
Output stream

Definition at line 276 of file QwHit.cc.

References Qw::cm, QwHit::fAmbiguousElement, VQwTrackingElement::fDetectorInfo, VQwTrackingElement::fDirection, QwHit::fDistance, QwHit::fDriftPosition, VQwTrackingElement::fElement, VQwTrackingElement::fOctant, VQwTrackingElement::fPackage, QwHit::fPartialTrackPosition, QwHit::fPartialTrackResidual, VQwTrackingElement::fPlane, VQwTrackingElement::fRegion, QwHit::fTreeLinePosition, QwHit::fTreeLineResidual, QwDetectorInfo::GetCrosstalkElement(), and QwDetectorInfo::GetDetectorName().

277 {
278  stream << "hit: ";
279  stream << "package " << hit.fPackage << ", ";
280  stream << "octant " << hit.fOctant << ", ";
281  stream << "region " << hit.fRegion << ", ";
282  stream << "dir " << hit.fDirection << ", ";
283  stream << "plane " << hit.fPlane;
284 
285  if (hit.fDetectorInfo) stream << " (det " << hit.fDetectorInfo->GetDetectorName() << "), ";
286  else stream << ", ";
287 
288  stream << "element " << hit.fElement;
289  if (hit.fDistance != 0.0)
290  stream << ", distance " << hit.fDistance/Qw::cm << " cm";
291 
292  if (hit.fTreeLineResidual != 0.0)
293  stream << ", tl |" << hit.fDriftPosition/Qw::cm << " - " << hit.fTreeLinePosition/Qw::cm
294  << "| = " << hit.fTreeLineResidual/Qw::cm << " cm";
295 
296  if (hit.fPartialTrackResidual != 0.0)
297  stream << ", pt |" << hit.fDriftPosition/Qw::cm << " - " << hit.fPartialTrackPosition/Qw::cm
298  << "| = " << hit.fPartialTrackResidual/Qw::cm << " cm";
299 
300  if (hit.fAmbiguousElement) stream << " (?)";
301 
302  if (hit.fDetectorInfo &&
303  hit.fDetectorInfo->GetCrosstalkElement(hit.fElement) > 0) stream << " (X)";
304 
305  return stream;
306 }
EQwDirectionID fDirection
Direction.
int fElement
Element number.
EQwDetectorPackage fPackage
Package.
int fPlane
Plane number.
std::string GetDetectorName() const
Double_t fDistance
Definition: QwHit.h:184
int fOctant
Octant number.
EQwRegionID fRegion
///&lt; Detector info pointer
Double_t fTreeLinePosition
Position of the fitted treeline through the drift cell.
Definition: QwHit.h:191
Double_t fDriftPosition
Position of the decoded hit in the drift cell.
Definition: QwHit.h:186
Double_t fTreeLineResidual
Definition: QwHit.h:192
int GetCrosstalkElement(int element) const
Bool_t fAmbiguousElement
Definition: QwHit.h:172
const QwDetectorInfo * fDetectorInfo
Double_t fPartialTrackResidual
Definition: QwHit.h:196
Double_t fPartialTrackPosition
Position of the fitted treeline through the drift cell.
Definition: QwHit.h:195
static const double cm
Length units: base unit is mm.
Definition: QwUnits.h:61

+ Here is the call graph for this function: