ATLAS Offline Software
Public Types | Public Member Functions | Protected Attributes | Private Member Functions | Private Attributes | Friends | List of all members
InDet::CompetingPixelClustersOnTrack Class Reference

#include <CompetingPixelClustersOnTrack.h>

Inheritance diagram for InDet::CompetingPixelClustersOnTrack:
Collaboration diagram for InDet::CompetingPixelClustersOnTrack:

Public Types

typedef double AssignmentProb
 Type def of Assignment probability: probability for a certain RIO_OnTrack to be assigned to the track. More...
 

Public Member Functions

 CompetingPixelClustersOnTrack ()
 Default Constructor for POOL. More...
 
 CompetingPixelClustersOnTrack (const CompetingPixelClustersOnTrack &compROT)
 Copy Constructor. More...
 
CompetingPixelClustersOnTrackoperator= (const CompetingPixelClustersOnTrack &compROT)
 Assignment operator. More...
 
CompetingPixelClustersOnTrackoperator= (CompetingPixelClustersOnTrack &&compROT) noexcept
 
 CompetingPixelClustersOnTrack (std::vector< const InDet::PixelClusterOnTrack * > &&childrots, std::vector< AssignmentProb > &&assgnProb)
 Constructor with all parameters: PLEASE do not use directly, but call InDet::CompetingPixelClustersOnTrackTool, otherwise inconsistency of the data will be very probable. More...
 
virtual ~CompetingPixelClustersOnTrack ()
 Destructor. More...
 
CompetingPixelClustersOnTrackclone () const
 needed to avoid excessive RTTI More...
 
std::unique_ptr< CompetingPixelClustersOnTrackuniqueClone () const
 NVI method returning unique_ptr clone. More...
 
const Trk::SurfaceassociatedSurface () const
 returns the surface for the local to global transformation . More...
 
const Amg::Vector3DglobalPosition () const
 Interface method to get the global Position. More...
 
unsigned int numberOfContainedROTs () const
 Number of RIO_OnTracks to be contained by this CompetingRIOsOnTrack. More...
 
const std::vector< const InDet::PixelClusterOnTrack * > & containedROTs () const
 returns the vector of PixelClusterOnTrack objects . More...
 
const InDet::PixelClusterOnTrackrioOnTrack (unsigned int) const
 returns the RIO_OnTrack (also known as ROT) objects depending on the integer More...
 
MsgStream & dump (MsgStream &out) const
 returns some information about this MeasurementBase/CompetingPixelClustersOnTrack. More...
 
std::ostream & dump (std::ostream &out) const
 returns some information about this MeasurementBase/CompetingPixelClustersOnTrack. More...
 
unsigned int indexOfMaxAssignProb () const
 Index of the ROT with the highest assignment probability. More...
 
AssignmentProb assignmentProbability (unsigned int indx) const
 returns the AssignmentProbability depending on the integer. More...
 
virtual void setLocalParametersAndErrorMatrix ()
 recalculate the LocalParameters and ErrorMatrix More...
 
virtual bool type (MeasurementBaseType::Type type) const override final
 Extended method checking the type. More...
 
const LocalParameters & localParameters () const
 Interface method to get the LocalParameters. More...
 
const Amg::MatrixXlocalCovariance () const
 Interface method to get the localError. More...
 

Protected Attributes

std::vector< AssignmentProbm_assignProb
 assignment probabilities of the ROTs More...
 
LocalParameters m_localParams
 
Amg::MatrixX m_localCovariance
 

Private Member Functions

void clearChildRotVector ()
 private method to clear the Trk::RIO_OnTrack vector More...
 
bool ROTsHaveCommonSurface (const bool withNonVanishingAssignProb=true) const
 Have all the contained ROTs a common associated surface? If withNonVanishingAssignProb==true just the ROTs with non-vanishing assignment probabilities are checked. More...
 

Private Attributes

