CheatingCosmicRayIdentificationAlg.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArCheating/CheatingCosmicRayIdentificationAlg.h
3  *
4  * @brief Header file for the cosmic ray identification cheater class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_CHEATING_COSMIC_RAY_IDENTIFICATION_ALG_H
9 #define LAR_CHEATING_COSMIC_RAY_IDENTIFICATION_ALG_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief CheatingCosmicRayIdentificationAlg class
18  */
19 class CheatingCosmicRayIdentificationAlg : 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_inputPfoListName; ///< The input pfo list name
32  std::string m_outputPfoListName; ///< The output pfo list name
33  std::string m_inputDaughterPfoListName; ///< The input daughter pfo list name (if not specified, will assume same as main input list)
34  std::string m_outputDaughterPfoListName; ///< The output daughter pfo list name (if not specified, will assume same as main output list)
35  float m_maxNeutrinoFraction; ///< The maximum true neutrino fraction in a particle to be labelled as a cosmic ray
36 };
37 
38 } // namespace lar_content
39 
40 #endif // #ifndef LAR_CHEATING_COSMIC_RAY_IDENTIFICATION_ALG_H
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
std::string string
Definition: nybbler.cc:12
std::string m_inputDaughterPfoListName
The input daughter pfo list name (if not specified, will assume same as main input list) ...
std::string m_outputDaughterPfoListName
The output daughter pfo list name (if not specified, will assume same as main output list) ...
float m_maxNeutrinoFraction
The maximum true neutrino fraction in a particle to be labelled as a cosmic ray.