Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Public Member Functions | Public Attributes | List of all members
FPGATrackSimMapMakerAlg::Module Struct Reference
Collaboration diagram for FPGATrackSimMapMakerAlg::Module:

Public Member Functions

 Module ()=default
 
 Module (SiliconTech det, DetectorZone bec, int lyr, int eta, int phi)
 
FPGATrackSimModuleId moduleId () const
 
bool operator== (const Module &m) const
 
bool operator< (const Module &m) const
 
bool operator> (const Module &m) const
 

Public Attributes

SiliconTech det {SiliconTech::strip}
 
DetectorZone bec {DetectorZone::barrel}
 
int lyr {}
 
int eta {}
 
int phi {}
 
std::vector< int > numTracks
 
int plane {-1}
 

Detailed Description

Definition at line 51 of file FPGATrackSimMapMakerAlg.h.

Constructor & Destructor Documentation

◆ Module() [1/2]

FPGATrackSimMapMakerAlg::Module::Module ( )
default

◆ Module() [2/2]

FPGATrackSimMapMakerAlg::Module::Module ( SiliconTech  det,
DetectorZone  bec,
int  lyr,
int  eta,
int  phi 
)
inline

Definition at line 60 of file FPGATrackSimMapMakerAlg.h.

60 : det(det), bec(bec), lyr(lyr), eta(eta), phi(phi) {}

Member Function Documentation

◆ moduleId()

FPGATrackSimModuleId FPGATrackSimMapMakerAlg::Module::moduleId ( ) const
inline

Definition at line 61 of file FPGATrackSimMapMakerAlg.h.

61  {
62  return std::tie(det,bec,lyr,eta,phi);
63  }

◆ operator<()

bool FPGATrackSimMapMakerAlg::Module::operator< ( const Module m) const
inline

Definition at line 68 of file FPGATrackSimMapMakerAlg.h.

69  {
70  return std::tie(det,bec,lyr,eta,phi) < std::tie(m.det,m.bec,m.lyr,m.eta,m.phi);
71  }

◆ operator==()

bool FPGATrackSimMapMakerAlg::Module::operator== ( const Module m) const
inline

Definition at line 64 of file FPGATrackSimMapMakerAlg.h.

65  {
66  return std::tie(det,bec,lyr,eta,phi) == std::tie(m.det,m.bec,m.lyr,m.eta,m.phi);
67  }

◆ operator>()

bool FPGATrackSimMapMakerAlg::Module::operator> ( const Module m) const
inline

Definition at line 72 of file FPGATrackSimMapMakerAlg.h.

73  {
74  return std::tie(det,bec,lyr,eta,phi) > std::tie(m.det,m.bec,m.lyr,m.eta,m.phi);
75  }

Member Data Documentation

◆ bec

DetectorZone FPGATrackSimMapMakerAlg::Module::bec {DetectorZone::barrel}

Definition at line 53 of file FPGATrackSimMapMakerAlg.h.

◆ det

SiliconTech FPGATrackSimMapMakerAlg::Module::det {SiliconTech::strip}

Definition at line 52 of file FPGATrackSimMapMakerAlg.h.

◆ eta

int FPGATrackSimMapMakerAlg::Module::eta {}

Definition at line 55 of file FPGATrackSimMapMakerAlg.h.

◆ lyr

int FPGATrackSimMapMakerAlg::Module::lyr {}

Definition at line 54 of file FPGATrackSimMapMakerAlg.h.

◆ numTracks

std::vector<int> FPGATrackSimMapMakerAlg::Module::numTracks

Definition at line 57 of file FPGATrackSimMapMakerAlg.h.

◆ phi

int FPGATrackSimMapMakerAlg::Module::phi {}

Definition at line 56 of file FPGATrackSimMapMakerAlg.h.

◆ plane

int FPGATrackSimMapMakerAlg::Module::plane {-1}

Definition at line 58 of file FPGATrackSimMapMakerAlg.h.


The documentation for this struct was generated from the following file:
FPGATrackSimMapMakerAlg::Module::lyr
int lyr
Definition: FPGATrackSimMapMakerAlg.h:54
python.SystemOfUnits.m
int m
Definition: SystemOfUnits.py:91
FPGATrackSimMapMakerAlg::Module::det
SiliconTech det
Definition: FPGATrackSimMapMakerAlg.h:52
FPGATrackSimMapMakerAlg::Module::phi
int phi
Definition: FPGATrackSimMapMakerAlg.h:56
FPGATrackSimMapMakerAlg::Module::bec
DetectorZone bec
Definition: FPGATrackSimMapMakerAlg.h:53
FPGATrackSimMapMakerAlg::Module::eta
int eta
Definition: FPGATrackSimMapMakerAlg.h:55