CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
ProxyPixelTopology Class Referencefinal

#include <ProxyPixelTopology.h>

Inheritance diagram for ProxyPixelTopology:
PixelTopology Topology

Public Member Functions

int channel (const LocalPoint &) const override
 
int channel (const LocalPoint &lp, const Topology::LocalTrackAngles &dir) const override
 conversion taking also the angle from the track state More...
 
int colsperroc () const override
 
bool containsBigPixelInX (int ixmin, int ixmax) const override
 
bool containsBigPixelInY (int iymin, int iymax) const override
 
bool isBricked () const override
 
bool isItBigPixelInX (const int ixbin) const override
 
bool isItBigPixelInY (const int iybin) const override
 
bool isItEdgePixel (int ixbin, int iybin) const override
 
bool isItEdgePixelInX (int ixbin) const override
 
bool isItEdgePixelInY (int iybin) const override
 
LocalError localError (const MeasurementPoint &, const MeasurementError &) const override
 
LocalError localError (const MeasurementPoint &mp, const MeasurementError &me, const Topology::LocalTrackPred &trkPred) const override
 conversion taking also the predicted track state More...
 
LocalPoint localPosition (const MeasurementPoint &) const override
 
LocalPoint localPosition (const MeasurementPoint &mp, const Topology::LocalTrackPred &trkPred) const override
 conversion taking also the predicted track state More...
 
float localX (const float mpX) const override
 
float localX (const float mpX, const Topology::LocalTrackPred &trkPred) const override
 
float localY (const float mpY) const override
 
float localY (const float mpY, const Topology::LocalTrackPred &trkPred) const override
 
MeasurementError measurementError (const LocalPoint &lp, const LocalError &le) const override
 
MeasurementError measurementError (const LocalPoint &lp, const LocalError &le, const Topology::LocalTrackAngles &dir) const override
 conversion taking also the angle from the track state More...
 
MeasurementPoint measurementPosition (const LocalPoint &) const override
 
MeasurementPoint measurementPosition (const LocalPoint &lp, const Topology::LocalTrackAngles &dir) const override
 conversion taking also the angle from the track state More...
 
int ncolumns () const override
 
int nrows () const override
 
std::pair< float, float > pitch () const override
 
std::pair< float, float > pixel (const LocalPoint &p) const override
 
std::pair< float, float > pixel (const LocalPoint &p, const Topology::LocalTrackAngles &ltp) const override
 conversion taking also the angle from the track state More...
 
 ProxyPixelTopology (PixelGeomDetType const *type, Plane *bp)
 
int rocsX () const override
 
int rocsY () const override
 
int rowsperroc () const override
 
virtual void setSurfaceDeformation (const SurfaceDeformation *deformation)
 
virtual const PixelTopologyspecificTopology () const
 
virtual const PixelGeomDetTypespecificType () const
 
const SurfaceDeformationsurfaceDeformation () const
 
virtual const GeomDetTypetype () const
 
- Public Member Functions inherited from PixelTopology
 ~PixelTopology () override
 
- Public Member Functions inherited from Topology
virtual ~Topology ()
 

Private Member Functions

SurfaceDeformation::Local2DVector positionCorrection (const LocalPoint &pos, const Topology::LocalTrackAngles &dir) const
 
SurfaceDeformation::Local2DVector positionCorrection (const Topology::LocalTrackPred &trk) const
 

Private Attributes

float theLength
 
std::unique_ptr< const SurfaceDeformationtheSurfaceDeformation
 
const PixelGeomDetTypetheType
 
float theWidth
 

Additional Inherited Members

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

Detailed Description

Definition at line 28 of file ProxyPixelTopology.h.

Constructor & Destructor Documentation

◆ ProxyPixelTopology()

ProxyPixelTopology::ProxyPixelTopology ( PixelGeomDetType const *  type,
Plane bp 
)

Definition at line 8 of file ProxyPixelTopology.cc.

9  : theType(type), theLength(bp->bounds().length()), theWidth(bp->bounds().width()) {}

Member Function Documentation

◆ channel() [1/2]

int ProxyPixelTopology::channel ( const LocalPoint lp) const
overridevirtual

Implements Topology.

Definition at line 83 of file ProxyPixelTopology.cc.

