SimpleNeutrinoIdTool.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArControlFlow/SimpleNeutrinoIdTool.h
3  *
4  * @brief Header file for the neutrino id tool class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_SIMPLE_NEUTRINO_ID_TOOL_H
9 #define LAR_SIMPLE_NEUTRINO_ID_TOOL_H 1
10 
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief SimpleNeutrinoIdTool class
18  */
20 {
21 public:
22  /**
23  * @brief Default constructor
24  */
26 
27  void SelectOutputPfos(const pandora::Algorithm *const pAlgorithm, const SliceHypotheses &nuSliceHypotheses,
28  const SliceHypotheses &crSliceHypotheses, pandora::PfoList &selectedPfos);
29 
30 private:
31  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
32 
33  bool m_selectAllNeutrinos; ///< First approach: select all neutrinos, as opposed to selecting all cosmics
34  bool m_selectOnlyFirstSliceNeutrinos; ///< First approach: select first slice neutrinos, cosmics for all subsequent slices
35 };
36 
37 } // namespace lar_content
38 
39 #endif // #ifndef LAR_SIMPLE_NEUTRINO_ID_TOOL_H
bool m_selectOnlyFirstSliceNeutrinos
First approach: select first slice neutrinos, cosmics for all subsequent slices.
bool m_selectAllNeutrinos
First approach: select all neutrinos, as opposed to selecting all cosmics.
Header file for the master algorithm class.
std::vector< pandora::PfoList > SliceHypotheses
void SelectOutputPfos(const pandora::Algorithm *const pAlgorithm, const SliceHypotheses &nuSliceHypotheses, const SliceHypotheses &crSliceHypotheses, pandora::PfoList &selectedPfos)
Select which reconstruction hypotheses to use; neutrino outcomes or cosmic-ray muon outcomes for each...
SliceIdBaseTool class.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
SimpleNeutrinoIdTool class.
SimpleNeutrinoIdTool()
Default constructor.