CheatingVertexCreationAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArCheating/CheatingVertexCreationAlgorithm.h
3  *
4  * @brief Header file for the cheating vertex creation algorithm class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_CHEATING_VERTEX_CREATION_ALGORITHM_H
9 #define LAR_CHEATING_VERTEX_CREATION_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief CheatingVertexCreationAlgorithm::Algorithm class
18  */
19 class CheatingVertexCreationAlgorithm : 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_outputVertexListName; ///< The name under which to save the output vertex list
32  bool m_replaceCurrentVertexList; ///< Whether to replace the current vertex list with the output list
33  float m_vertexXCorrection; ///< The vertex x correction, added to reported mc neutrino endpoint x value, in cm
34 };
35 
36 } // namespace lar_content
37 
38 #endif // #ifndef LAR_CHEATING_VERTEX_CREATION_ALGORITHM_H
std::string string
Definition: nybbler.cc:12
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
float m_vertexXCorrection
The vertex x correction, added to reported mc neutrino endpoint x value, in cm.
bool m_replaceCurrentVertexList
Whether to replace the current vertex list with the output list.
std::string m_outputVertexListName
The name under which to save the output vertex list.
CheatingVertexCreationAlgorithm::Algorithm class.