DlClusterCharacterisationAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArTrackShowerId/DlClusterCharacterisationBaseAlgorithm.h
3  *
4  * @brief Header file for the deep learning cluster characterisation algorithm class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_DL_CLUSTER_CHARACTERISATION_ALGORITHM_H
9 #define LAR_DL_CLUSTER_CHARACTERISATION_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
14 
15 namespace lar_dl_content
16 {
17 
18 /**
19  * @brief DlClusterCharacterisationBaseAlgorithm class
20  */
22 {
23 public:
24  /**
25  * @brief Default constructor
26  */
28 
29  /**
30  * @brief Destructor
31  */
33 
34 protected:
35  /**
36  * @brief Whether cluster is identified as a clear track
37  *
38  * @param pCluster address of the relevant cluster
39  *
40  * @return boolean
41  */
42  bool IsClearTrack(const pandora::Cluster *const pCluster) const;
43 
44  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
45 };
46 
47 } // namespace lar_dl_content
48 
49 #endif // #ifndef LAR_DL_CLUSTER_CHARACTERISATION_ALGORITHM_H
Header file for the cluster characterisation base algorithm class.
bool IsClearTrack(const pandora::Cluster *const pCluster) const
Whether cluster is identified as a clear track.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)