9 #include "Pandora/AlgorithmHeaders.h" 23 ConeClusterMopUpAlgorithm::ConeClusterMopUpAlgorithm() :
24 m_slidingFitWindow(20),
25 m_showerEdgeMultiplier(1.5
f),
26 m_coneAngleCentile(0.85
f),
27 m_maxConeLengthMultiplier(1.5
f),
28 m_minBoundedFraction(0.5
f)
40 PANDORA_THROW_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::GetCurrentList(*
this, pVertexList));
42 if ((pVertexList->size() != 1) || (VERTEX_3D != (*(pVertexList->begin()))->GetVertexType()))
45 const Vertex *
const pVertex(*(pVertexList->begin()));
47 ClusterVector sortedPfoClusters(pfoClusters.begin(), pfoClusters.end());
50 ClusterVector sortedRemnantClusters(remnantClusters.begin(), remnantClusters.end());
53 for (
const Cluster *
const pPfoCluster : sortedPfoClusters)
63 if (layerFitResultMapS.size() < 2)
67 CartesianVector minLayerPositionOnAxis(0.
f, 0.
f, 0.
f), maxLayerPositionOnAxis(0.
f, 0.
f, 0.
f);
73 const bool vertexAtMinL((vertexPosition2D - minLayerPositionOnAxis).GetMagnitudeSquared() < (vertexPosition2D - maxLayerPositionOnAxis).GetMagnitudeSquared());
83 if (layerFitResultMapP.end() != iterP)
84 coordinateListP.push_back(
Coordinate(iterP->second.GetL(), iterP->second.GetFitT()));
86 if (layerFitResultMapN.end() != iterN)
87 coordinateListN.push_back(
Coordinate(iterN->second.GetL(), iterN->second.GetFitT()));
90 if (coordinateListP.empty() || coordinateListN.empty())
97 const Coordinate minP(vertexAtMinL ?
Coordinate(layerFitResultMapP.begin()->second.GetL(), layerFitResultMapP.begin()->second.GetFitT()) :
98 Coordinate(layerFitResultMapP.rbegin()->second.GetL(), layerFitResultMapP.rbegin()->second.GetFitT()));
101 const Coordinate minN(vertexAtMinL ?
Coordinate(layerFitResultMapN.begin()->second.GetL(), layerFitResultMapN.begin()->second.GetFitT()) :
102 Coordinate(layerFitResultMapN.rbegin()->second.GetL(), layerFitResultMapN.rbegin()->second.GetFitT()));
104 const float minL(layerFitResultMapS.begin()->second.GetL());
107 if ((std::fabs(maxP.first - minP.first) < std::numeric_limits<float>::epsilon()) ||
108 (std::fabs(maxN.first - minN.first) < std::numeric_limits<float>::epsilon()) ||
109 (std::fabs(maxL - minL) < std::numeric_limits<float>::epsilon()))
115 for (
const Cluster *
const pRemnantCluster : sortedRemnantClusters)
117 const unsigned int nHits(pRemnantCluster->GetNCaloHits());
119 unsigned int nMatchedHits(0);
120 const OrderedCaloHitList &orderedCaloHitList(pRemnantCluster->GetOrderedCaloHitList());
126 float rL(0.
f), rT(0.
f);
129 if ((rL < minL) || (rL > maxL))
132 const float rTP(minP.second + (rL - minP.first) * ((maxP.second - minP.second) / (maxP.first - minP.first)));
133 const float rTN(minN.second + (rL - minN.first) * ((maxN.second - minN.second) / (maxN.first - minN.first)));
135 if ((rT > rTP) || (rT < rTN))
142 const float boundedFraction((nHits > 0) ? static_cast<float>(nMatchedHits) / static_cast<float>(nHits) : 0.
f);
149 if (!associationDetails.insert(AssociationDetails::value_type(pPfoCluster, boundedFraction)).second)
150 throw StatusCodeException(STATUS_CODE_FAILURE);
153 catch (StatusCodeException &statusCodeException)
155 if (STATUS_CODE_FAILURE == statusCodeException.GetStatusCode())
156 throw statusCodeException;
167 return (lhs.second < rhs.second);
174 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
177 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
180 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
183 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
186 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
Header file for the lar two dimensional sliding shower fit result class.
static bool SortByNHits(const pandora::Cluster *const pLhs, const pandora::Cluster *const pRhs)
Sort clusters by number of hits, then layer span, then inner layer, then position, then pulse-height.
virtual void MakeClusterMerges(const ClusterAssociationMap &clusterAssociationMap) const
Make the cluster merges specified in the cluster association map, using list name information in the ...
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
std::unordered_map< const pandora::Cluster *, float > AssociationDetails
static bool SortCoordinates(const Coordinate &lhs, const Coordinate &rhs)
Sort coordinates by increasing transverse displacement.
std::unordered_map< const pandora::Cluster *, AssociationDetails > ClusterAssociationMap
const TwoDSlidingFitResult & GetShowerFitResult() const
Get the sliding fit result for the full shower cluster.
static pandora::CartesianVector ProjectPosition(const pandora::Pandora &pandora, const pandora::CartesianVector &position3D, const pandora::HitType view)
Project 3D position into a given 2D view.
static pandora::HitType GetClusterHitType(const pandora::Cluster *const pCluster)
Get the hit type associated with a two dimensional cluster.
static float GetWireZPitch(const pandora::Pandora &pandora, const float maxWirePitchDiscrepancy=0.01)
Return the wire pitch.
float m_maxConeLengthMultiplier
Consider hits as bound if inside cone, with projected distance less than N times cone length...
float m_minBoundedFraction
The minimum cluster bounded fraction for merging.
TwoDSlidingShowerFitResult class.
Header file for the geometry helper class.
Header file for the cone cluster mop up algorithm class.
virtual pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
std::pair< float, float > Coordinate
Header file for the cluster helper class.
float m_showerEdgeMultiplier
Artificially tune width of shower envelope so as to make it more/less inclusive.
std::map< int, LayerFitResult > LayerFitResultMap
const TwoDSlidingFitResult & GetPositiveEdgeFitResult() const
Get the sliding fit result for the positive shower edge.
const LayerFitResultMap & GetLayerFitResultMap() const
Get the layer fit result map.
std::vector< art::Ptr< recob::Cluster > > ClusterVector
std::vector< Coordinate > CoordinateList
const TwoDSlidingFitResult & GetNegativeEdgeFitResult() const
Get the sliding fit result for the negative shower edge.
void GetGlobalPosition(const float rL, const float rT, pandora::CartesianVector &position) const
Get global coordinates for given sliding linear fit coordinates.
void ClusterMopUp(const pandora::ClusterList &pfoClusters, const pandora::ClusterList &remnantClusters) const
Cluster mop up for a single view. This function is responsible for instructing pandora to make cluste...
float m_coneAngleCentile
Cluster cone angle is defined using specified centile of distribution of hit half angles...
unsigned int m_slidingFitWindow
The layer window for the sliding linear fits.
void GetLocalPosition(const pandora::CartesianVector &position, float &rL, float &rT) const
Get local sliding fit coordinates for a given global position.
std::list< Vertex > VertexList