CMS 3D CMS Logo

List of all members | Public Member Functions
CSCUngangedStripTopology Class Reference

#include <CSCUngangedStripTopology.h>

Inheritance diagram for CSCUngangedStripTopology:
CSCStripTopology OffsetRadialStripTopology CSCRadialStripTopology RadialStripTopology StripTopology Topology

Public Member Functions

int channel (const LocalPoint &lp) const override
 
int channel (int strip) const override
 
CSCStripTopologyclone () const override
 
 CSCUngangedStripTopology (int numberOfStrips, float stripPhiPitch, float detectorHeight, float whereStripsMeet, float stripOffset, float yCentre)
 
std::ostream & put (std::ostream &os) const override
 
 ~CSCUngangedStripTopology () override
 
- Public Member Functions inherited from CSCStripTopology
 CSCStripTopology (int ns, float aw, float dh, float r, float aoff, float ymid)
 
std::pair< float, float > equationOfStrip (float strip) const
 
std::pair< float, float > yLimitsOfStripPlane () const
 
 ~CSCStripTopology () override
 
- Public Member Functions inherited from OffsetRadialStripTopology
LocalPoint localPosition (float strip) const override
 
LocalPoint localPosition (const MeasurementPoint &) const override
 
MeasurementPoint measurementPosition (const LocalPoint &) const override
 
 OffsetRadialStripTopology (int numberOfStrips, float stripPhiPitch, float detectorHeight, float radialDistance, float stripOffset, float yCentre)
 
float strip (const LocalPoint &) const override
 
float stripAngle (float strip) const override
 
virtual float stripOffset (void) const
 
 ~OffsetRadialStripTopology () override
 
- Public Member Functions inherited from CSCRadialStripTopology
float angularWidth () const override
 
float centreToIntersection () const override
 
 CSCRadialStripTopology (int ns, float aw, float dh, float r, float yAx=1.f, float yMid=0.)
 
float detHeight () const override
 
LocalError localError (float strip, float stripErr2) const override
 
LocalError localError (const MeasurementPoint &, const MeasurementError &) const override
 
float localPitch (const LocalPoint &) const override
 
float localStripLength (const LocalPoint &) const override
 
MeasurementError measurementError (const LocalPoint &, const LocalError &) const override
 
int nearestStrip (const LocalPoint &) const override
 
int nstrips () const override
 
float originToIntersection () const override
 
float phiOfOneEdge () const override
 
float phiPitch (void) const override
 
float stripLength () const override
 
float xOfStrip (int strip, float y) const override
 
float yAxisOrientation () const override
 
float yCentreOfStripPlane () const override
 
float yDistanceToIntersection (float y) const override
 
float yExtentOfStripPlane () const override
 
 ~CSCRadialStripTopology () override
 
- Public Member Functions inherited from RadialStripTopology
float pitch () const final
 
 ~RadialStripTopology () override
 
- Public Member Functions inherited from StripTopology
virtual float coveredStrips (const LocalPoint &lp1, const LocalPoint &lp2) const
 
virtual LocalError localError (float strip, float stripErr2, const Topology::LocalTrackPred &) const
 conversion taking also the angle from the predicted track state More...
 
virtual float localPitch (const LocalPoint &lp, const Topology::LocalTrackAngles &) const
 conversion taking also the angle from the track state (LocalTrajectoryParameters) More...
 
virtual LocalPoint localPosition (float strip, const Topology::LocalTrackPred &) const
 conversion taking also the predicted track state More...
 
virtual float localStripLength (const LocalPoint &lp, const Topology::LocalTrackAngles &) const
 conversion taking also the angle from the track state (LocalTrajectoryParameters) More...
 
virtual float strip (const LocalPoint &lp, const Topology::LocalTrackAngles &) const
 conversion taking also the angle from the track state (LocalTrajectoryParameters) More...
 
 ~StripTopology () override
 
