ATLAS Offline Software
|
Muon RoI class for analysis. More...
#include <Muon_ROI.h>
Public Types | |
enum | RoISource { Barrel, Endcap, Forward } |
RoI source enumeration. More... | |
enum | Hemisphere { Positive, Negative } |
RoI hemisphere enumeration. More... | |
enum | Charge { Neg = 0, Pos = 1, Undef = 100 } |
Charge sign. More... | |
enum | Kind { P4EETAPHIM, P4IPTCOTTHPHIM, P4PTETAPHIM, P4PXPYPZE, UNKNOWN } |
Public Member Functions | |
Muon_ROI (uint32_t roiWord, double eta, double phi, const std::string &thrName, double thrValue) | |
Constructor used when creating the object from RoIBResult data. More... | |
Muon_ROI () | |
Default constructor (for persistency purposes) More... | |
virtual | ~Muon_ROI () |
Destructor. More... | |
uint32_t | getROIWord () const |
Return the original 32-bit RoI word given by the LVL1 muon trigger. More... | |
float | getEta () const |
Legacy function returning the eta coordinate of the RoI. More... | |
float | getPhi () const |
Legacy function returning the phi coordinate of the RoI. More... | |
const std::string & | getThrName () const |
Return the name of the highest threshold this RoI passed. More... | |
float | getThrValue () const |
Return the value of the highest threshold this RoI passed. More... | |
int | getThrNumber () const |
Get the logic number of the highest threshold this RoI passed. More... | |
int | getRoI () const |
Get the "RoI number" (position inside the sector) More... | |
int | getSectorAddress () const |
Get the full sector address. More... | |
bool | isFirstCandidate () const |
Returns if the candidate had the highest pT in the sector. More... | |
bool | isMoreCandInRoI () const |
Returns if there were other muons detected in the same RoI. More... | |
bool | isMoreCandInSector () const |
Returns if there were other muons detected in the same sector. More... | |
RoISource | getSource () const |
Returns the system that detected the muon candidate. More... | |
Hemisphere | getHemisphere () const |
Returns the hemisphere that detected the muon candidate. More... | |
Charge | getCharge () const |
Returns the charge sign of the muon candidate. More... | |
bool | isVetoed () const |
Returns the veto flag for the candidate. More... | |
virtual double | pt () const |
Return the value of the highest threshold this RoI passed. More... | |
virtual double | eta () const |
Return the eta coordinate of the center of the RoI. More... | |
virtual double | phi () const |
Return the phi coordinate of the center of the RoI. More... | |
virtual double | m () const |
Return the mass of the object, always 0.0 for RoIs. More... | |
virtual double | px () const |
x component of momentum More... | |
virtual double | py () const |
y component of momentum More... | |
virtual double | pz () const |
z component of momentum More... | |
virtual double | e () const |
energy More... | |
virtual double | p () const |
magnitude of 3-momentum. More... | |
virtual double | p2 () const |
square of momentum magnitude More... | |
virtual double | m2 () const |
mass squared More... | |
virtual double | et () const |
transverse energy defined to be e*sin(theta) More... | |
virtual double | iPt () const |
inverse of transverse momentum More... | |
virtual double | rapidity () const |
rapidity More... | |
virtual double | cosPhi () const |
cosinus phi More... | |
virtual double | sinPhi () const |
sinus phi More... | |
virtual double | cotTh () const |
cottan theta More... | |
virtual double | cosTh () const |
cosinus theta More... | |
virtual double | sinTh () const |
sinus theta More... | |
virtual double | tanTh () const |
tan theta More... | |
virtual CLHEP::HepLorentzVector | hlv () const |
HepLorentzVector Special implementation from Frank Paige : if negative energy, points in opposite direction but eta and phi still the same More... | |
virtual const I4MomentumError * | errors () const |
Access to errors, if available; returns 0 if no errors. More... | |
virtual void | set4Mom (const I4Momentum &theI4Mom) |
set all 4-mom from another I4Momentum reference DUMMY IMPLEMENTATION More... | |
virtual void | set4Mom (const I4Momentum *const theI4Mom) |
set all 4-mom from another I4Momentum pointer DUMMY IMPLEMENTATION More... | |
virtual void | set4Mom (const CLHEP::HepLorentzVector &theHlv) |
set all 4-mom from a CLHEP HepLorentzVector DUMMY IMPLEMENTATION More... | |
I4Momentum::Kind | kind () const |
tells what kind of P4XYZT this is More... | |
virtual std::ostream & | dump (std::ostream &out) const |
Print I4Momentum content. More... | |
virtual void | fillToken (INavigationToken &) const |
virtual void | fillToken (INavigationToken &, const std::any &) const |
virtual AthenaBarCode_t | getAthenaBarCode () const |
virtual void | setAthenaBarCode (AthenaBarCode_t) |
virtual bool | hasSameAthenaBarCode (const IAthenaBarCode &) const |
virtual bool | hasSameAthenaBarCodeExceptVersion (const IAthenaBarCode &) const |
virtual AthenaBarCodeVersion_t | getVersion () const |
virtual void | newVersion () |
virtual void | setVersion (AthenaBarCodeVersion_t) |
Static Public Attributes | |
static const AthenaBarCode_t | UNDEFINEDBARCODE = (AthenaBarCode_t)(-1) |
static const AthenaBarCode_t | UNDEFINEDVERSION = UNDEFINEDBARCODE |
Private Attributes | |
uint32_t | m_roiWord |
32bit encoded ROI word More... | |
float | m_eta |
eta coordinate of RoI More... | |
float | m_phi |
phi coordinate of RoI More... | |
std::string | m_thrName |
Name of the highest threshold this RoI passed. More... | |
float | m_thrValue |
Value of the highest threshold this RoI passed. More... | |
Muon RoI class for analysis.
The RoI now inherits from INavigable4Momentum to make it easier to use in an analysis (especially EventView).
Definition at line 33 of file Muon_ROI.h.
enum Muon_ROI::Charge |
enum Muon_ROI::Hemisphere |
RoI hemisphere enumeration.
Enumerator | |
---|---|
Positive | The candidate came from the +z side (side A) |
Negative | The candidate came from the -z side (side C) |
Definition at line 53 of file Muon_ROI.h.
|
inherited |
Enumerator | |
---|---|
P4EETAPHIM | |
P4IPTCOTTHPHIM | |
P4PTETAPHIM | |
P4PXPYPZE | |
UNKNOWN |
Definition at line 33 of file I4Momentum.h.
enum Muon_ROI::RoISource |
RoI source enumeration.
Enumerator | |
---|---|
Barrel | The muon candidate was detected in the barrel region. |
Endcap | The muon candidate was detected in the endcap region. |
Forward | The muon candidate was detected in the forward region. |
Definition at line 47 of file Muon_ROI.h.
Muon_ROI::Muon_ROI | ( | uint32_t | roiWord, |
double | eta, | ||
double | phi, | ||
const std::string & | thrName, | ||
double | thrValue | ||
) |
Constructor used when creating the object from RoIBResult data.
The constructor just initialises all the member variables to the values given to it.
Definition at line 13 of file Muon_ROI.cxx.
Muon_ROI::Muon_ROI | ( | ) |
Default constructor (for persistency purposes)
The constructor initialises all member variables to dummy initial values.
Definition at line 23 of file Muon_ROI.cxx.
|
virtual |
Destructor.
The destructor is virtual, since the base classes have virtual functions...
Definition at line 32 of file Muon_ROI.cxx.
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
Print I4Momentum
content.
Implements I4Momentum.
Definition at line 147 of file P4PtEtaPhiMBase.cxx.
|
virtualinherited |
|
virtualinherited |
Access to errors, if available; returns 0 if no errors.
Implements I4Momentum.
Reimplemented in P4PtEtaPhiM.
Definition at line 162 of file P4PtEtaPhiMBase.cxx.
|
virtualinherited |
transverse energy defined to be e*sin(theta)
Implements I4Momentum.
Definition at line 101 of file P4PtEtaPhiMBase.cxx.
|
inlinevirtual |
Return the eta coordinate of the center of the RoI.
Implements I4Momentum.
Definition at line 99 of file Muon_ROI.h.
|
inlinevirtualinherited |
|
inlinevirtualinherited |
|
inlinevirtualinherited |
Reimplemented in Rec::TrackParticle, Analysis::ParticleShallowClone, ParticleSigStateImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleImpl< INavigable_t, I4Momentum_t, IParticle_t >, and AthenaBarCodeBase.
Definition at line 67 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
Muon_ROI::Charge Muon_ROI::getCharge | ( | ) | const |
Returns the charge sign of the muon candidate.
Endcap and forward sectors can tell you what was the charge of the muon candidate.
Barrel candidates can't do this.
Definition at line 160 of file Muon_ROI.cxx.
|
inline |
Muon_ROI::Hemisphere Muon_ROI::getHemisphere | ( | ) | const |
Returns the hemisphere that detected the muon candidate.
The function decodes the sector hemisphere encoded in the 8-bit sector address into an easy to understand enumeration.
Definition at line 144 of file Muon_ROI.cxx.
|
inline |
int Muon_ROI::getRoI | ( | ) | const |
Get the "RoI number" (position inside the sector)
A muon's spacial location is identified from the sector number and the hemisphere that detected it.
Each sector is additionally divided into multiple areas, called RoIs that tell you which part of the sector the muon candidate was detected in.
Definition at line 56 of file Muon_ROI.cxx.
|
inline |
Return the original 32-bit RoI word given by the LVL1 muon trigger.
Definition at line 65 of file Muon_ROI.h.
int Muon_ROI::getSectorAddress | ( | ) | const |
Get the full sector address.
The sector address is an 8-bit identifier of the sector.
For its detailed description, see page 38 of https://edms.cern.ch/file/248757/1/mirod.pdf
The least significant bit shown which hemisphere the sector is in (0: positive side, 1: negative side), the upper (1 or 2) bits show what kind of sector it is, the rest of the address is the number of the sector.
Definition at line 80 of file Muon_ROI.cxx.
Muon_ROI::RoISource Muon_ROI::getSource | ( | ) | const |
Returns the system that detected the muon candidate.
The function decodes the sector type encoded in the 8-bit sector address into an easy to understand enumeration.
Definition at line 126 of file Muon_ROI.cxx.
|
inline |
int Muon_ROI::getThrNumber | ( | ) | const |
Get the logic number of the highest threshold this RoI passed.
Each detected LVL1 muon candidate is assigned a pT threshold.
The hardware can assign one of 6 pT thresholds to the candidate, which are numbered from 1 to 6.
Definition at line 43 of file Muon_ROI.cxx.
|
inline |
Return the value of the highest threshold this RoI passed.
Definition at line 73 of file Muon_ROI.h.
|
inlinevirtualinherited |
Reimplemented in Analysis::ParticleShallowClone, Rec::TrackParticle, ParticleSigStateImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleImpl< INavigable_t, I4Momentum_t, IParticle_t >, and AthenaBarCodeBase.
Definition at line 85 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
inlinevirtualinherited |
Reimplemented in AthenaBarCodeBase, Rec::TrackParticle, Analysis::ParticleShallowClone, ParticleSigStateImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleSigStateImpl< Navigable< INavigable4MomentumCollection, double >, P4ImplPxPyPzE >, ParticleSigStateImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleImpl< NavigableTerminalNode, P4ImplEEtaPhiM, ParticleEvent::Base >, ParticleImpl< TruthParticleNavigation, TruthParticleMomentum, TruthParticleBase >, ParticleImpl< CompositeParticleNavigation, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4PtEtaPhiM >, ParticleImpl< ::Analysis::TauJetNavigation, ::P4ImplEEtaPhiM >, ParticleImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< egammaNavigation, P4ImplEEtaPhiM >, ParticleImpl< ::Analysis::MuonNavigation, ::P4ImplIPtCotThPhiM >, ParticleImpl< NavigableTerminalNode, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4ImplIPtCotThPhiM, ParticleEvent::Base >, and ParticleImpl< NeutrinoNavigation, P4ImplPxPyPzE >.
Definition at line 77 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
inlinevirtualinherited |
Reimplemented in AthenaBarCodeBase, Rec::TrackParticle, Analysis::ParticleShallowClone, ParticleSigStateImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleSigStateImpl< Navigable< INavigable4MomentumCollection, double >, P4ImplPxPyPzE >, ParticleSigStateImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleImpl< NavigableTerminalNode, P4ImplEEtaPhiM, ParticleEvent::Base >, ParticleImpl< TruthParticleNavigation, TruthParticleMomentum, TruthParticleBase >, ParticleImpl< CompositeParticleNavigation, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4PtEtaPhiM >, ParticleImpl< ::Analysis::TauJetNavigation, ::P4ImplEEtaPhiM >, ParticleImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< egammaNavigation, P4ImplEEtaPhiM >, ParticleImpl< ::Analysis::MuonNavigation, ::P4ImplIPtCotThPhiM >, ParticleImpl< NavigableTerminalNode, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4ImplIPtCotThPhiM, ParticleEvent::Base >, and ParticleImpl< NeutrinoNavigation, P4ImplPxPyPzE >.
Definition at line 81 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
virtualinherited |
HepLorentzVector Special implementation from Frank Paige : if negative energy, points in opposite direction but eta and phi still the same
Implements I4Momentum.
Definition at line 128 of file P4PtEtaPhiMBase.cxx.
|
virtualinherited |
inverse of transverse momentum
Implements I4Momentum.
Definition at line 106 of file P4PtEtaPhiMBase.cxx.
bool Muon_ROI::isFirstCandidate | ( | ) | const |
Returns if the candidate had the highest pT in the sector.
Each muon trigger sector can only send information about a maximum of two LVL1 muon candidate to the central trigger.
If this flag is true
, this candidate had the highest pT threshold assigned to it in its sector. If it's false
, it was the second candidate in its sector.
Definition at line 92 of file Muon_ROI.cxx.
bool Muon_ROI::isMoreCandInRoI | ( | ) | const |
Returns if there were other muons detected in the same RoI.
One RoI (one part of the trigger sector) can only send information about one LVL1 muon candidate to the central trigger.
This flag is true
if the particular RoI that detected this muon candidate also detected another candidate with lower pT.
Definition at line 103 of file Muon_ROI.cxx.
bool Muon_ROI::isMoreCandInSector | ( | ) | const |
Returns if there were other muons detected in the same sector.
This flag is set to true
if the sector that this muon candidate came from, detected more than 2 LVL1 muon candidates.
Definition at line 114 of file Muon_ROI.cxx.
bool Muon_ROI::isVetoed | ( | ) | const |
Returns the veto flag for the candidate.
When the overlap handling is activated in the MuCTPI, candidates can be ignored in the multiplicity sum sent to the CTP.
This flag tells you whether this particular candidate was ignored in the multiplicity sum.
Definition at line 175 of file Muon_ROI.cxx.
|
inlinevirtualinherited |
tells what kind of P4XYZT this is
Implements I4Momentum.
Definition at line 64 of file P4PtEtaPhiMBase.h.
|
inlinevirtual |
Return the mass of the object, always 0.0 for RoIs.
Implements I4Momentum.
Definition at line 103 of file Muon_ROI.h.
|
virtualinherited |
|
inlinevirtualinherited |
Reimplemented in Rec::TrackParticle, ParticleSigStateImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleSigStateImpl< Navigable< INavigable4MomentumCollection, double >, P4ImplPxPyPzE >, ParticleSigStateImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleImpl< NavigableTerminalNode, P4ImplEEtaPhiM, ParticleEvent::Base >, ParticleImpl< TruthParticleNavigation, TruthParticleMomentum, TruthParticleBase >, ParticleImpl< CompositeParticleNavigation, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4PtEtaPhiM >, ParticleImpl< ::Analysis::TauJetNavigation, ::P4ImplEEtaPhiM >, ParticleImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< egammaNavigation, P4ImplEEtaPhiM >, ParticleImpl< ::Analysis::MuonNavigation, ::P4ImplIPtCotThPhiM >, ParticleImpl< NavigableTerminalNode, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4ImplIPtCotThPhiM, ParticleEvent::Base >, ParticleImpl< NeutrinoNavigation, P4ImplPxPyPzE >, and AthenaBarCodeBase.
Definition at line 89 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
virtualinherited |
magnitude of 3-momentum.
Special implementation from Frank Paige : if negative energy p is negative but eta and phi still the same.
Implements I4Momentum.
Definition at line 27 of file P4PtEtaPhiMBase.cxx.
|
virtualinherited |
square of momentum magnitude
Implements I4Momentum.
Definition at line 40 of file P4PtEtaPhiMBase.cxx.
|
inlinevirtual |
Return the phi coordinate of the center of the RoI.
Implements I4Momentum.
Definition at line 101 of file Muon_ROI.h.
|
inlinevirtual |
Return the value of the highest threshold this RoI passed.
Implements I4Momentum.
Definition at line 97 of file Muon_ROI.h.
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
set all 4-mom from a CLHEP HepLorentzVector DUMMY IMPLEMENTATION
Implements I4Momentum.
Reimplemented in P4PtEtaPhiM.
Definition at line 180 of file P4PtEtaPhiMBase.cxx.
|
virtualinherited |
set all 4-mom from another I4Momentum reference DUMMY IMPLEMENTATION
Implements I4Momentum.
Reimplemented in P4PtEtaPhiM.
Definition at line 167 of file P4PtEtaPhiMBase.cxx.
|
virtualinherited |
set all 4-mom from another I4Momentum pointer DUMMY IMPLEMENTATION
Implements I4Momentum.
Reimplemented in P4PtEtaPhiM.
Definition at line 173 of file P4PtEtaPhiMBase.cxx.
|
inlinevirtualinherited |
Reimplemented in Rec::TrackParticle, ParticleSigStateImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleSigStateImpl< Navigable< INavigable4MomentumCollection, double >, P4ImplPxPyPzE >, ParticleSigStateImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleImpl< NavigableTerminalNode, P4ImplEEtaPhiM, ParticleEvent::Base >, ParticleImpl< TruthParticleNavigation, TruthParticleMomentum, TruthParticleBase >, ParticleImpl< CompositeParticleNavigation, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4PtEtaPhiM >, ParticleImpl< ::Analysis::TauJetNavigation, ::P4ImplEEtaPhiM >, ParticleImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< egammaNavigation, P4ImplEEtaPhiM >, ParticleImpl< ::Analysis::MuonNavigation, ::P4ImplIPtCotThPhiM >, ParticleImpl< NavigableTerminalNode, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4ImplIPtCotThPhiM, ParticleEvent::Base >, ParticleImpl< NeutrinoNavigation, P4ImplPxPyPzE >, and AthenaBarCodeBase.
Definition at line 71 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
inlinevirtualinherited |
Reimplemented in Rec::TrackParticle, ParticleSigStateImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleSigStateImpl< Navigable< INavigable4MomentumCollection, double >, P4ImplPxPyPzE >, ParticleSigStateImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< INavigable_t, I4Momentum_t, IParticle_t >, ParticleImpl< NavigableTerminalNode, P4ImplEEtaPhiM, ParticleEvent::Base >, ParticleImpl< TruthParticleNavigation, TruthParticleMomentum, TruthParticleBase >, ParticleImpl< CompositeParticleNavigation, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4PtEtaPhiM >, ParticleImpl< ::Analysis::TauJetNavigation, ::P4ImplEEtaPhiM >, ParticleImpl< Navigable< DataVector< INavigable4Momentum >, double, std::vector< std::pair< ElementLink< DataVector< INavigable4Momentum > >, double > > >, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< egammaNavigation, P4ImplEEtaPhiM >, ParticleImpl< ::Analysis::MuonNavigation, ::P4ImplIPtCotThPhiM >, ParticleImpl< NavigableTerminalNode, P4ImplPxPyPzE, ParticleEvent::Base >, ParticleImpl< NavigableTerminalNode, P4ImplIPtCotThPhiM, ParticleEvent::Base >, ParticleImpl< NeutrinoNavigation, P4ImplPxPyPzE >, and AthenaBarCodeBase.
Definition at line 93 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
private |
eta coordinate of RoI
Definition at line 108 of file Muon_ROI.h.
|
private |
phi coordinate of RoI
Definition at line 109 of file Muon_ROI.h.
|
private |
32bit encoded ROI word
Definition at line 106 of file Muon_ROI.h.
|
private |
Name of the highest threshold this RoI passed.
Definition at line 111 of file Muon_ROI.h.
|
private |
Value of the highest threshold this RoI passed.
Definition at line 112 of file Muon_ROI.h.
|
staticinherited |
Definition at line 52 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
staticinherited |
Definition at line 53 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.