Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrackingPerformanceCheck.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrackingPerformanceCheck.h
1 #ifndef __TRACKINGPERFORMANCECHECK_H__
2 #define __TRACKINGPERFORMANCECHECK_H__
3 
4 #include <map>
5 
6 #include <fun4all/SubsysReco.h>
7 #include <string>
8 #include <TH1F.h>
9 #include <TH2F.h>
10 #include <TH1D.h>
11 #include <TH2D.h>
12 
13 class PHCompositeNode;
14 
16 
17 public:
18 
19  TrackingPerformanceCheck(const std::string &name="TrackingPerformanceCheck");
20 
21  int Init(PHCompositeNode *topNode);
22  int process_event(PHCompositeNode *topNode);
23  int End(PHCompositeNode *topNode);
29 
30 private:
31 
32  std::map<int,int> fEmbedded;
38 
39  TH1F *fHNEvents;
40 
41  TH1F *fHTN[5];
42  TH1F *fHTPt[5];
43  TH1F *fHTEta[5];
44  TH1F *fHTPhi[5];
45  TH1F *fHTNHits[5];
46  TH2F *fHTChi2[5];
47  TH2F *fHTDca2D[5];
49  TH2F *fHTPtResolution[5];
50  TH2F *fHTPtResolution2[5];
51  TH2F *fHTPhiResolution[5];
52  TH2F *fHTEtaResolution[5];
53 
54  TH1F *fHRN[4];
55  TH1F *fHRPt[4];
56  TH1F *fHREta[4];
57  TH1F *fHRPhi[4];
58  TH2F *fHRChi2[4];
59  TH2F *fHRTPCClus[4];
60  TH2F *fHRDca2D[4];
62  TH2F *fHRPtResolution[4];
63  TH2F *fHRPtResolution2[4];
64  TH2F *fHRPhiResolution[4];
65  TH2F *fHREtaResolution[4];
66 
67  TH1F *fHNVertexes;
68 };
69 
70 #endif // __SVTXSIMPERFORMANCECHECKRECO_H__