CxxUtils::CachedUniquePtr< const Amg::Vector3Dm_globalPosition
 The global Position. More...
 
std::vector< const InDet::PixelClusterOnTrack * > m_containedChildRots
 The vector of contained InDet::PixelClusterOnTrack objects. More...
 

Friends

class CompetingPixelClustersOnTrackTool
 InDet::CompetingPixelClustersOnTrackTool is a friend to allow for updates of the assignment probabilities. More...
 

Detailed Description

Class for competing PixelClusters, it extends the Trk::CompetingRIOsOnTrack base class.

This class is used by the Deterministic Annealing Filter to handle several PixelClusterOnTrack in one detector element, which compete against each other in being assigned to a track. In contrast to the InDet::CompetingTRT_DriftCirclesOnTrack all competing measurements of the InDet::CompetingPixelClustersOnTrack have to be on the same detector element (i.e. have a common associated surface). localParameters() and localErrorMatrix() return the mean values according to the weights (assignment probabilities).

Author
Sebas.nosp@m.tian.nosp@m..Flei.nosp@m.schm.nosp@m.ann@c.nosp@m.ern..nosp@m.ch

Definition at line 46 of file CompetingPixelClustersOnTrack.h.

Member Typedef Documentation

◆ AssignmentProb

Type def of Assignment probability: probability for a certain RIO_OnTrack to be assigned to the track.

Definition at line 69 of file CompetingRIOsOnTrack.h.

Constructor & Destructor Documentation

◆ CompetingPixelClustersOnTrack() [1/3]

InDet::CompetingPixelClustersOnTrack::CompetingPixelClustersOnTrack ( )

Default Constructor for POOL.

Definition at line 16 of file CompetingPixelClustersOnTrack.cxx.

20 {
21 }

◆ CompetingPixelClustersOnTrack() [2/3]

InDet::CompetingPixelClustersOnTrack::CompetingPixelClustersOnTrack ( const CompetingPixelClustersOnTrack compROT)

Copy Constructor.

Definition at line 24 of file CompetingPixelClustersOnTrack.cxx.

26  : Trk::CompetingRIOsOnTrack(compROT)
29 {
30  std::vector<const InDet::PixelClusterOnTrack*>::const_iterator rotIter =
31  compROT.m_containedChildRots.begin();
32  for (; rotIter != compROT.m_containedChildRots.end(); ++rotIter) {
33  m_containedChildRots.push_back((*rotIter)->clone());
34  }
35  if (compROT.m_globalPosition) {
36  m_globalPosition.store(std::make_unique<const Amg::Vector3D>(*compROT.m_globalPosition));
37  }
38 }

◆ CompetingPixelClustersOnTrack() [3/3]

InDet::CompetingPixelClustersOnTrack::CompetingPixelClustersOnTrack ( std::vector< const InDet::PixelClusterOnTrack * > &&  childrots,
std::vector< AssignmentProb > &&  assgnProb 
)

Constructor with all parameters: PLEASE do not use directly, but call InDet::CompetingPixelClustersOnTrackTool, otherwise inconsistency of the data will be very probable.

Definition at line 41 of file CompetingPixelClustersOnTrack.cxx.

44  : Trk::CompetingRIOsOnTrack(std::move(assgnProb))
46  , m_containedChildRots(std::move(childrots))
47 {
48  // initialize local position and error matrix
50 }

◆ ~CompetingPixelClustersOnTrack()

InDet::CompetingPixelClustersOnTrack::~CompetingPixelClustersOnTrack ( )
virtual

Destructor.

Definition at line 90 of file CompetingPixelClustersOnTrack.cxx.

91 {
93 }

Member Function Documentation

◆ assignmentProbability()

CompetingRIOsOnTrack::AssignmentProb Trk::CompetingRIOsOnTrack::assignmentProbability ( unsigned int  indx) const
inlineinherited

returns the AssignmentProbability depending on the integer.

  • extends MeasurementBase

Definition at line 139 of file CompetingRIOsOnTrack.h.