83 { return specificTopology().channel(lp); }

References Topology::channel(), and specificTopology().

◆ channel() [2/2]

int ProxyPixelTopology::channel ( const LocalPoint lp,
const Topology::LocalTrackAngles  
) const
overridevirtual

conversion taking also the angle from the track state

Reimplemented from Topology.

Definition at line 86 of file ProxyPixelTopology.cc.

86  {
87  if (!this->surfaceDeformation())
88  return specificTopology().channel(lp);
89 
90  // subtract correction from SurfaceDeformation
92  const LocalPoint posOrig(lp.x() - corr.x(), lp.y() - corr.y(), lp.z());
93 
94  return specificTopology().channel(posOrig);
95 }

References Topology::channel(), alignCSCRings::corr, DeadROC_duringRun::dir, positionCorrection(), specificTopology(), surfaceDeformation(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

◆ colsperroc()

int ProxyPixelTopology::colsperroc ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 63 of file ProxyPixelTopology.h.

63 { return specificTopology().colsperroc(); }

References PixelTopology::colsperroc(), and specificTopology().

◆ containsBigPixelInX()

bool ProxyPixelTopology::containsBigPixelInX ( int  ixmin,
int  ixmax 
) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 72 of file ProxyPixelTopology.h.

72  {
73  return specificTopology().containsBigPixelInX(ixmin, ixmax);
74  }

References PixelTopology::containsBigPixelInX(), and specificTopology().

◆ containsBigPixelInY()

bool ProxyPixelTopology::containsBigPixelInY ( int  iymin,
int  iymax 
) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 75 of file ProxyPixelTopology.h.

75  {
76  return specificTopology().containsBigPixelInY(iymin, iymax);
77  }

References PixelTopology::containsBigPixelInY(), and specificTopology().

◆ isBricked()

bool ProxyPixelTopology::isBricked ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 64 of file ProxyPixelTopology.h.

64 { return specificTopology().isBricked(); }

References PixelTopology::isBricked(), and specificTopology().

◆ isItBigPixelInX()

bool ProxyPixelTopology::isItBigPixelInX ( const int  ixbin) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 70 of file ProxyPixelTopology.h.

70 { return specificTopology().isItBigPixelInX(ixbin); }

References PixelTopology::isItBigPixelInX(), and specificTopology().

◆ isItBigPixelInY()

bool ProxyPixelTopology::isItBigPixelInY ( const int  iybin) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 71 of file ProxyPixelTopology.h.

71 { return specificTopology().isItBigPixelInY(iybin); }

References PixelTopology::isItBigPixelInY(), and specificTopology().

◆ isItEdgePixel()

bool ProxyPixelTopology::isItEdgePixel ( int  ixbin,
int  iybin 
) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 81 of file ProxyPixelTopology.h.

81 { return specificTopology().isItEdgePixel(ixbin, iybin); }

References PixelTopology::isItEdgePixel(), and specificTopology().

◆ isItEdgePixelInX()

bool ProxyPixelTopology::isItEdgePixelInX ( int  ixbin) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 79 of file ProxyPixelTopology.h.

79 { return specificTopology().isItEdgePixelInX(ixbin); }

References PixelTopology::isItEdgePixelInX(), and specificTopology().

◆ isItEdgePixelInY()

bool ProxyPixelTopology::isItEdgePixelInY ( int  iybin) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 80 of file ProxyPixelTopology.h.

80 { return specificTopology().isItEdgePixelInY(iybin); }

References PixelTopology::isItEdgePixelInY(), and specificTopology().

◆ localError() [1/2]

LocalError ProxyPixelTopology::localError ( const MeasurementPoint mp,
const MeasurementError me 
) const
overridevirtual

Implements Topology.

Definition at line 30 of file ProxyPixelTopology.cc.

30  {
31  return specificTopology().localError(mp, me);
32 }

References Topology::localError(), hlt_dqm_clientPB-live_cfg::me, and specificTopology().

◆ localError() [2/2]

LocalError ProxyPixelTopology::localError ( const MeasurementPoint mp,
const MeasurementError me,
const Topology::LocalTrackPred trkPred 
) const
overridevirtual

conversion taking also the predicted track state

Reimplemented from Topology.

Definition at line 35 of file ProxyPixelTopology.cc.

37  {
38  // The topology knows to calculate the cartesian error from measurement frame.
39  // But assuming no uncertainty on the SurfaceDeformation variables,
40  // the errors do not change from a simple shift to compensate
41  // that the track 'sees' the surface at another place than it thinks...
42  return specificTopology().localError(mp, me);
43 }

References Topology::localError(), hlt_dqm_clientPB-live_cfg::me, and specificTopology().

◆ localPosition() [1/2]

LocalPoint ProxyPixelTopology::localPosition ( const MeasurementPoint mp) const
overridevirtual

Implements Topology.

Definition at line 12 of file ProxyPixelTopology.cc.

12  {
13  return specificTopology().localPosition(mp);
14 }

References Topology::localPosition(), and specificTopology().

Referenced by localPosition().

◆ localPosition() [2/2]

LocalPoint ProxyPixelTopology::localPosition ( const MeasurementPoint mp,
const Topology::LocalTrackPred trkPred 
) const
overridevirtual

conversion taking also the predicted track state

Reimplemented from Topology.

Definition at line 17 of file ProxyPixelTopology.cc.

18  {
19  if (!this->surfaceDeformation())
20  return specificTopology().localPosition(mp);
21 
22  // add correction from SurfaceDeformation
23  const LocalPoint posOld(specificTopology().localPosition(mp)); // 'original position'
25 
26  return LocalPoint(posOld.x() + corr.x(), posOld.y() + corr.y(), posOld.z());
27 }

References alignCSCRings::corr, localPosition(), Topology::localPosition(), positionCorrection(), specificTopology(), surfaceDeformation(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

◆ localX() [1/2]

float ProxyPixelTopology::localX ( const float  mpX) const
overridevirtual

Implements PixelTopology.

Definition at line 113 of file ProxyPixelTopology.cc.

113 { return specificTopology().localX(mpX); }

References PixelTopology::localX(), and specificTopology().

◆ localX() [2/2]

float ProxyPixelTopology::localX ( const float  mpX,
const Topology::LocalTrackPred trkPred 
) const
overridevirtual

Reimplemented from PixelTopology.

Definition at line 116 of file ProxyPixelTopology.cc.

116  {
117  if (!this->surfaceDeformation())
118  return specificTopology().localX(mpX);
119 
120  // add correction from SurfaceDeformation
121  float xOld = specificTopology().localX(mpX); // 'original position'
123 
124  return xOld + corr.x();
125 }

References alignCSCRings::corr, PixelTopology::localX(), positionCorrection(), specificTopology(), and surfaceDeformation().

◆ localY() [1/2]

float ProxyPixelTopology::localY ( const float  mpY) const
overridevirtual

Implements PixelTopology.

Definition at line 128 of file ProxyPixelTopology.cc.

128 { return specificTopology().localY(mpY); }

References PixelTopology::localY(), and specificTopology().

◆ localY() [2/2]

float ProxyPixelTopology::localY ( const float  mpY,
const Topology::LocalTrackPred trkPred 
) const
overridevirtual

Reimplemented from PixelTopology.

Definition at line 131 of file ProxyPixelTopology.cc.

131  {
132  if (!this->surfaceDeformation())
133  return specificTopology().localY(mpY);
134 
135  // add correction from SurfaceDeformation
136  float yOld = specificTopology().localY(mpY); // 'original position'
138 
139  return yOld + corr.y();
140 }

References alignCSCRings::corr, PixelTopology::localY(), positionCorrection(), specificTopology(), and surfaceDeformation().

◆ measurementError() [1/2]

MeasurementError ProxyPixelTopology::measurementError ( const LocalPoint lp,
const LocalError le 
) const
overridevirtual

Implements Topology.

Definition at line 64 of file ProxyPixelTopology.cc.

64  {
65  return specificTopology().measurementError(lp, le);
66 }

References Topology::measurementError(), and specificTopology().

◆ measurementError() [2/2]

MeasurementError ProxyPixelTopology::measurementError ( const LocalPoint lp,
const LocalError le,
const Topology::LocalTrackAngles  
) const
overridevirtual

conversion taking also the angle from the track state

Reimplemented from Topology.

Definition at line 69 of file ProxyPixelTopology.cc.

71  {
72  if (!this->surfaceDeformation())
73  return specificTopology().measurementError(lp, le);
74 
75  // subtract correction from SurfaceDeformation
77  const LocalPoint posOrig(lp.x() - corr.x(), lp.y() - corr.y(), lp.z());
78 
79  return specificTopology().measurementError(posOrig, le);
80 }

References alignCSCRings::corr, DeadROC_duringRun::dir, Topology::measurementError(), positionCorrection(), specificTopology(), surfaceDeformation(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

◆ measurementPosition() [1/2]

MeasurementPoint ProxyPixelTopology::measurementPosition ( const LocalPoint lp) const
overridevirtual

Implements Topology.

Definition at line 46 of file ProxyPixelTopology.cc.

46  {
48 }

References Topology::measurementPosition(), and specificTopology().

◆ measurementPosition() [2/2]

MeasurementPoint ProxyPixelTopology::measurementPosition ( const LocalPoint lp,
const Topology::LocalTrackAngles  
) const
overridevirtual

conversion taking also the angle from the track state

Reimplemented from Topology.

Definition at line 51 of file ProxyPixelTopology.cc.

52  {
53  if (!this->surfaceDeformation())
55 
56  // subtract correction from SurfaceDeformation
58  const LocalPoint posOrig(lp.x() - corr.x(), lp.y() - corr.y(), lp.z());
59 
60  return specificTopology().measurementPosition(posOrig);
61 }

References alignCSCRings::corr, DeadROC_duringRun::dir, Topology::measurementPosition(), positionCorrection(), specificTopology(), surfaceDeformation(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

◆ ncolumns()

int ProxyPixelTopology::ncolumns ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 59 of file ProxyPixelTopology.h.

59 { return specificTopology().ncolumns(); }

References PixelTopology::ncolumns(), and specificTopology().

◆ nrows()

int ProxyPixelTopology::nrows ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 58 of file ProxyPixelTopology.h.

58 { return specificTopology().nrows(); }

References PixelTopology::nrows(), and specificTopology().

◆ pitch()

std::pair<float, float> ProxyPixelTopology::pitch ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 57 of file ProxyPixelTopology.h.

57 { return specificTopology().pitch(); }

References PixelTopology::pitch(), and specificTopology().

◆ pixel() [1/2]

std::pair< float, float > ProxyPixelTopology::pixel ( const LocalPoint p) const
overridevirtual

Implements PixelTopology.

Definition at line 98 of file ProxyPixelTopology.cc.

98 { return specificTopology().pixel(lp); }

References PixelTopology::pixel(), and specificTopology().

◆ pixel() [2/2]

std::pair< float, float > ProxyPixelTopology::pixel ( const LocalPoint p,
const Topology::LocalTrackAngles ltp 
) const
overridevirtual

conversion taking also the angle from the track state

Reimplemented from PixelTopology.

Definition at line 101 of file ProxyPixelTopology.cc.

101  {
102  if (!this->surfaceDeformation())
103  return specificTopology().pixel(lp);
104 
105  // subtract correction from SurfaceDeformation
107  const LocalPoint posOrig(lp.x() - corr.x(), lp.y() - corr.y(), lp.z());
108 
109  return specificTopology().pixel(posOrig);
110 }

References alignCSCRings::corr, DeadROC_duringRun::dir, PixelTopology::pixel(), positionCorrection(), specificTopology(), surfaceDeformation(), PV3DBase< T, PVType, FrameType >::x(), PV3DBase< T, PVType, FrameType >::y(), and PV3DBase< T, PVType, FrameType >::z().

◆ positionCorrection() [1/2]

SurfaceDeformation::Local2DVector ProxyPixelTopology::positionCorrection ( const LocalPoint pos,
const Topology::LocalTrackAngles dir 
) const
private

Internal method to get correction of the position from SurfaceDeformation, must not be called if 'theSurfaceDeformation' is a null pointer.

Definition at line 148 of file ProxyPixelTopology.cc.

149  {
150  const SurfaceDeformation::Local2DPoint pos2D(pos.x(), pos.y()); // change precision and dimension
151 
152  return this->surfaceDeformation()->positionCorrection(pos2D, dir, theLength, theWidth);
153 }

References DeadROC_duringRun::dir, SurfaceDeformation::positionCorrection(), surfaceDeformation(), theLength, and theWidth.

Referenced by channel(), localPosition(), localX(), localY(), measurementError(), measurementPosition(), and pixel().

◆ positionCorrection() [2/2]

SurfaceDeformation::Local2DVector ProxyPixelTopology::positionCorrection ( const Topology::LocalTrackPred trk) const
private

Internal method to get correction of the position from SurfaceDeformation, must not be called if 'theSurfaceDeformation' is a null pointer.

Definition at line 156 of file ProxyPixelTopology.cc.

156  {
157  return this->surfaceDeformation()->positionCorrection(trk.point(), trk.angles(), theLength, theWidth);
158 }

References Topology::LocalTrackPred::angles(), Topology::LocalTrackPred::point(), SurfaceDeformation::positionCorrection(), surfaceDeformation(), theLength, and theWidth.

◆ rocsX()

int ProxyPixelTopology::rocsX ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 61 of file ProxyPixelTopology.h.

61 { return specificTopology().rocsX(); }

References PixelTopology::rocsX(), and specificTopology().

◆ rocsY()

int ProxyPixelTopology::rocsY ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 60 of file ProxyPixelTopology.h.

60 { return specificTopology().rocsY(); }

References PixelTopology::rocsY(), and specificTopology().

◆ rowsperroc()

int ProxyPixelTopology::rowsperroc ( ) const
inlineoverridevirtual

Implements PixelTopology.

Definition at line 62 of file ProxyPixelTopology.h.

62 { return specificTopology().rowsperroc(); }

References PixelTopology::rowsperroc(), and specificTopology().

◆ setSurfaceDeformation()

void ProxyPixelTopology::setSurfaceDeformation ( const SurfaceDeformation deformation)
virtual

Definition at line 143 of file ProxyPixelTopology.cc.

143  {
144  theSurfaceDeformation.reset(deformation);
145 }

References theSurfaceDeformation.

◆ specificTopology()

virtual const PixelTopology& ProxyPixelTopology::specificTopology ( ) const
inlinevirtual

◆ specificType()

virtual const PixelGeomDetType& ProxyPixelTopology::specificType ( ) const
inlinevirtual

Definition at line 85 of file ProxyPixelTopology.h.

85 { return *theType; }

References theType.

Referenced by specificTopology().

◆ surfaceDeformation()

const SurfaceDeformation* ProxyPixelTopology::surfaceDeformation ( ) const
inline

◆ type()

virtual const GeomDetType& ProxyPixelTopology::type ( ) const
inlinevirtual

Definition at line 83 of file ProxyPixelTopology.h.

83 { return *theType; }

References theType.

Member Data Documentation

◆ theLength

float ProxyPixelTopology::theLength
private

Definition at line 102 of file ProxyPixelTopology.h.

Referenced by positionCorrection().

◆ theSurfaceDeformation

std::unique_ptr<const SurfaceDeformation> ProxyPixelTopology::theSurfaceDeformation
private

Definition at line 103 of file ProxyPixelTopology.h.

Referenced by setSurfaceDeformation(), and surfaceDeformation().

◆ theType

const PixelGeomDetType* ProxyPixelTopology::theType
private

Definition at line 101 of file ProxyPixelTopology.h.

Referenced by specificType(), and type().

◆ theWidth

float ProxyPixelTopology::theWidth
private

Definition at line 102 of file ProxyPixelTopology.h.

Referenced by positionCorrection().

Point2DBase< double, LocalTag >
ProxyPixelTopology::specificTopology
virtual const PixelTopology & specificTopology() const
Definition: ProxyPixelTopology.h:90
Bounds::width
virtual float width() const =0
PixelTopology::isItEdgePixelInX
virtual bool isItEdgePixelInX(int ixbin) const =0
PV3DBase::x
T x() const
Definition: PV3DBase.h:59
PixelTopology::colsperroc
virtual int colsperroc() const =0
PixelTopology::isBricked
virtual bool isBricked() const =0
pos
Definition: PixelAliasList.h:18
PixelTopology::pitch
virtual std::pair< float, float > pitch() const =0
PixelGeomDetType::specificTopology
virtual const TopologyType & specificTopology() const
Definition: PixelGeomDetType.h:23
Topology::localPosition
virtual LocalPoint localPosition(const MeasurementPoint &) const =0
Topology::LocalTrackPred::angles
const LocalTrackAngles & angles() const
Definition: Topology.h:65
ProxyPixelTopology::specificType
virtual const PixelGeomDetType & specificType() const
Definition: ProxyPixelTopology.h:85
align::LocalPoint
Point3DBase< Scalar, LocalTag > LocalPoint
Definition: Definitions.h:30
PixelTopology::isItEdgePixel
virtual bool isItEdgePixel(int ixbin, int iybin) const =0
SurfaceDeformation::positionCorrection
virtual Local2DVector positionCorrection(const Local2DPoint &localPos, const LocalTrackAngles &localAngles, double length, double width) const =0
PixelTopology::isItEdgePixelInY
virtual bool isItEdgePixelInY(int iybin) const =0
Bounds::length
virtual float length() const =0
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
PixelTopology::isItBigPixelInX
virtual bool isItBigPixelInX(int ixbin) const =0
ProxyPixelTopology::theWidth
float theWidth
Definition: ProxyPixelTopology.h:102
ProxyPixelTopology::theType
const PixelGeomDetType * theType
Definition: ProxyPixelTopology.h:101
ProxyPixelTopology::localPosition
LocalPoint localPosition(const MeasurementPoint &) const override
Definition: ProxyPixelTopology.cc:12
alignCSCRings.corr
dictionary corr
Definition: alignCSCRings.py:124
PixelTopology::containsBigPixelInX
virtual bool containsBigPixelInX(int ixmin, int ixmax) const =0
ProxyPixelTopology::positionCorrection
SurfaceDeformation::Local2DVector positionCorrection(const LocalPoint &pos, const Topology::LocalTrackAngles &dir) const
Definition: ProxyPixelTopology.cc:148
Topology::channel
virtual int channel(const LocalPoint &p) const =0
Surface::bounds
const Bounds & bounds() const
Definition: Surface.h:87
Topology::LocalTrackPred::point
const Local2DPoint & point() const
Definition: Topology.h:64
PixelTopology::rocsX
virtual int rocsX() const =0
PixelTopology::ncolumns
virtual int ncolumns() const =0
Topology::measurementError
virtual MeasurementError measurementError(const LocalPoint &, const LocalError &) const =0
Vector2DBase
Definition: Vector2DBase.h:8
Point3DBase< float, LocalTag >
ProxyPixelTopology::surfaceDeformation
const SurfaceDeformation * surfaceDeformation() const
Definition: ProxyPixelTopology.h:87
type
type
Definition: SiPixelVCal_PayloadInspector.cc:39
PixelTopology::isItBigPixelInY
virtual bool isItBigPixelInY(int iybin) const =0
PV3DBase::y
T y() const
Definition: PV3DBase.h:60
Topology::measurementPosition
virtual MeasurementPoint measurementPosition(const LocalPoint &) const =0
PixelTopology::rowsperroc
virtual int rowsperroc() const =0
ProxyPixelTopology::theLength
float theLength
Definition: ProxyPixelTopology.h:102
PixelTopology::containsBigPixelInY
virtual bool containsBigPixelInY(int iymin, int iymax) const =0
ProxyPixelTopology::theSurfaceDeformation
std::unique_ptr< const SurfaceDeformation > theSurfaceDeformation
Definition: ProxyPixelTopology.h:103
PixelTopology::pixel
virtual std::pair< float, float > pixel(const LocalPoint &p) const =0
Topology::localError
virtual LocalError localError(const MeasurementPoint &, const MeasurementError &) const =0
PixelTopology::localY
virtual float localY(float mpY) const =0
PixelTopology::rocsY
virtual int rocsY() const =0
PixelTopology::localX
virtual float localX(float mpX) const =0
hlt_dqm_clientPB-live_cfg.me
me
Definition: hlt_dqm_clientPB-live_cfg.py:61
PixelTopology::nrows
virtual int nrows() const =0
DeadROC_duringRun.dir
dir
Definition: DeadROC_duringRun.py:23