APRILContent
Algorithm of Particle Reconstruction for ILC - implementation with PandoraSDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations
CheatingClusterMergingAlgorithm.h
Go to the documentation of this file.
1 
8 #ifndef APRIL_CHEATING_CLUSTER_MERGING_ALGORITHM_H
9 #define APRIL_CHEATING_CLUSTER_MERGING_ALGORITHM_H 1
10 
11 #include "Pandora/Algorithm.h"
12 
13 namespace april_content
14 {
15 
19 class CheatingClusterMergingAlgorithm : 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 
36 inline pandora::Algorithm *CheatingClusterMergingAlgorithm::Factory::CreateAlgorithm() const
37 {
39 }
40 
41 } // namespace APRIL_content
42 
43 #endif
CheatingClusterMergingAlgorithm class.
Definition: CheatingClusterMergingAlgorithm.h:19
Factory class for instantiating algorithm.
Definition: CheatingClusterMergingAlgorithm.h:25