ShowerPfoMopUpAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArThreeDReco/LArPfoMopUp/ShowerPfoMopUpAlgorithm.h
3  *
4  * @brief Header file for the shower pfo mop up algorithm class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_SHOWER_PFO_MOP_UP_ALGORITHM_H
9 #define LAR_SHOWER_PFO_MOP_UP_ALGORITHM_H 1
10 
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief ShowerPfoMopUpAlgorithm::Algorithm class
18  */
20 {
21 public:
22  /**
23  * @brief Default constructor
24  */
26 
27 private:
28  bool IsVertexAssociated(const pandora::CartesianVector &vertex2D, const LArPointingCluster &pointingCluster) const;
29  PfoAssociation GetPfoAssociation(const pandora::Pfo *const pVertexPfo, const pandora::Pfo *const pDaughterPfo,
30  HitTypeToAssociationMap &hitTypeToAssociationMap) const;
31  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
32 
33  float m_maxVertexLongitudinalDistance; ///< Vertex association check: max longitudinal distance cut
34  float m_vertexAngularAllowance; ///< Vertex association check: pointing angular allowance in degrees
35 };
36 
37 } // namespace lar_content
38 
39 #endif // #ifndef LAR_SHOWER_PFO_MOP_UP_ALGORITHM_H
float m_maxVertexLongitudinalDistance
Vertex association check: max longitudinal distance cut.
PfoAssociation GetPfoAssociation(const pandora::Pfo *const pVertexPfo, const pandora::Pfo *const pDaughterPfo, HitTypeToAssociationMap &hitTypeToAssociationMap) const
Get pfo association details between a vertex-associated pfo and a non-vertex associated daughter cand...
LArPointingCluster class.
bool IsVertexAssociated(const pandora::CartesianVector &vertex2D, const LArPointingCluster &pointingCluster) const
Whether a specified pfo is associated with a specified vertex.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
std::map< pandora::HitType, ClusterAssociation > HitTypeToAssociationMap
ShowerPfoMopUpAlgorithm::Algorithm class.
float m_vertexAngularAllowance
Vertex association check: pointing angular allowance in degrees.
Header file for the vertex based pfo mop up algorithm class.