CheatingCosmicRayRemovalAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArCheating/CheatingCosmicRayRemovalAlgorithm.h
3  *
4  * @brief Header file for the cheating cosmic ray removal algorithm class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_CHEATING_COSMIC_RAY_REMOVAL_ALGORITHM_H
9 #define LAR_CHEATING_COSMIC_RAY_REMOVAL_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief CheatingCosmicRayRemovalAlgorithm::Algorithm class
18  */
19 class CheatingCosmicRayRemovalAlgorithm : public pandora::Algorithm
20 {
21 public:
22  /**
23  * @brief Default constructor
24  */
26 
27 private:
28  pandora::StatusCode Run();
29 
30  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
31 
32  std::string m_inputCaloHitListName; ///< Input calo hit list name
33  std::string m_outputCaloHitListName; ///< Output calo hit list name
34  std::string m_mcParticleListName; ///< MC Particle list name
35 };
36 
37 } // namespace lar_content
38 
39 #endif // #ifndef LAR_CHEATING_COSMIC_RAY_REMOVAL_ALGORITHM_H
CheatingCosmicRayRemovalAlgorithm::Algorithm class.
std::string string
Definition: nybbler.cc:12
std::string m_outputCaloHitListName
Output calo hit list name.
std::string m_inputCaloHitListName
Input calo hit list name.
CheatingCosmicRayRemovalAlgorithm()=default
Default constructor.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)