10 #include "Pandora/AlgorithmHeaders.h" 17 MissingTrackTool::MissingTrackTool() :
18 m_minMatchedSamplingPoints(15),
19 m_minMatchedFraction(0.95
f),
20 m_maxReducedChiSquared(0.707
f),
21 m_minXOverlapFraction(0.75
f)
29 if (PandoraContentApi::GetSettings(*pAlgorithm)->ShouldDisplayAlgorithmInfo())
30 std::cout <<
"----> Running Algorithm Tool: " << this->GetInstanceName() <<
", " << this->GetType() << std::endl;
43 ClusterSet usedClusters;
47 for (
const Cluster *
const pKeyCluster : sortedKeyClusters)
49 unsigned int nU(0), nV(0), nW(0);
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()));
59 unsigned int nAvailable(0);
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()))
88 const float xOverlapSpan(overlapResult.GetXOverlap().GetXOverlapSpan());
107 protoParticleVector.push_back(protoParticle);
108 usedClusters.insert(eIter->GetClusterU());
109 usedClusters.insert(eIter->GetClusterV());
110 usedClusters.insert(eIter->GetClusterW());
119 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=,
122 PANDORA_RETURN_RESULT_IF_AND_IF(
123 STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
"MinMatchedFraction",
m_minMatchedFraction));
125 PANDORA_RETURN_RESULT_IF_AND_IF(
126 STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
"MaxReducedChiSquared",
m_maxReducedChiSquared));
128 PANDORA_RETURN_RESULT_IF_AND_IF(
129 STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
"MinXOverlapFraction",
m_minXOverlapFraction));
131 return STATUS_CODE_SUCCESS;
std::vector< ProtoParticle > ProtoParticleVector
bool Run(ThreeViewTransverseTracksAlgorithm *const pAlgorithm, TensorType &overlapTensor)
Run the algorithm tool.
void GetConnectedElements(const pandora::Cluster *const pCluster, const bool ignoreUnavailable, ElementList &elementList) const
Get a list of elements connected to a specified cluster.
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.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
float m_minXOverlapFraction
The min x overlap fraction for the two available clusters in the tensor element.
std::vector< Element > ElementList
pandora::ClusterList m_clusterList
List of 2D clusters in a 3D proto particle.
void GetSortedKeyClusters(pandora::ClusterVector &sortedKeyClusters) const
Get a sorted vector of key clusters (U clusters with current implementation)
TransverseOverlapResult class.
void FindMissingTracks(const TensorType &overlapTensor, ProtoParticleVector &protoParticleVector) const
Find missing tracks, due to merging of multiple particle deposits into single hits during hit creatio...
virtual bool CreateThreeDParticles(const ProtoParticleVector &protoParticleVector)
Create particles using findings from recent algorithm processing.
std::vector< art::Ptr< recob::Cluster > > ClusterVector
ThreeViewTransverseTracksAlgorithm class.
unsigned int m_minMatchedSamplingPoints
The min number of matched sampling points for the unavailable tensor element.
TheTensor::const_iterator const_iterator