DlHitValidationAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoradlcontent/LArMonitoring/DlHitValidationAlgorithm.h
3  *
4  * @brief Header file for the deep learning track shower id validation algorithm.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_DL_HIT_VALIDATION_ALGORITHM_H
9 #define LAR_DL_HIT_VALIDATION_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace lar_dl_content
14 {
15 
16 /**
17  * @brief DlHitValidationlgorithm class
18  */
19 class DlHitValidationAlgorithm : public pandora::Algorithm
20 {
21 public:
22  /**
23  * @brief Default constructor
24  */
26 
27  virtual ~DlHitValidationAlgorithm();
28 
29 private:
30  pandora::StatusCode Run();
31  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
32 
33  pandora::StringVector m_caloHitListNames; ///< Name of input calo hit list
34  int m_confusionU[2][2]; ///< Confusion matrix for the U view
35  int m_confusionV[2][2]; ///< Confusion matrix for the V view
36  int m_confusionW[2][2]; ///< Confusion matrix for the W view
37 };
38 
39 } // namespace lar_dl_content
40 
41 #endif // LAR_DL_HIT_VALIDATION_ALGORITHM_H
int m_confusionW[2][2]
Confusion matrix for the W view.
pandora::StringVector m_caloHitListNames
Name of input calo hit list.
int m_confusionU[2][2]
Confusion matrix for the U view.
int m_confusionV[2][2]
Confusion matrix for the V view.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
std::vector< string > StringVector
Definition: fcldump.cxx:29