ATLAS Offline Software
Loading...
Searching...
No Matches
PixelOverlapDescriptor.h File Reference
Include dependency graph for PixelOverlapDescriptor.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  InDet::PixelOverlapDescriptor
 Class to describe overlaps in the pixel detector, it extends the Trk::OverlapDescriptor base class. More...

Namespaces

namespace  Trk
 Ensure that the ATLAS eigen extensions are properly loaded.
namespace  InDetDD
 Message Stream Member.
namespace  InDet
 Primary Vertex Finder.

Macros

#define TRKDETDESCR_SIDETADDNEXTPHIETA
#define addSurface(cur, surfaces)
#define addOtherSide(cur, surfaces)
#define addNextInPhi(cur, surfaces)
#define addPrevInPhi(cur, surfaces)
#define addNextInEta(cur, surfaces)
#define addPrevInEta(cur, surfaces)

Macro Definition Documentation

◆ addNextInEta

#define addNextInEta ( cur,
surfaces )
Value:
addSurface(cur->nextInEta(), surfaces); \
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:
addSurface(cur->nextInPhi(), surfaces); \
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( \
Trk::Intersection(Amg::Vector3D(0., 0., 0.), 0., true), \
&(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:
addSurface(cur->prevInEta(), surfaces); \
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:
addSurface(cur->prevInPhi(), surfaces); \
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( \
Trk::Intersection(Amg::Vector3D(0., 0., 0.), 0., true), \
&(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

Definition at line 22 of file PixelOverlapDescriptor.h.