APRILContent
Algorithm of Particle Reconstruction for ILC - implementation with PandoraSDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations
ClusterTrackEnergyFillingHelper.h
Go to the documentation of this file.
1 /* ClusterTrackEnergyFillingHelper.h
3  *
4  * Author: Bo Li (IPNL)
5  *
6  */
7 
8 #ifndef CLUSTERTRACKENERGYFILLINGHELPER_H
9 #define CLUSTERTRACKENERGYFILLINGHELPER_H
10 
11 #include "Pandora/PandoraInternal.h"
12 #include "Pandora/StatusCodes.h"
13 #include "TNtuple.h"
14 
15 namespace pandora { class Algorithm; class CaloHit; class Track; }
16 
17 namespace april_content
18 {
20  {
21  public:
22  static pandora::StatusCode FillEnergy(float cluster, float track);
23 
24  private:
25  // constructor
27 
28  // destructor
30 
31  // the tuple of cluster property
32  static TNtuple* m_ntuple;
33 
35  static float m_cluster;
36  static float m_track;
37  };
38 }
39 
40 #endif // CLUSTERTRACKENERGYFILLINGHELPER_H
Definition: ClusterTrackEnergyFillingHelper.h:19