140 {
141  assert(indx < numberOfContainedROTs());
142  if (indx < numberOfContainedROTs()) {
143  return m_assignProb[indx];
144  }
145  return 0; // could consider throwing an exception here - EJWM
146 }

◆ associatedSurface()

const Trk::Surface & InDet::CompetingPixelClustersOnTrack::associatedSurface ( ) const
inlinevirtual

returns the surface for the local to global transformation .

  • interface from MeasurementBase

Implements Trk::MeasurementBase.

Definition at line 129 of file CompetingPixelClustersOnTrack.h.

130 {
131  return ((*(std::as_const(m_containedChildRots).begin()))->associatedSurface());
132 }

◆ clearChildRotVector()

void InDet::CompetingPixelClustersOnTrack::clearChildRotVector ( )
private

private method to clear the Trk::RIO_OnTrack vector

Definition at line 96 of file CompetingPixelClustersOnTrack.cxx.

97 {
98  std::vector<const InDet::PixelClusterOnTrack*>::const_iterator rotIter =
99  m_containedChildRots.begin();
100  for (; rotIter != m_containedChildRots.end(); ++rotIter)
101  delete (*rotIter);
102 }

◆ clone()

CompetingPixelClustersOnTrack * InDet::CompetingPixelClustersOnTrack::clone ( ) const
inlinevirtual

needed to avoid excessive RTTI

Implements Trk::CompetingRIOsOnTrack.

Definition at line 123 of file CompetingPixelClustersOnTrack.h.

124 {
125  return new InDet::CompetingPixelClustersOnTrack(*this);
126 }

◆ containedROTs()

const std::vector< const InDet::PixelClusterOnTrack * > & InDet::CompetingPixelClustersOnTrack::containedROTs ( ) const
inline

returns the vector of PixelClusterOnTrack objects .

Definition at line 135 of file CompetingPixelClustersOnTrack.h.

136 {
137  return (m_containedChildRots);
138 }

◆ dump() [1/2]

MsgStream & InDet::CompetingPixelClustersOnTrack::dump ( MsgStream &  out) const
virtual

returns some information about this MeasurementBase/CompetingPixelClustersOnTrack.

Reimplemented from Trk::CompetingRIOsOnTrack.

Definition at line 105 of file CompetingPixelClustersOnTrack.cxx.

106 {
107  using std::ios;
108  out << "Trk::CompetingPixelClustersOnTrack with [" << numberOfContainedROTs()
109  << "] competing Pixel RIO_OnTrack objects" << std::endl;
111  out << " - GlobalPosition : ";
112  if (not m_globalPosition)
113  out << "null pointer" << std::endl;
114  else
115  out << *m_globalPosition << endmsg;
116  return out;
117 }

◆ dump() [2/2]

std::ostream & InDet::CompetingPixelClustersOnTrack::dump ( std::ostream &  out) const
virtual

returns some information about this MeasurementBase/CompetingPixelClustersOnTrack.

Reimplemented from Trk::CompetingRIOsOnTrack.

Definition at line 120 of file CompetingPixelClustersOnTrack.cxx.

121 {
122  using std::ios;
123  out << "Trk::CompetingPixelClustersOnTrack with [" << numberOfContainedROTs()
124  << "] competing Pixel RIO_OnTrack objects" << std::endl;
126  out << " - GlobalPosition : ";
127  if (not m_globalPosition)
128  out << "null pointer" << std::endl;
129  else
130  out << *m_globalPosition << std::endl;
131  return out;
132 }

◆ globalPosition()

const Amg::Vector3D & InDet::CompetingPixelClustersOnTrack::globalPosition ( ) const
virtual

Interface method to get the global Position.

  • interface from MeasurementBase

Implements Trk::MeasurementBase.

Definition at line 142 of file CompetingPixelClustersOnTrack.cxx.

