APRILContent
Algorithm of Particle Reconstruction for ILC - implementation with PandoraSDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations
CheatingClusterCleaningAlgorithm.h
Go to the documentation of this file.
1 
8 #ifndef APRIL_CHEATING_CLUSTER_CLEANING_ALGORITHM_H
9 #define APRIL_CHEATING_CLUSTER_CLEANING_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace april_content
14 {
15 
19 class CheatingClusterCleaningAlgorithm : public pandora::Algorithm
20 {
21 public:
25  class Factory : public pandora::AlgorithmFactory
26  {
27  public:
28  pandora::Algorithm *CreateAlgorithm() const;
29  };
30 
31 private:
32  pandora::StatusCode Run();
33  pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
34 
35  bool m_isOnlyCleanPhoton;
36 };
37 
38 inline pandora::Algorithm *CheatingClusterCleaningAlgorithm::Factory::CreateAlgorithm() const
39 {
41 }
42 
43 } // namespace APRIL_content
44 
45 #endif // #ifndef APRIL_CHEATING_CLUSTER_CLEANING_ALGORITHM_H
Factory class for instantiating algorithm.
Definition: CheatingClusterCleaningAlgorithm.h:25
CheatingClusterCleaningAlgorithm class.
Definition: CheatingClusterCleaningAlgorithm.h:19