Public Member Functions | List of all members
trkf::SurfWireX Class Reference

#include <SurfWireX.h>

Inheritance diagram for trkf::SurfWireX:
trkf::SurfYZPlane trkf::SurfPlane trkf::Surface

Public Member Functions

 SurfWireX (const geo::WireID &wireid)
 Constructor. More...
 
virtual ~SurfWireX ()
 Destructor. More...
 
- Public Member Functions inherited from trkf::SurfYZPlane
 SurfYZPlane ()
 Default constructor. More...
 
 SurfYZPlane (double x0, double y0, double z0, double phi)
 Initializing constructor. More...
 
virtual ~SurfYZPlane ()
 Destructor. More...
 
double x0 () const
 X origin. More...
 
double y0 () const
 Y origin. More...
 
double z0 () const
 Z origin. More...
 
double phi () const
 Rotation angle about x-axis. More...
 
virtual Surfaceclone () const
 Clone method. More...
 
virtual bool isTrackValid (const TrackVector &vec) const
 Surface-specific tests of validity of track parameters. More...
 
virtual void toLocal (const double xyz[3], double uvw[3]) const
 Transform global to local coordinates. More...
 
virtual void toGlobal (const double uvw[3], double xyz[3]) const
 Transform local to global coordinates. More...
 
virtual void getPosition (const TrackVector &vec, double xyz[3]) const
 Get position of track. More...
 
virtual void getMomentum (const TrackVector &vec, double mom[3], TrackDirection dir=UNKNOWN) const
 Get momentum vector of track. More...
 
virtual bool isParallel (const Surface &surf) const
 Test whether two surfaces are parallel, within tolerance. More...
 
virtual double distanceTo (const Surface &surf) const
 Find perpendicular forward distance to a parallel surface. More...
 
virtual bool isEqual (const Surface &surf) const
 Test two surfaces for equality, within tolerance. More...
 
virtual std::ostream & Print (std::ostream &out) const
 Printout. More...
 
- Public Member Functions inherited from trkf::SurfPlane
 SurfPlane ()
 Default constructor. More...
 
virtual ~SurfPlane ()
 Destructor. More...
 
double PointingError (const TrackVector &vec, const TrackError &err) const
 Get pointing error of track. More...
 
void getStartingError (TrackError &err) const
 Get starting error matrix for Kalman filter. More...
 
- Public Member Functions inherited from trkf::Surface
 Surface ()
 Default constructor. More...
 
virtual ~Surface ()
 Destructor. More...
 
virtual TrackVector getDiff (const TrackVector &vec1, const TrackVector &vec2) const
 Calculate difference of two track parameter vectors. More...
 
virtual TrackDirection getDirection (const TrackVector &, TrackDirection dir=UNKNOWN) const
 Get direction of track (default UNKNOWN). More...
 

Additional Inherited Members

- Public Types inherited from trkf::Surface
enum  TrackDirection { FORWARD, BACKWARD, UNKNOWN }
 Track direction enum. More...
 

Detailed Description

Definition at line 24 of file SurfWireX.h.

Constructor & Destructor Documentation

trkf::SurfWireX::SurfWireX ( const geo::WireID wireid)

Constructor.

Constructor.

Arguments:

wireid - Wire id.

Definition at line 24 of file SurfWireX.cxx.

25  {
26  // Get geometry service.
27 
29 
30  // Get wire geometry.
31 
32  geo::WireGeo const& wgeom = geom->WireIDToWireGeo(wireid);
33 
34  // Get wire center and angle from the wire geometry.
35  // Put local origin at center of wire.
36 
37  double xyz[3] = {0.};
38  wgeom.GetCenter(xyz);
39  double phi = TMath::PiOver2() - wgeom.ThetaZ();
40 
41  // Update base class.
42 
43  *static_cast<SurfYZPlane*>(this) = SurfYZPlane(0., xyz[1], xyz[2], phi);
44  }
Geometry description of a TPC wireThe wire is a single straight segment on a wire plane...
Definition: WireGeo.h:65
double ThetaZ() const
Returns angle of wire with respect to z axis in the Y-Z plane in radians.
Definition: WireGeo.h:250
SurfYZPlane()
Default constructor.
Definition: SurfYZPlane.cxx:24
double phi() const
Rotation angle about x-axis.
Definition: SurfYZPlane.h:63
void GetCenter(double *xyz, double localz=0.0) const
Fills the world coordinate of a point on the wire.
Definition: WireGeo.cxx:73
WireGeo const & WireIDToWireGeo(geo::WireID const &wireid) const
trkf::SurfWireX::~SurfWireX ( )
virtual

Destructor.

Definition at line 47 of file SurfWireX.cxx.

48  {}

The documentation for this class was generated from the following files: