Public Member Functions | Private Member Functions | Private Attributes | List of all members
lar_content::MissingTrackTool Class Reference

MissingTrackTool class. More...

#include <MissingTrackTool.h>

Inheritance diagram for lar_content::MissingTrackTool:
lar_content::TransverseTensorTool

Public Member Functions

 MissingTrackTool ()
 Default constructor. More...
 
bool Run (ThreeViewTransverseTracksAlgorithm *const pAlgorithm, TensorType &overlapTensor)
 Run the algorithm tool. More...
 

Private Member Functions

pandora::StatusCode ReadSettings (const pandora::TiXmlHandle xmlHandle)
 
void FindMissingTracks (const TensorType &overlapTensor, ProtoParticleVector &protoParticleVector) const
 Find missing tracks, due to merging of multiple particle deposits into single hits during hit creation. More...
 

Private Attributes

unsigned int m_minMatchedSamplingPoints
 The min number of matched sampling points for the unavailable tensor element. More...
 
float m_minMatchedFraction
 The min matched sampling point fraction for the unavailable tensor element. More...
 
float m_maxReducedChiSquared
 The max reduced chi squared value for the unavailable tensor element. More...
 
float m_minXOverlapFraction
 The min x overlap fraction for the two available clusters in the tensor element. More...
 

Additional Inherited Members

- Public Types inherited from lar_content::TransverseTensorTool
typedef ThreeViewTransverseTracksAlgorithm::MatchingType::TensorType TensorType
 
typedef std::vector< TensorType::ElementList::const_iteratorIteratorList
 

Detailed Description

MissingTrackTool class.

Definition at line 19 of file MissingTrackTool.h.

Constructor & Destructor Documentation

lar_content::MissingTrackTool::MissingTrackTool ( )

Default constructor.

Definition at line 17 of file MissingTrackTool.cc.

17  :
22 {
23 }
float m_maxReducedChiSquared
The max reduced chi squared value for the unavailable tensor element.
float m_minMatchedFraction
The min matched sampling point fraction for the unavailable tensor element.
float m_minXOverlapFraction
The min x overlap fraction for the two available clusters in the tensor element.
unsigned int m_minMatchedSamplingPoints
The min number of matched sampling points for the unavailable tensor element.

Member Function Documentation

void lar_content::MissingTrackTool::FindMissingTracks ( const TensorType overlapTensor,
ProtoParticleVector protoParticleVector 
) const
private

Find missing tracks, due to merging of multiple particle deposits into single hits during hit creation.

Parameters
overlapTensorthe overlap tensor
protoParticleVectorto receive the list of proto particles

Definition at line 41 of file MissingTrackTool.cc.

42 {
43  ClusterSet usedClusters;
44  ClusterVector sortedKeyClusters;
45  overlapTensor.GetSortedKeyClusters(sortedKeyClusters);
46 
47  for (const Cluster *const pKeyCluster : sortedKeyClusters)
48  {
49  unsigned int nU(0), nV(0), nW(0);
50  TensorType::ElementList elementList;
51  overlapTensor.GetConnectedElements(pKeyCluster, false, elementList, nU, nV, nW);
52 
53  for (TensorType::ElementList::const_iterator eIter = elementList.begin(); eIter != elementList.end(); ++eIter)
54  {
55  const bool includeU(eIter->GetClusterU()->IsAvailable() && !usedClusters.count(eIter->GetClusterU()));
56  const bool includeV(eIter->GetClusterV()->IsAvailable() && !usedClusters.count(eIter->GetClusterV()));
57  const bool includeW(eIter->GetClusterW()->IsAvailable() && !usedClusters.count(eIter->GetClusterW()));
58 
59  unsigned int nAvailable(0);
60  if (includeU)
61  ++nAvailable;
62  if (includeV)
63  ++nAvailable;
64  if (includeW)
65  ++nAvailable;
66 
67  if (2 != nAvailable)
68  continue;
69 
70  const TransverseOverlapResult &overlapResult(eIter->GetOverlapResult());
71 
72  if (overlapResult.GetNMatchedSamplingPoints() < m_minMatchedSamplingPoints)
73  continue;
74 
75  if (overlapResult.GetMatchedFraction() < m_minMatchedFraction)
76  continue;
77 
78  if (overlapResult.GetReducedChi2() > m_maxReducedChiSquared)
79  continue;
80 
81  if ((overlapResult.GetXOverlap().GetXSpanU() < std::numeric_limits<float>::epsilon()) ||
82  (overlapResult.GetXOverlap().GetXSpanV() < std::numeric_limits<float>::epsilon()) ||
83  (overlapResult.GetXOverlap().GetXSpanW() < std::numeric_limits<float>::epsilon()))
84  {
85  continue;
86  }
87 
88  const float xOverlapSpan(overlapResult.GetXOverlap().GetXOverlapSpan());
89 
90  if (includeU && (xOverlapSpan / overlapResult.GetXOverlap().GetXSpanU() < m_minXOverlapFraction))
91  continue;
92 
93  if (includeV && (xOverlapSpan / overlapResult.GetXOverlap().GetXSpanV() < m_minXOverlapFraction))
94  continue;
95 
96  if (includeW && (xOverlapSpan / overlapResult.GetXOverlap().GetXSpanW() < m_minXOverlapFraction))
97  continue;
98 
99  ProtoParticle protoParticle;
100  if (includeU)
101  protoParticle.m_clusterList.push_back(eIter->GetClusterU());
102  if (includeV)
103  protoParticle.m_clusterList.push_back(eIter->GetClusterV());
104  if (includeW)
105  protoParticle.m_clusterList.push_back(eIter->GetClusterW());
106 
107  protoParticleVector.push_back(protoParticle);
108  usedClusters.insert(eIter->GetClusterU());
109  usedClusters.insert(eIter->GetClusterV());
110  usedClusters.insert(eIter->GetClusterW());
111  }
112  }
113 }
float m_maxReducedChiSquared
The max reduced chi squared value for the unavailable tensor element.
float m_minMatchedFraction
The min matched sampling point fraction for the unavailable tensor element.
intermediate_table::const_iterator const_iterator
float m_minXOverlapFraction
The min x overlap fraction for the two available clusters in the tensor element.
std::vector< art::Ptr< recob::Cluster > > ClusterVector
unsigned int m_minMatchedSamplingPoints
The min number of matched sampling points for the unavailable tensor element.
StatusCode lar_content::MissingTrackTool::ReadSettings ( const pandora::TiXmlHandle  xmlHandle)
private

Definition at line 117 of file MissingTrackTool.cc.

118 {
119  PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=,
120  XmlHelper::ReadValue(xmlHandle, "MinMatchedSamplingPoints", m_minMatchedSamplingPoints));
121 
122  PANDORA_RETURN_RESULT_IF_AND_IF(
123  STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle, "MinMatchedFraction", m_minMatchedFraction));
124 
125  PANDORA_RETURN_RESULT_IF_AND_IF(
126  STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle, "MaxReducedChiSquared", m_maxReducedChiSquared));
127 
128  PANDORA_RETURN_RESULT_IF_AND_IF(
129  STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle, "MinXOverlapFraction", m_minXOverlapFraction));
130 
131  return STATUS_CODE_SUCCESS;
132 }
float m_maxReducedChiSquared
The max reduced chi squared value for the unavailable tensor element.
float m_minMatchedFraction
The min matched sampling point fraction for the unavailable tensor element.
float m_minXOverlapFraction
The min x overlap fraction for the two available clusters in the tensor element.
unsigned int m_minMatchedSamplingPoints
The min number of matched sampling points for the unavailable tensor element.
bool lar_content::MissingTrackTool::Run ( ThreeViewTransverseTracksAlgorithm *const  pAlgorithm,
TensorType overlapTensor 
)
virtual

Run the algorithm tool.

Parameters
pAlgorithmaddress of the calling algorithm
overlapTensorthe overlap tensor
Returns
whether changes have been made by the tool

Implements lar_content::TransverseTensorTool.

Definition at line 27 of file MissingTrackTool.cc.

28 {
29  if (PandoraContentApi::GetSettings(*pAlgorithm)->ShouldDisplayAlgorithmInfo())
30  std::cout << "----> Running Algorithm Tool: " << this->GetInstanceName() << ", " << this->GetType() << std::endl;
31 
32  ProtoParticleVector protoParticleVector;
33  this->FindMissingTracks(overlapTensor, protoParticleVector);
34 
35  const bool particlesMade(pAlgorithm->CreateThreeDParticles(protoParticleVector));
36  return particlesMade;
37 }
std::vector< ProtoParticle > ProtoParticleVector
void FindMissingTracks(const TensorType &overlapTensor, ProtoParticleVector &protoParticleVector) const
Find missing tracks, due to merging of multiple particle deposits into single hits during hit creatio...
QTextStream & endl(QTextStream &s)

Member Data Documentation

float lar_content::MissingTrackTool::m_maxReducedChiSquared
private

The max reduced chi squared value for the unavailable tensor element.

Definition at line 42 of file MissingTrackTool.h.

float lar_content::MissingTrackTool::m_minMatchedFraction
private

The min matched sampling point fraction for the unavailable tensor element.

Definition at line 41 of file MissingTrackTool.h.

unsigned int lar_content::MissingTrackTool::m_minMatchedSamplingPoints
private

The min number of matched sampling points for the unavailable tensor element.

Definition at line 40 of file MissingTrackTool.h.

float lar_content::MissingTrackTool::m_minXOverlapFraction
private

The min x overlap fraction for the two available clusters in the tensor element.

Definition at line 43 of file MissingTrackTool.h.


The documentation for this class was generated from the following files: