Go to the source code of this file.
|
| namespace | Trk |
| | Ensure that the ATLAS eigen extensions are properly loaded.
|
| namespace | InDetDD |
| | Message Stream Member.
|
| namespace | InDet |
| | Primary Vertex Finder.
|
◆ addNextInEta
| #define addNextInEta |
( |
| cur, |
|
|
| surfaces ) |
Value:
addOtherSide(cur->nextInEta(), surfaces)
#define addSurface(cur, surfaces)
Definition at line 44 of file PixelOverlapDescriptor.h.
44#define addNextInEta(cur, surfaces) \
45 addSurface(cur->nextInEta(), surfaces); \
46 addOtherSide(cur->nextInEta(), surfaces)
◆ addNextInPhi
| #define addNextInPhi |
( |
| cur, |
|
|
| surfaces ) |
Value:
addOtherSide(cur->nextInPhi(), surfaces)
Definition at line 36 of file PixelOverlapDescriptor.h.
36#define addNextInPhi(cur, surfaces) \
37 addSurface(cur->nextInPhi(), surfaces); \
38 addOtherSide(cur->nextInPhi(), surfaces)
◆ addOtherSide
| #define addOtherSide |
( |
| cur, |
|
|
| surfaces ) |
Value: if (cur && cur->otherSide()) \
surfaces.emplace_back( \
&(cur->otherSide()->surface(cur->otherSide()->identify())))
Eigen::Matrix< double, 3, 1 > Vector3D
Definition at line 30 of file PixelOverlapDescriptor.h.
30#define addOtherSide(cur, surfaces) \
31 if (cur && cur->otherSide()) \
32 surfaces.emplace_back( \
33 Trk::Intersection(Amg::Vector3D(0., 0., 0.), 0., true), \
34 &(cur->otherSide()->surface(cur->otherSide()->identify())))
◆ addPrevInEta
| #define addPrevInEta |
( |
| cur, |
|
|
| surfaces ) |
Value:
addOtherSide(cur->prevInEta(), surfaces)
Definition at line 48 of file PixelOverlapDescriptor.h.
48#define addPrevInEta(cur, surfaces) \
49 addSurface(cur->prevInEta(), surfaces); \
50 addOtherSide(cur->prevInEta(), surfaces)
◆ addPrevInPhi
| #define addPrevInPhi |
( |
| cur, |
|
|
| surfaces ) |
Value:
addOtherSide(cur->prevInPhi(), surfaces)
Definition at line 40 of file PixelOverlapDescriptor.h.
40#define addPrevInPhi(cur, surfaces) \
41 addSurface(cur->prevInPhi(), surfaces); \
42 addOtherSide(cur->prevInPhi(), surfaces)
◆ addSurface
| #define addSurface |
( |
| cur, |
|
|
| surfaces ) |
Value: if (cur) \
surfaces.emplace_back( \
&(cur->surface(cur->identify())))
Definition at line 24 of file PixelOverlapDescriptor.h.
24#define addSurface(cur, surfaces) \
25 if (cur) \
26 surfaces.emplace_back( \
27 Trk::Intersection(Amg::Vector3D(0., 0., 0.), 0., true), \
28 &(cur->surface(cur->identify())))
◆ TRKDETDESCR_SIDETADDNEXTPHIETA
| #define TRKDETDESCR_SIDETADDNEXTPHIETA |