ATLAS Offline Software
|
Class representing a b-jet candidate created at EF. More...
#include <TrigEFBjet.h>
Public Types | |
enum | Kind { P4EETAPHIM, P4IPTCOTTHPHIM, P4PTETAPHIM, P4PXPYPZE, UNKNOWN } |
Public Member Functions | |
TrigEFBjet () | |
Constructor. More... | |
TrigEFBjet (int, float, float, const Rec::TrackParticleContainer *, const VxContainer *, const VxContainer *, float, float, float xcomb, float xIP1d, float xIP2d, float xIP3d, float xChi2, float xSv, float xmvtx, float xevtx, float xnvtx) | |
Constructor used by TrigBjetFex algorithm. More... | |
~TrigEFBjet ()=default | |
Destructor. More... | |
int | roiId () const |
To retrieve identifier of the RoI (unique to each LVL1 RoI). More... | |
float | prmVtx () const |
To retrieve reconstructed z of primary vertex. More... | |
void | validate (bool v) |
To validate TrigEFBjet object. More... | |
bool | isValid () const |
To know if TrigEFBjet object is valid. More... | |
const Rec::TrackParticleContainer * | TrackCollection () const |
To retrieve pointer to track collection of type TrackParticle. More... | |
const VxContainer * | PrmVertexCollection () const |
To retrieve pointer to primary vertex collection of type VxVertex. More... | |
const VxContainer * | SecVertexCollection () const |
To retrieve pointer to secondary vertex collection of type VxVertex. More... | |
float | xComb () const |
To retrieve best likelihood weight (combination of IP3D and SV). More... | |
float | xIP1D () const |
To retrieve likelihood weight based on longitudinal impact parameter. More... | |
float | xIP2D () const |
To retrieve likelihood weight based on transverse impact parameter. More... | |
float | xIP3D () const |
To retrieve likelihood weight based on 2D combination of impact parameters. More... | |
float | xCHI2 () const |
To retrieve probability weight based on chi2 of track fit. More... | |
float | xSV () const |
To retrieve likelihood weight based on secondary vertex. More... | |
float | xMVtx () const |
To retrieve likelihood weight based on mass of secondary vertex. More... | |
float | xEVtx () const |
To retrieve likelihood weight based on energy of secondary vertex. More... | |
float | xNVtx () const |
To retrieve likelihood weight based on number of tracks linked to secondary vertex. More... | |
virtual double | pt () const |
get pt data member More... | |
virtual double | eta () const |
get eta data member More... | |
virtual double | phi () const |
get phi data member More... | |
virtual double | m () const |
get mass data member More... | |
virtual void | setPt (double thePt) |
set pt data member More... | |
virtual void | setEta (double theEta) |
set eta data member More... | |
virtual void | setPhi (double thePhi) |
set phi data member More... | |
virtual void | setM (double theM) |
set mass data member More... | |
virtual void | set4Mom (const I4Momentum &theI4Mom) |
set all 4-mom from another I4Momentum reference More... | |
virtual void | set4Mom (const I4Momentum *const theI4Mom) |
set all 4-mom from another I4Momentum pointer More... | |
virtual void | set4Mom (const CLHEP::HepLorentzVector &theHlv) |
set all 4-mom from a CLHEP HepLorentzVector More... | |
virtual const I4MomentumError * | errors () const |
Access to errors, if available; returns 0 if no errors. 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... | |
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 |
Protected Attributes | |
double | m_pt |
double | m_eta |
double | m_phi |
double | m_m |
Private Attributes | |
bool | m_valid |
Boolean variable to declare the object as a valid one. More... | |
int | m_roiID |
Identifier of the RoI. More... | |
const Rec::TrackParticleContainer * | m_track |
Pointer to the track collection. More... | |
const VxContainer * | m_prmvertex |
Pointer to the primary vertex collection. More... | |
const VxContainer * | m_secvertex |
Pointer to the secondary vertex collection. More... | |
float | m_prmVtx |
Z coordinate of the primary vertex. More... | |
float | m_xcomb |
Best likelihood weight (combination of IP3D and SV) - not filled yet. More... | |
float | m_xIP1d |
Likelihood weight based on transverse impact parameter. More... | |
float | m_xIP2d |
Likelihood weight based on longitudinal impact parameter. More... | |
float | m_xIP3d |
Likelihood weight based on 2D combination of impact parameters. More... | |
float | m_xChi2 |
Probability weight based on chi2 of track fit. More... | |
float | m_xSv |
Likelihood weight based on secondary vertex - not filled yet. More... | |
float | m_xmvtx |
Likelihood weight based on mass of secondary vertex - not filled yet. More... | |
float | m_xevtx |
Likelihood weight based on energy of secondary vertex - not filled yet. More... | |
float | m_xnvtx |
Likelihood weight based on number of tracks linked to secondary vertex - not filled yet. More... | |
Class representing a b-jet candidate created at EF.
Definition at line 37 of file TrigEFBjet.h.
|
inherited |
Enumerator | |
---|---|
P4EETAPHIM | |
P4IPTCOTTHPHIM | |
P4PTETAPHIM | |
P4PXPYPZE | |
UNKNOWN |
Definition at line 33 of file I4Momentum.h.
TrigEFBjet::TrigEFBjet | ( | ) |
TrigEFBjet::TrigEFBjet | ( | int | roi, |
float | eta, | ||
float | phi, | ||
const Rec::TrackParticleContainer * | track, | ||
const VxContainer * | prmvertex, | ||
const VxContainer * | secvertex, | ||
float | prmvtx, | ||
float | ptJet, | ||
float | xcomb, | ||
float | xIP1d, | ||
float | xIP2d, | ||
float | xIP3d, | ||
float | xChi2, | ||
float | xSv, | ||
float | xmvtx, | ||
float | xevtx, | ||
float | xnvtx | ||
) |
|
default |
Destructor.
|
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.
Reimplemented from P4PtEtaPhiMBase.
Definition at line 7 of file P4PtEtaPhiM.cxx.
|
virtualinherited |
transverse energy defined to be e*sin(theta)
Implements I4Momentum.
Definition at line 101 of file P4PtEtaPhiMBase.cxx.
|
inlinevirtualinherited |
|
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.
|
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 TrigEFBjet::isValid | ( | ) | const |
|
inlinevirtualinherited |
tells what kind of P4XYZT this is
Implements I4Momentum.
Definition at line 64 of file P4PtEtaPhiMBase.h.
|
inlinevirtualinherited |
|
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.
|
inlinevirtualinherited |
const VxContainer * TrigEFBjet::PrmVertexCollection | ( | ) | const |
To retrieve pointer to primary vertex collection of type VxVertex.
Definition at line 71 of file TrigEFBjet.cxx.
float TrigEFBjet::prmVtx | ( | ) | const |
|
inlinevirtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
|
virtualinherited |
int TrigEFBjet::roiId | ( | ) | const |
To retrieve identifier of the RoI (unique to each LVL1 RoI).
Definition at line 66 of file TrigEFBjet.cxx.
const VxContainer * TrigEFBjet::SecVertexCollection | ( | ) | const |
To retrieve pointer to secondary vertex collection of type VxVertex.
Definition at line 72 of file TrigEFBjet.cxx.
|
inlinevirtualinherited |
set all 4-mom from a CLHEP HepLorentzVector
Reimplemented from P4PtEtaPhiMBase.
Definition at line 140 of file P4PtEtaPhiM.h.
|
inlinevirtualinherited |
set all 4-mom from another I4Momentum reference
Reimplemented from P4PtEtaPhiMBase.
Definition at line 127 of file P4PtEtaPhiM.h.
|
inlinevirtualinherited |
set all 4-mom from another I4Momentum pointer
Reimplemented from P4PtEtaPhiMBase.
Definition at line 135 of file P4PtEtaPhiM.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 71 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
inlinevirtualinherited |
|
inlinevirtualinherited |
|
inlinevirtualinherited |
|
inlinevirtualinherited |
|
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 |
const Rec::TrackParticleContainer * TrigEFBjet::TrackCollection | ( | ) | const |
To retrieve pointer to track collection of type TrackParticle.
Definition at line 70 of file TrigEFBjet.cxx.
void TrigEFBjet::validate | ( | bool | v | ) |
float TrigEFBjet::xCHI2 | ( | ) | const |
To retrieve probability weight based on chi2 of track fit.
Definition at line 78 of file TrigEFBjet.cxx.
float TrigEFBjet::xComb | ( | ) | const |
To retrieve best likelihood weight (combination of IP3D and SV).
Definition at line 74 of file TrigEFBjet.cxx.
float TrigEFBjet::xEVtx | ( | ) | const |
To retrieve likelihood weight based on energy of secondary vertex.
Definition at line 81 of file TrigEFBjet.cxx.
float TrigEFBjet::xIP1D | ( | ) | const |
To retrieve likelihood weight based on longitudinal impact parameter.
Definition at line 75 of file TrigEFBjet.cxx.
float TrigEFBjet::xIP2D | ( | ) | const |
To retrieve likelihood weight based on transverse impact parameter.
Definition at line 76 of file TrigEFBjet.cxx.
float TrigEFBjet::xIP3D | ( | ) | const |
To retrieve likelihood weight based on 2D combination of impact parameters.
Definition at line 77 of file TrigEFBjet.cxx.
float TrigEFBjet::xMVtx | ( | ) | const |
To retrieve likelihood weight based on mass of secondary vertex.
Definition at line 80 of file TrigEFBjet.cxx.
float TrigEFBjet::xNVtx | ( | ) | const |
To retrieve likelihood weight based on number of tracks linked to secondary vertex.
Definition at line 82 of file TrigEFBjet.cxx.
float TrigEFBjet::xSV | ( | ) | const |
To retrieve likelihood weight based on secondary vertex.
Definition at line 79 of file TrigEFBjet.cxx.
|
protectedinherited |
Definition at line 77 of file P4PtEtaPhiM.h.
|
protectedinherited |
Definition at line 79 of file P4PtEtaPhiM.h.
|
protectedinherited |
Definition at line 78 of file P4PtEtaPhiM.h.
|
private |
Pointer to the primary vertex collection.
Definition at line 102 of file TrigEFBjet.h.
|
private |
Z coordinate of the primary vertex.
Definition at line 107 of file TrigEFBjet.h.
|
protectedinherited |
Definition at line 76 of file P4PtEtaPhiM.h.
|
private |
Identifier of the RoI.
Definition at line 97 of file TrigEFBjet.h.
|
private |
Pointer to the secondary vertex collection.
Definition at line 104 of file TrigEFBjet.h.
|
private |
Pointer to the track collection.
Definition at line 100 of file TrigEFBjet.h.
|
private |
Boolean variable to declare the object as a valid one.
Definition at line 94 of file TrigEFBjet.h.
|
private |
Probability weight based on chi2 of track fit.
Definition at line 118 of file TrigEFBjet.h.
|
private |
Best likelihood weight (combination of IP3D and SV) - not filled yet.
Definition at line 110 of file TrigEFBjet.h.
|
private |
Likelihood weight based on energy of secondary vertex - not filled yet.
Definition at line 124 of file TrigEFBjet.h.
|
private |
Likelihood weight based on transverse impact parameter.
Definition at line 112 of file TrigEFBjet.h.
|
private |
Likelihood weight based on longitudinal impact parameter.
Definition at line 114 of file TrigEFBjet.h.
|
private |
Likelihood weight based on 2D combination of impact parameters.
Definition at line 116 of file TrigEFBjet.h.
|
private |
Likelihood weight based on mass of secondary vertex - not filled yet.
Definition at line 122 of file TrigEFBjet.h.
|
private |
Likelihood weight based on number of tracks linked to secondary vertex - not filled yet.
Definition at line 126 of file TrigEFBjet.h.
|
private |
Likelihood weight based on secondary vertex - not filled yet.
Definition at line 120 of file TrigEFBjet.h.
|
staticinherited |
Definition at line 52 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.
|
staticinherited |
Definition at line 53 of file AthenaKernel/AthenaKernel/IAthenaBarCode.h.