PfoValidationAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArMonitoring/PfoValidationAlgorithm.h
3  *
4  * @brief Header file for the pfo validation algorithm.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_PFO_VALIDATION_ALGORITHM_H
9 #define LAR_PFO_VALIDATION_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief PfoValidationAlgorithm class
18  */
19 class PfoValidationAlgorithm : public pandora::Algorithm
20 {
21 public:
22  /**
23  * @brief Default constructor
24  */
26 
27 private:
28  pandora::StatusCode Run();
29  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
30 
31  std::string m_caloHitListName; ///< Name of input calo hit list
32  std::string m_pfoListName; ///< Name of input pfo list
33  LArMCParticleHelper::PrimaryParameters m_parameters; ///< Parameters used to decide when an MCParticle is reconstructable
34  unsigned int m_nMatchesToShow; ///< The maximum number of MCParticle to Pfo matches to show
35 };
36 
37 } // namespace lar_content
38 
39 #endif // LAR_PFO_VALIDATION_ALGORITHM_H
std::string string
Definition: nybbler.cc:12
PfoValidationAlgorithm class.
unsigned int m_nMatchesToShow
The maximum number of MCParticle to Pfo matches to show.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
LArMCParticleHelper::PrimaryParameters m_parameters
Parameters used to decide when an MCParticle is reconstructable.
std::string m_caloHitListName
Name of input calo hit list.
std::string m_pfoListName
Name of input pfo list.