143 {
144  if (not m_globalPosition) {
145  m_globalPosition.set(std::make_unique<const Amg::Vector3D>(
146  associatedSurface().localToGlobal(localParameters())));
147  }
148  return *m_globalPosition;
149 }

◆ indexOfMaxAssignProb()

unsigned int Trk::CompetingRIOsOnTrack::indexOfMaxAssignProb ( ) const
inherited

Index of the ROT with the highest assignment probability.

  • extends MeasurementBase

Definition at line 101 of file CompetingRIOsOnTrack.cxx.

102 {
103  unsigned int index = 0;
104  double maxAssgnProb = 0;
105  for (unsigned int i = 0; i < numberOfContainedROTs(); i++) {
106  if (m_assignProb[i] >= maxAssgnProb) {
107  index = i;
108  maxAssgnProb = m_assignProb[i];
109  }
110  }
111  return index;
112 }

◆ localCovariance()

const Amg::MatrixX & Trk::MeasurementBase::localCovariance ( ) const
inlineinherited

Interface method to get the localError.

Definition at line 138 of file MeasurementBase.h.

139 {
140  return m_localCovariance;
141 }

◆ localParameters()

const Trk::LocalParameters & Trk::MeasurementBase::localParameters ( ) const
inlineinherited

Interface method to get the LocalParameters.

Definition at line 132 of file MeasurementBase.h.

133 {
134  return m_localParams;
135 }

◆ numberOfContainedROTs()

unsigned int InDet::CompetingPixelClustersOnTrack::numberOfContainedROTs ( ) const
inlinevirtual

Number of RIO_OnTracks to be contained by this CompetingRIOsOnTrack.

Implements Trk::CompetingRIOsOnTrack.

Definition at line 147 of file CompetingPixelClustersOnTrack.h.

148 {
149  return m_containedChildRots.size();
150 }

◆ operator=() [1/2]

InDet::CompetingPixelClustersOnTrack & InDet::CompetingPixelClustersOnTrack::operator= ( InDet::CompetingPixelClustersOnTrack &&  compROT)
noexcept

Definition at line 76 of file CompetingPixelClustersOnTrack.cxx.

78 {
79  if (this != &compROT) {
80  // move operator of base class
82  // clear rots
84  m_containedChildRots = std::move(compROT.m_containedChildRots);
85  m_globalPosition = std::move(compROT.m_globalPosition);
86  }
87  return (*this);
88 }

◆ operator=() [2/2]

InDet::CompetingPixelClustersOnTrack & InDet::CompetingPixelClustersOnTrack::operator= ( const CompetingPixelClustersOnTrack compROT)

Assignment operator.

Definition at line 53 of file CompetingPixelClustersOnTrack.cxx.

55 {
56  if (this != &compROT) {
57  // assignment operator of base class
59  // clear rots
61  m_containedChildRots.clear();
62  if (compROT.m_globalPosition) {
63  m_globalPosition.store(std::make_unique<const Amg::Vector3D>(*compROT.m_globalPosition));
64  } else if (m_globalPosition) {
65  m_globalPosition.release().reset();
66  }
67  std::vector<const InDet::PixelClusterOnTrack*>::const_iterator rotIter =
68  compROT.m_containedChildRots.begin();
69  for (; rotIter != compROT.m_containedChildRots.end(); ++rotIter)
70  m_containedChildRots.push_back((*rotIter)->clone());
71  }
72  return (*this);
73 }

◆ rioOnTrack()

const InDet::PixelClusterOnTrack & InDet::CompetingPixelClustersOnTrack::rioOnTrack ( unsigned int  indx) const
inlinevirtual

returns the RIO_OnTrack (also known as ROT) objects depending on the integer

Implements Trk::CompetingRIOsOnTrack.

Definition at line 141 of file CompetingPixelClustersOnTrack.h.

142 {
143  return *std::as_const(m_containedChildRots)[indx];
144 }

◆ ROTsHaveCommonSurface()

