ListDeletionAlgorithm.h
Go to the documentation of this file.
1 /**
2  * @file larpandoracontent/LArUtility/ListDeletionAlgorithm.h
3  *
4  * @brief Header file for the list deletion algorithm class.
5  *
6  * $Log: $
7  */
8 #ifndef LAR_LIST_DELETION_ALGORITHM_H
9 #define LAR_LIST_DELETION_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace lar_content
14 {
15 
16 /**
17  * @brief ListDeletionAlgorithm class
18  */
19 class ListDeletionAlgorithm : public pandora::Algorithm
20 {
21 private:
22  pandora::StatusCode Run();
23  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
24 
25  pandora::StringVector m_pfoListNames; ///< The list of pfo list names
26  pandora::StringVector m_clusterListNames; ///< The list of cluster list names
27  pandora::StringVector m_vertexListNames; ///< The list of vertex list names
28 };
29 
30 } // namespace lar_content
31 
32 #endif // #ifndef LAR_LIST_DELETION_ALGORITHM_H
pandora::StringVector m_vertexListNames
The list of vertex list names.
std::vector< string > StringVector
Definition: fcldump.cxx:29
pandora::StringVector m_pfoListNames
The list of pfo list names.
ListDeletionAlgorithm class.
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle)
pandora::StringVector m_clusterListNames
The list of cluster list names.