Class Reference for E1039 Core & Analysis Software
CheckEventData.h
Go to the documentation of this file.
1 #ifndef _CHECK_EVENT_DATA__H_
2 #define _CHECK_EVENT_DATA__H_
3 #include <iostream>
4 #include <map>
5 #include <fun4all/SubsysReco.h>
6 class SQEvent;
7 class SQHitVector;
8 class TFile;
9 class TTree;
10 
12 class CheckEventData: public SubsysReco {
14  SQEvent* m_evt;
15  SQHitVector* m_hit_vec;
16 
18  TFile* m_file;
19  TTree* m_tree;
20 
21  public:
23  virtual ~CheckEventData() {;}
24  int Init(PHCompositeNode *topNode);
25  int InitRun(PHCompositeNode *topNode);
26  int process_event(PHCompositeNode *topNode);
27  int End(PHCompositeNode *topNode);
28 };
29 
30 #endif // _CHECK_EVENT_DATA__H_
A SubsysReco module to look into simulated hits.
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
virtual ~CheckEventData()
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32