9 #include "Pandora/AlgorithmHeaders.h" 21 ClusterMopUpBaseAlgorithm::ClusterMopUpBaseAlgorithm() :
22 m_excludePfosContainingTracks(true)
30 ClusterList pfoClusterListU, pfoClusterListV, pfoClusterListW;
33 ClusterList daughterClusterListU, daughterClusterListV, daughterClusterListW;
36 this->
ClusterMopUp(pfoClusterListU, daughterClusterListU);
37 this->
ClusterMopUp(pfoClusterListV, daughterClusterListV);
38 this->
ClusterMopUp(pfoClusterListW, daughterClusterListW);
40 return STATUS_CODE_SUCCESS;
49 const PfoList *pPfoList = NULL;
50 if (STATUS_CODE_SUCCESS != PandoraContentApi::GetList(*
this, *sIter, pPfoList))
55 const ParticleFlowObject *
const pPfo = *pIter;
60 this->
GetClusterLists(pPfo->GetClusterList(),
false, clusterListU, clusterListV, clusterListW);
71 const ClusterList *pClusterList(
nullptr);
73 if (STATUS_CODE_SUCCESS != PandoraContentApi::GetList(*
this, daughterListName, pClusterList))
76 this->
GetClusterLists(*pClusterList,
true, clusterListU, clusterListV, clusterListW);
83 ClusterList &clusterListV, ClusterList &clusterListW)
const 87 const Cluster *
const pCluster(*cIter);
89 if (availabilityFlag != pCluster->IsAvailable())
94 if ((TPC_VIEW_U != hitType) && (TPC_VIEW_V != hitType) && (TPC_VIEW_W != hitType))
97 ClusterList &
target((TPC_VIEW_U == hitType) ? clusterListU : (TPC_VIEW_V == hitType) ? clusterListV : clusterListW);
98 target.push_back(pCluster);
107 for (
const auto &remnantMapEntry : clusterAssociationMap) sortedRemnantClusters.push_back(remnantMapEntry.first);
110 for (
const Cluster *
const pRemnantCluster : sortedRemnantClusters)
112 const AssociationDetails &associationDetails(clusterAssociationMap.at(pRemnantCluster));
113 const Cluster *pBestPfoCluster(
nullptr);
117 for (
const auto &pfoMapEntry : associationDetails) sortedPfoClusters.push_back(pfoMapEntry.first);
120 for (
const Cluster *
const pPfoCluster : sortedPfoClusters)
122 const float figureOfMerit(associationDetails.at(pPfoCluster));
124 if (figureOfMerit > bestFigureOfMerit)
126 pBestPfoCluster = pPfoCluster;
127 bestFigureOfMerit = figureOfMerit;
131 if (!pBestPfoCluster)
134 PANDORA_THROW_RESULT_IF(STATUS_CODE_SUCCESS, !=, PandoraContentApi::MergeAndDeleteClusters(*
this, pBestPfoCluster, pRemnantCluster,
143 PANDORA_RETURN_RESULT_IF(STATUS_CODE_SUCCESS, !=, XmlHelper::ReadVectorOfValues(xmlHandle,
146 PANDORA_RETURN_RESULT_IF_AND_IF(STATUS_CODE_SUCCESS, STATUS_CODE_NOT_FOUND, !=, XmlHelper::ReadValue(xmlHandle,
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 ...
virtual void GetClusterLists(const pandora::ClusterList &inputClusterList, const bool availabilityFlag, pandora::ClusterList &clusterListU, pandora::ClusterList &clusterListV, pandora::ClusterList &clusterListW) const
Get the two dimensional clusters contained in an input cluster list, divided into three different vie...
Header file for the pfo helper class.
cout<< "-> Edep in the target
std::unordered_map< const pandora::Cluster *, float > AssociationDetails
std::unordered_map< const pandora::Cluster *, AssociationDetails > ClusterAssociationMap
pandora::StringVector m_daughterListNames
The list of potential daughter object list names.
bool m_excludePfosContainingTracks
Whether to exclude any pfos containing clusters flagged as fixed tracks.
static pandora::HitType GetClusterHitType(const pandora::Cluster *const pCluster)
Get the hit type associated with a two dimensional cluster.
static bool IsTrack(const pandora::ParticleFlowObject *const pPfo)
Return track flag based on Pfo Particle ID.
virtual pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
virtual pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
const std::string GetListName(const T *const pT) const
Find the name of the list hosting a specific object.
Header file for the cluster helper class.
Header file for the cluster mop up algorithm base class.
virtual void GetPfoClusterLists(pandora::ClusterList &clusterListU, pandora::ClusterList &clusterListV, pandora::ClusterList &clusterListW) const
Get the two dimensional clusters contained in the input pfo list, divided into three different views...
virtual pandora::StatusCode Run()
std::vector< art::Ptr< recob::Cluster > > ClusterVector
virtual void ClusterMopUp(const pandora::ClusterList &pfoClusters, const pandora::ClusterList &remnantClusters) const =0
Cluster mop up for a single view. This function is responsible for instructing pandora to make cluste...
pandora::StringVector m_pfoListNames
The list of pfo list names.
virtual void GetDaughterClusterLists(pandora::ClusterList &clusterListU, pandora::ClusterList &clusterListV, pandora::ClusterList &clusterListW) const
Get the two dimensional clusters contained in the input remant/daughter cluster lists, divided into three different views.