- Public Member Functions inherited from Topology
virtual int channel (const LocalPoint &lp, const LocalTrackAngles &) const
 conversion taking also the angle from the track state More...
 
virtual LocalError localError (const MeasurementPoint &mp, const MeasurementError &me, const LocalTrackPred &) const
 conversion taking also the angle from the predicted track state More...
 
virtual LocalPoint localPosition (const MeasurementPoint &mp, const LocalTrackPred &) const
 conversion taking also the angle from the predicted track state More...
 
virtual MeasurementError measurementError (const LocalPoint &lp, const LocalError &le, const LocalTrackAngles &) const
 conversion taking also the angle from the track state More...
 
virtual MeasurementPoint measurementPosition (const LocalPoint &lp, const LocalTrackAngles &) const
 conversion taking also the angle from the track state More...
 
virtual ~Topology ()
 

Additional Inherited Members

- Public Types inherited from Topology
typedef Point2DBase< double, LocalTagLocal2DPoint
 
typedef Vector2D::MathVector MathVector2D
 
typedef Basic2DVector< double > Vector2D
 

Detailed Description

A concrete CSCStripTopology with unganged strips (normal CSC case.)

Author
Tim Cox

Definition at line 13 of file CSCUngangedStripTopology.h.

Constructor & Destructor Documentation

CSCUngangedStripTopology::CSCUngangedStripTopology ( int  numberOfStrips,
float  stripPhiPitch,
float  detectorHeight,
float  whereStripsMeet,
float  stripOffset,
float  yCentre 
)
inline

Definition at line 17 of file CSCUngangedStripTopology.h.

Referenced by clone().

18  :
19  CSCStripTopology( numberOfStrips, stripPhiPitch,
20  detectorHeight, whereStripsMeet, stripOffset, yCentre ){}
CSCStripTopology(int ns, float aw, float dh, float r, float aoff, float ymid)
virtual float stripOffset(void) const
CSCUngangedStripTopology::~CSCUngangedStripTopology ( )
inlineoverride

Definition at line 22 of file CSCUngangedStripTopology.h.

22 {}

Member Function Documentation

int CSCUngangedStripTopology::channel ( const LocalPoint lp) const
inlineoverridevirtual

Return channel corresponding to a LocalPoint. (but we count from 1 whereas RST counts from 0.)

Implements OffsetRadialStripTopology.

Definition at line 28 of file CSCUngangedStripTopology.h.

References CSCRadialStripTopology::channel().

28  {
29  return CSCRadialStripTopology::channel(lp) + 1;
30  }
int channel(const LocalPoint &) const override
int CSCUngangedStripTopology::channel ( int  strip) const
inlineoverridevirtual

Return channel corresponding to a strip. (Count from 1).

Implements OffsetRadialStripTopology.

Definition at line 36 of file CSCUngangedStripTopology.h.

References OffsetRadialStripTopology::strip().

36 {return strip;}
float strip(const LocalPoint &) const override
CSCStripTopology* CSCUngangedStripTopology::clone ( void  ) const
inlineoverridevirtual

Clone to handle correct copy of component objects referenced by base class pointer. If gcc could handle it, should be virtual CSCUngangedStripTopology* clone() const

Implements CSCStripTopology.

Definition at line 44 of file CSCUngangedStripTopology.h.

References CSCUngangedStripTopology().

44  {
45  return new CSCUngangedStripTopology(*this);
46  }
CSCUngangedStripTopology(int numberOfStrips, float stripPhiPitch, float detectorHeight, float whereStripsMeet, float stripOffset, float yCentre)
std::ostream& CSCUngangedStripTopology::put ( std::ostream &  os) const
inlineoverridevirtual

Implement CSCStripTopology interface for its op<<

Implements CSCStripTopology.

Definition at line 51 of file CSCUngangedStripTopology.h.

51  {
52  return os << "CSCUngangedStripTopology";
53  }