bool InDet::CompetingPixelClustersOnTrack::ROTsHaveCommonSurface ( const bool  withNonVanishingAssignProb = true) const
privatevirtual

Have all the contained ROTs a common associated surface? If withNonVanishingAssignProb==true just the ROTs with non-vanishing assignment probabilities are checked.

  • interface from CompetingRIOsOnTrack
  • CompetingPixelClustersOnTrack assume that all PixelClusters belong to the same detector element, so this function will always return true

Implements Trk::CompetingRIOsOnTrack.

Definition at line 136 of file CompetingPixelClustersOnTrack.cxx.

137 {
138  return true;
139 }

◆ setLocalParametersAndErrorMatrix()

void Trk::CompetingRIOsOnTrack::setLocalParametersAndErrorMatrix ( )
virtualinherited

recalculate the LocalParameters and ErrorMatrix

Reimplemented in InDet::CompetingTRT_DriftCirclesOnTrack, and InDet::CompetingSCT_ClustersOnTrack.

Definition at line 34 of file CompetingRIOsOnTrack.cxx.

35 {
36 
37  if (ROTsHaveCommonSurface()) {
38  // std::cout << "CompROT - weight matrices: " << std::endl;
39  // std::cout << "CompROT - [1] " << rioOnTrack(0).localCovariance() << std::endl;
40  Amg::MatrixX meanWeightMatrix =
42  for (unsigned int i = 1; i < numberOfContainedROTs(); i++) {
43  meanWeightMatrix += assignmentProbability(i) * rioOnTrack(i).localCovariance().inverse();
44  // std::cout << "CompROT - ["<< i << "] " << rioOnTrack(i).localCovariance() <<
45  // std::endl;
46  }
47  // limit weight values against values too close to 0, otherwise inversion will fail!
48  if (meanWeightMatrix.trace() <= 1.0e-15) {
49  meanWeightMatrix = Amg::MatrixX(rioOnTrack(0).localCovariance().rows(),
51  meanWeightMatrix.setZero();
52  for (int i = 0; i < meanWeightMatrix.cols(); ++i) {
53  meanWeightMatrix(i, i) = 1.0e-10;
54  }
55  }
56  // std::cout << "CompROT - mean weight: " << meanWeightMatrix << std::endl;
57  m_localCovariance = meanWeightMatrix.inverse();
58  // std::cout << "CompROT - mean covariance: " << localCovariance() << std::endl;
59 
60  if (numberOfContainedROTs() == 1) {
62  } else {
64  Amg::VectorX meanParams =
66  for (unsigned int i = 1; i < numberOfContainedROTs(); i++) {
67  weight = rioOnTrack(i).localCovariance().inverse();
68  meanParams =
70  }
71  // std::cout << "CompROT - sum params: " << meanParams << std::endl;
72  meanParams = localCovariance() * meanParams;
73  // std::cout << "CompROT - mean params: " << meanParams << std::endl;
74  int paramKey = rioOnTrack(0).localParameters().parameterKey();
75  if (paramKey == 1) {
76  Trk::DefinedParameter Par1(meanParams[Trk::loc1], Trk::loc1);
78  } else if (paramKey == 3) {
79  Trk::DefinedParameter Par1(meanParams[Trk::loc1], Trk::loc1);
80  Trk::DefinedParameter Par2(meanParams[Trk::loc2], Trk::loc2);
81  m_localParams = Trk::LocalParameters(Par1, Par2);
82  } else {
83  std::cout << "Trk::CompetingRIOsOnTrack: can not handle parameter key " << paramKey
84  << std::endl;
85  }
86  }
87  } else {
88  // --------------------------------------------------
89  // Warning: effective localParams cannot be calculated when ROTs don't lie on the
90  // associated surface without detector specific knowledge.
91  // --------------------------------------------------
92  // return 0;
93  std::cout
94  << "Trk::CompetingRIOsOnTrack: can not handle ROTs in different surfaces without "
95  "detector specific knowledge "
96  << std::endl;
97  }
98 }

◆ type()

virtual bool Trk::CompetingRIOsOnTrack::type ( MeasurementBaseType::Type  type) const
inlinefinaloverridevirtualinherited

Extended method checking the type.

Implements Trk::MeasurementBase.

Definition at line 116 of file CompetingRIOsOnTrack.h.

117  {
119  }

◆ uniqueClone()

std::unique_ptr<CompetingPixelClustersOnTrack> InDet::CompetingPixelClustersOnTrack::uniqueClone ( ) const
inline

NVI method returning unique_ptr clone.

Definition at line 75 of file CompetingPixelClustersOnTrack.h.

76  {
77  return std::unique_ptr<CompetingPixelClustersOnTrack>(clone());
78  }

Friends And Related Function Documentation

◆ CompetingPixelClustersOnTrackTool

friend class CompetingPixelClustersOnTrackTool
friend

InDet::CompetingPixelClustersOnTrackTool is a friend to allow for updates of the assignment probabilities.

Definition at line 52 of file CompetingPixelClustersOnTrack.h.

Member Data Documentation

◆ m_assignProb

std::vector<AssignmentProb> Trk::CompetingRIOsOnTrack::m_assignProb
protectedinherited

assignment probabilities of the ROTs

Definition at line 125 of file CompetingRIOsOnTrack.h.

◆ m_containedChildRots

std::vector<const InDet::PixelClusterOnTrack*> InDet::CompetingPixelClustersOnTrack::m_containedChildRots
private

The vector of contained InDet::PixelClusterOnTrack objects.

Definition at line 111 of file CompetingPixelClustersOnTrack.h.

◆ m_globalPosition

CxxUtils::CachedUniquePtr<const Amg::Vector3D> InDet::CompetingPixelClustersOnTrack::m_globalPosition
private

The global Position.

Definition at line 108 of file CompetingPixelClustersOnTrack.h.

◆ m_localCovariance

Amg::MatrixX Trk::MeasurementBase::m_localCovariance
protectedinherited

Definition at line 112 of file MeasurementBase.h.

◆ m_localParams

LocalParameters Trk::MeasurementBase::m_localParams
protectedinherited

Definition at line 111 of file MeasurementBase.h.


The documentation for this class was generated from the following files:
Trk::LocalParameters
Definition: LocalParameters.h:98
Amg::VectorX
Eigen::Matrix< double, Eigen::Dynamic, 1 > VectorX
Dynamic Vector - dynamic allocation.
Definition: EventPrimitives.h:30
Amg::MatrixX
Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic > MatrixX
Dynamic Matrix - dynamic allocation.
Definition: EventPrimitives.h:27
Trk::CompetingRIOsOnTrack::dump
virtual MsgStream & dump(MsgStream &out) const override
returns the some information about the base class members (avoid code duplication)
Definition: CompetingRIOsOnTrack.cxx:115
Trk::LocalParameters::parameterKey
int parameterKey() const
Identifier key for matrix expansion/reduction.
index
Definition: index.py:1
PlotCalibFromCool.begin
begin
Definition: PlotCalibFromCool.py:94
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
Trk::loc2
@ loc2
generic first and second local coordinate
Definition: ParamDefs.h:35
InDet::CompetingPixelClustersOnTrack::clearChildRotVector
void clearChildRotVector()
private method to clear the Trk::RIO_OnTrack vector
Definition: CompetingPixelClustersOnTrack.cxx:96
Trk::CompetingRIOsOnTrack::type
virtual bool type(MeasurementBaseType::Type type) const override final
Extended method checking the type.
Definition: CompetingRIOsOnTrack.h:116
InDet::CompetingPixelClustersOnTrack::associatedSurface
const Trk::Surface & associatedSurface() const
returns the surface for the local to global transformation .
Definition: CompetingPixelClustersOnTrack.h:129
Trk::CompetingRIOsOnTrack::setLocalParametersAndErrorMatrix
virtual void setLocalParametersAndErrorMatrix()
recalculate the LocalParameters and ErrorMatrix
Definition: CompetingRIOsOnTrack.cxx:34
Trk::DefinedParameter
std::pair< double, ParamDefs > DefinedParameter
Definition: DefinedParameter.h:27
dqt_zlumi_pandas.weight
int weight
Definition: dqt_zlumi_pandas.py:189
Trk::CompetingRIOsOnTrack::rioOnTrack
virtual const RIO_OnTrack & rioOnTrack(unsigned int) const =0
returns the RIO_OnTrack (also known as ROT) objects depending on the integer.
beamspotnt.cols
list cols
Definition: bin/beamspotnt.py:1114
InDet::CompetingPixelClustersOnTrack::m_containedChildRots
std::vector< const InDet::PixelClusterOnTrack * > m_containedChildRots
The vector of contained InDet::PixelClusterOnTrack objects.
Definition: CompetingPixelClustersOnTrack.h:111
Trk::CompetingRIOsOnTrack::operator=
CompetingRIOsOnTrack & operator=(const CompetingRIOsOnTrack &compROT)=default
Assignment operator.
Trk::CompetingRIOsOnTrack::numberOfContainedROTs
virtual unsigned int numberOfContainedROTs() const =0
Number of RIO_OnTracks to be contained by this CompetingRIOsOnTrack.
lumiFormat.i
int i
Definition: lumiFormat.py:85
Trk::MeasurementBaseType::CompetingRIOsOnTrack
@ CompetingRIOsOnTrack
Definition: MeasurementBase.h:50
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
Trk::CompetingRIOsOnTrack::m_assignProb
std::vector< AssignmentProb > m_assignProb
assignment probabilities of the ROTs
Definition: CompetingRIOsOnTrack.h:125
beamspotnt.rows
list rows
Definition: bin/beamspotnt.py:1112
InDet::CompetingPixelClustersOnTrack::numberOfContainedROTs
unsigned int numberOfContainedROTs() const
Number of RIO_OnTracks to be contained by this CompetingRIOsOnTrack.
Definition: CompetingPixelClustersOnTrack.h:147
Trk::MeasurementBase::m_localParams
LocalParameters m_localParams
Definition: MeasurementBase.h:111
Trk::MeasurementBase::localCovariance
const Amg::MatrixX & localCovariance() const
Interface method to get the localError.
Definition: MeasurementBase.h:138
InDet::CompetingPixelClustersOnTrack
Definition: CompetingPixelClustersOnTrack.h:47
Trk::CompetingRIOsOnTrack::ROTsHaveCommonSurface
virtual bool ROTsHaveCommonSurface(const bool withNonVanishingAssignProb=true) const =0
query if all the contained ROTs have a common associated surface.
Trk::MeasurementBase::localParameters
const LocalParameters & localParameters() const
Interface method to get the LocalParameters.
Definition: MeasurementBase.h:132
Trk::MeasurementBase::m_localCovariance
Amg::MatrixX m_localCovariance
Definition: MeasurementBase.h:112
DeMoScan.index
string index
Definition: DeMoScan.py:364
InDet::CompetingPixelClustersOnTrack::m_globalPosition
CxxUtils::CachedUniquePtr< const Amg::Vector3D > m_globalPosition
The global Position.
Definition: CompetingPixelClustersOnTrack.h:108
InDet::CompetingPixelClustersOnTrack::clone
CompetingPixelClustersOnTrack * clone() const
needed to avoid excessive RTTI
Definition: CompetingPixelClustersOnTrack.h:123
Trk::loc1
@ loc1
Definition: ParamDefs.h:34
Trk::CompetingRIOsOnTrack::assignmentProbability
AssignmentProb assignmentProbability(unsigned int indx) const
returns the AssignmentProbability depending on the integer.
Definition: CompetingRIOsOnTrack.h:139