KinkSplittingAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArTwoDReco/LArClusterSplitting/KinkSplittingAlgorithm.h
3  *
4  * @brief Header file for the kink splitting algorithm class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_KINK_SPLITTING_ALGORITHM_H
9 #define LAR_KINK_SPLITTING_ALGORITHM_H 1
10 
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief KinkSplittingAlgorithm class
18  */
20 {
21 public:
22  /**
23  * @brief Default constructor
24  */
26 
27 private:
28  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
29 
30  /**
31  * @brief Use sliding linear fit to identify the best split position
32  *
33  * @param slidingFitResult the input sliding fit result
34  * @param splitPosition the best split position
35  *
36  * @return pandora::StatusCode
37  */
38  pandora::StatusCode FindBestSplitPosition(const TwoDSlidingFitResult &slidingFitResult, pandora::CartesianVector &splitPosition) const;
39 
40  float m_maxScatterRms; ///<
43 };
44 
45 } // namespace lar_content
46 
47 #endif // #ifndef LAR_KINK_SPLITTING_ALGORITHM_H
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
KinkSplittingAlgorithm class.
Header file for the two dimensional sliding fit splitting algorithm class.
pandora::StatusCode FindBestSplitPosition(const TwoDSlidingFitResult &slidingFitResult, pandora::CartesianVector &splitPosition) const
Use sliding linear fit to identify the best split position.