23 m_replaceCurrentVertexList(true),
25 m_nDecayLengthsInZSpan(2.f),
26 m_selectSingleVertex(true),
27 m_maxTopScoreSelections(3),
28 m_maxOnHitDisplacement(1.f),
29 m_minCandidateDisplacement(2.f),
30 m_minCandidateScoreFraction(0.5f),
31 m_useDetectorGaps(true),
33 m_isEmptyViewAcceptable(true),
34 m_minVertexAcceptableViews(3)
43 for (
const Vertex *
const pVertex : *pInputVertexList)
45 unsigned int nAcceptableViews(0);
57 filteredVertices.push_back(pVertex);
70 if (vertexVector.empty())
73 float minZCoordinate(std::numeric_limits<float>::max()), maxZCoordinate(-std::numeric_limits<float>::max());
75 for (
const Vertex *
const pVertex : vertexVector)
77 if (pVertex->GetPosition().GetZ() < minZCoordinate)
78 minZCoordinate = pVertex->GetPosition().GetZ();
80 if (pVertex->GetPosition().GetZ() > maxZCoordinate)
81 maxZCoordinate = pVertex->GetPosition().GetZ();
84 const float zSpan(maxZCoordinate - minZCoordinate);
85 const float decayConstant((zSpan < std::numeric_limits<float>::epsilon()) ? 0.f : (
m_nDecayLengthsInZSpan / zSpan));
86 beamConstants.
SetConstants(minZCoordinate, decayConstant);
94 for (
const std::string &clusterListName : inputClusterListNames)
100 if (!pClusterList || pClusterList->empty())
103 std::cout <<
"EnergyKickVertexSelectionAlgorithm: unable to find cluster list " << clusterListName << std::endl;
114 clusterList.insert(clusterList.end(), pClusterList->begin(), pClusterList->end());
125 ClusterVector sortedClusters(inputClusterList.begin(), inputClusterList.end());
128 for (
const Cluster *
const pCluster : sortedClusters)
130 if (pCluster->GetNCaloHits() < minClusterCaloHits)
134 const unsigned int newSlidingFitWindow(
135 std::min(
static_cast<int>(pCluster->GetNCaloHits()),
static_cast<int>(slidingFitPitch * slidingFitWindow)));
136 slidingFitDataList.emplace_back(pCluster, newSlidingFitWindow, slidingFitPitch);
147 if (!pInputVertexList || pInputVertexList->empty())
150 std::cout <<
"VertexSelectionBaseAlgorithm: unable to find current vertex list " << std::endl;
152 return STATUS_CODE_SUCCESS;
159 this->
FilterVertexList(pInputVertexList, kdTreeU, kdTreeV, kdTreeW, filteredVertices);
161 if (filteredVertices.empty())
162 return STATUS_CODE_SUCCESS;
168 this->
GetVertexScoreList(filteredVertices, beamConstants, kdTreeU, kdTreeV, kdTreeW, vertexScoreList);
173 if (!selectedVertexList.empty())
181 return STATUS_CODE_SUCCESS;
194 if (!pCaloHitList || pCaloHitList->empty())
197 std::cout <<
"VertexSelectionBaseAlgorithm: unable to find calo hit list " << caloHitListName << std::endl;
202 const HitType hitType((*(pCaloHitList->begin()))->GetHitType());
214 kdTree.
build(hitKDNode2DList, hitsBoundingRegion2D);
226 kdTree.
search(searchRegionHits, found);
228 return (!found.empty());
245 float totalEnergy(0.f);
267 kdTree.
search(searchRegionHits, foundHits);
269 float dr(std::numeric_limits<float>::max());
272 for (
auto hit : foundHits)
274 const float diff = (vertexPosition2D - hit.data->GetPositionVector()).GetMagnitude();
278 energy = hit.data->GetElectromagneticEnergy();
288 float bestScore(0.f);
289 std::sort(vertexScoreList.begin(), vertexScoreList.end());
291 for (
const VertexScore &vertexScore : vertexScoreList)
296 if (!selectedVertexList.empty() && !this->
AcceptVertexLocation(vertexScore.GetVertex(), selectedVertexList))
302 selectedVertexList.push_back(vertexScore.GetVertex());
307 if (vertexScore.GetScore() > bestScore)
308 bestScore = vertexScore.GetScore();
319 for (
const Vertex *
const pSelectedVertex : selectedVertexList)
321 if (pVertex == pSelectedVertex)
324 if ((position - pSelectedVertex->GetPosition()).GetMagnitudeSquared() < minCandidateDisplacementSquared)
337 if (std::fabs(deltaPosition.
GetZ()) > std::numeric_limits<float>::epsilon())
338 return (deltaPosition.
GetZ() > std::numeric_limits<float>::epsilon());
340 if (std::fabs(deltaPosition.
GetX()) > std::numeric_limits<float>::epsilon())
341 return (deltaPosition.
GetX() > std::numeric_limits<float>::epsilon());
344 return (deltaPosition.
GetY() > std::numeric_limits<float>::epsilon());
350 m_minLayerDirection(0.f, 0.f, 0.f),
351 m_maxLayerDirection(0.f, 0.f, 0.f),
352 m_minLayerPosition(0.f, 0.f, 0.f),
353 m_maxLayerPosition(0.f, 0.f, 0.f),
366 m_clusterList(clusterList),
367 m_coordinateVector(this->GetClusterListCoordinateVector(clusterList)),
368 m_twoDSlidingFitResult(&m_coordinateVector, slidingFitWindow, slidingFitPitch)
378 for (
const Cluster *
const pCluster : clusterList)
383 coordinateVector.insert(coordinateVector.end(), std::make_move_iterator(clusterCoordinateVector.begin()),
384 std::make_move_iterator(clusterCoordinateVector.end()));
387 return coordinateVector;
432 return STATUS_CODE_SUCCESS;
Header file for the kd tree linker algo template class.
Header file for the cluster helper class.
Header file for the geometry helper class.
#define PANDORA_THROW_RESULT_IF_AND_IF(StatusCode1, StatusCode2, Operator, Command)
#define PANDORA_RETURN_RESULT_IF_AND_IF(StatusCode1, StatusCode2, Operator, Command)
#define PANDORA_RETURN_RESULT_IF(StatusCode1, Operator, Command)
Header file for the vertex selection base algorithm class.
static pandora::StatusCode SaveList(const pandora::Algorithm &algorithm, const T &t, const std::string &newListName)
Save a provided input object list under a new name.
static pandora::StatusCode ReplaceCurrentList(const pandora::Algorithm &algorithm, const std::string &newListName)
Replace the current list with a pre-saved list; use this new list as a permanent replacement for the ...
static pandora::StatusCode GetCurrentList(const pandora::Algorithm &algorithm, const T *&pT)
Get the current list.
static pandora::StatusCode GetList(const pandora::Algorithm &algorithm, const std::string &listName, const T *&pT)
Get a named list.
static const pandora::PandoraSettings * GetSettings(const pandora::Algorithm &algorithm)
Get the pandora settings instance.
Box structure used to define 2D field. It's used in KDTree building step to divide the detector space...
void build(std::vector< KDTreeNodeInfoT< DATA, DIM > > &eltList, const KDTreeBoxT< DIM > ®ion)
Build the KD tree from the "eltList" in the space define by "region".
void search(const KDTreeBoxT< DIM > &searchBox, std::vector< KDTreeNodeInfoT< DATA, DIM > > &resRecHitList)
Search in the KDTree for all points that would be contained in the given searchbox The founded points...
bool empty()
Whether the tree is empty.
static pandora::HitType GetClusterHitType(const pandora::Cluster *const pCluster)
Get the hit type associated with a two dimensional cluster.
static void GetCoordinateVector(const pandora::Cluster *const pCluster, pandora::CartesianPointVector &coordinateVector)
Get vector of hit coordinates from an input cluster.
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,...
static float GetWireZPitch(const pandora::Pandora &pandora, const float maxWirePitchDiscrepancy=0.01)
Return the wire pitch.
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 bool IsInGap3D(const pandora::Pandora &pandora, const pandora::CartesianVector &testPoint3D, const pandora::HitType hitType, const float gapTolerance=0.f)
Whether a 3D test point lies in a registered gap with the associated hit type.
TwoDSlidingFitResult class.
pandora::CartesianVector GetGlobalMinLayerPosition() const
Get global position corresponding to the fit result in minimum fit layer.
pandora::CartesianVector GetGlobalMinLayerDirection() const
Get global direction corresponding to the fit result in minimum fit layer.
pandora::CartesianVector GetGlobalMaxLayerPosition() const
Get global position corresponding to the fit result in maximum fit layer.
pandora::CartesianVector GetGlobalMaxLayerDirection() const
Get global direction corresponding to the fit result in maximum fit layer.
void SetConstants(const float minZCoordinate, const float decayConstant)
Set the beam constants.
ShowerCluster(const pandora::ClusterList &clusterList, const int slidingFitWindow, const float slidingFitPitch)
Constructor.
pandora::CartesianPointVector GetClusterListCoordinateVector(const pandora::ClusterList &clusterList) const
Get the coordinate vector for a cluster list.
pandora::CartesianVector m_minLayerDirection
The direction of the fit at the min layer.
pandora::CartesianVector m_maxLayerDirection
The direction of the fit at the min layer.
pandora::CartesianVector m_maxLayerPosition
The position of the fit at the max layer.
SlidingFitData(const pandora::Cluster *const pCluster, const int slidingFitWindow, const float slidingFitPitch)
Constructor.
pandora::CartesianVector m_minLayerPosition
The position of the fit at the max layer.
VertexSelectionBaseAlgorithm()
Default constructor.
std::vector< VertexScore > VertexScoreList
bool AcceptVertexLocation(const pandora::Vertex *const pVertex, const pandora::VertexList &selectedVertexList) const
Whether to accept a candidate vertex, based on its spatial position in relation to other selected can...
std::string m_outputVertexListName
The name under which to save the output vertex list.
std::map< pandora::HitType, const std::reference_wrapper< HitKDTree2D > > KDTreeMap
Map array of hit kd trees for passing to tools.
float m_nDecayLengthsInZSpan
The number of score decay lengths to use over the course of the vertex z-span.
void InitializeKDTrees(HitKDTree2D &kdTreeU, HitKDTree2D &kdTreeV, HitKDTree2D &kdTreeW) const
Initialize kd trees with details of hits in algorithm-configured cluster lists.
std::vector< HitKDNode2D > HitKDNode2DList
void GetClusterLists(const pandora::StringVector &inputClusterListNames, pandora::ClusterList &clusterListU, pandora::ClusterList &clusterListV, pandora::ClusterList &clusterListW) const
Get the cluster lists.
float m_maxOnHitDisplacement
Max hit-vertex displacement for declaring vertex to lie on a hit in each view.
pandora::StringVector m_inputCaloHitListNames
The list of calo hit list names.
void CalculateClusterSlidingFits(const pandora::ClusterList &inputClusterList, const unsigned int minClusterCaloHits, const unsigned int slidingFitWindow, SlidingFitDataList &slidingFitDataList) const
Calculate the cluster sliding fits.
unsigned int m_minVertexAcceptableViews
The minimum number of views in which a candidate must sit on/near a hit or in a gap (or view can be e...
bool m_replaceCurrentVertexList
Whether to replace the current vertex list with the output list.
bool IsVertexOnHit(const pandora::Vertex *const pVertex, const pandora::HitType hitType, HitKDTree2D &kdTree) const
Whether the vertex lies on a hit in the specified view.
float m_minCandidateScoreFraction
Ignore other top-scoring candidates with score less than a fraction of original.
static bool SortByVertexZPosition(const pandora::Vertex *const pLhs, const pandora::Vertex *const pRhs)
Sort vertices by increasing z position.
bool m_useDetectorGaps
Whether to account for registered detector gaps in vertex selection.
float m_gapTolerance
The tolerance to use when querying whether a sampling point is in a gap, units cm.
void SelectTopScoreVertices(VertexScoreList &vertexScoreList, pandora::VertexList &selectedVertexList) const
From the top-scoring candidate vertices, select a subset for further investigation.
float GetVertexEnergy(const pandora::Vertex *const pVertex, const KDTreeMap &kdTreeMap) const
Calculate the energy of a vertex candidate by summing values from all three planes.
bool m_selectSingleVertex
Whether to make a final decision and select just one vertex candidate.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
Read the algorithm settings.
float m_minCandidateDisplacement
Ignore other top-scoring candidates located in close proximity to original.
bool m_beamMode
Whether to run in beam mode, assuming neutrinos travel in positive z-direction.
virtual void GetVertexScoreList(const pandora::VertexVector &vertexVector, const BeamConstants &beamConstants, HitKDTree2D &kdTreeU, HitKDTree2D &kdTreeV, HitKDTree2D &kdTreeW, VertexScoreList &vertexScoreList) const =0
Get the vertex score list for a provided list of candidate vertices.
pandora::StatusCode Run()
Run the algorithm.
bool IsVertexInGap(const pandora::Vertex *const pVertex, const pandora::HitType hitType) const
Whether the vertex lies in a registered gap.
bool m_isEmptyViewAcceptable
Whether views entirely empty of hits are classed as 'acceptable' for candidate filtration.
virtual void FilterVertexList(const pandora::VertexList *const pInputVertexList, HitKDTree2D &kdTreeU, HitKDTree2D &kdTreeV, HitKDTree2D &kdTreeW, pandora::VertexVector &filteredVertices) const
Filter the input list of vertices to obtain a reduced number of vertex candidates.
std::vector< SlidingFitData > SlidingFitDataList
virtual void GetBeamConstants(const pandora::VertexVector &vertexVector, BeamConstants &beamConstants) const
Get the beam score constants for a provided list of candidate vertices.
unsigned int m_maxTopScoreSelections
Max number of top-scoring vertex candidate to select for output.
float VertexHitEnergy(const pandora::Vertex *const pVertex, const pandora::HitType hitType, HitKDTree2D &kdTree) const
Finds the energy of the nearest hit to the vertex candidate in this view.
float GetX() const
Get the cartesian x coordinate.
float GetZ() const
Get the cartesian z coordinate.
float GetY() const
Get the cartesian y coordinate.
bool ShouldDisplayAlgorithmInfo() const
Whether to display algorithm information during processing.
const Pandora & GetPandora() const
Get the associated pandora instance.
StatusCodeException class.
const CartesianVector & GetPosition() const
Get the vertex position.
static StatusCode ReadVectorOfValues(const TiXmlHandle &xmlHandle, const std::string &xmlElementName, std::vector< T > &vector)
Read a vector of values from a (space separated) list in an xml element.
static StatusCode ReadValue(const TiXmlHandle &xmlHandle, const std::string &xmlElementName, T &t)
Read a value from an xml element.
KDTreeBox fill_and_bound_2d_kd_tree(const MANAGED_CONTAINER< const T * > &points, std::vector< KDTreeNodeInfoT< const T *, 2 > > &nodes)
fill_and_bound_2d_kd_tree
KDTreeBox build_2d_kd_search_region(const pandora::CaloHit *const point, const float x_span, const float z_span)
build_2d_kd_search_region
HitType
Calorimeter hit type enum.
std::vector< const Cluster * > ClusterVector
MANAGED_CONTAINER< const Cluster * > ClusterList
std::vector< std::string > StringVector
std::vector< CartesianVector > CartesianPointVector
MANAGED_CONTAINER< const CaloHit * > CaloHitList
MANAGED_CONTAINER< const Vertex * > VertexList
StatusCode
The StatusCode enum.
std::vector< const Vertex * > VertexVector