Class Reference for E1039 Core & Analysis Software
AnaEmbeddedData.h
Go to the documentation of this file.
1 #ifndef _ANA_EMBEDDED_DATA__H_
2 #define _ANA_EMBEDDED_DATA__H_
3 #include <map>
4 #include <fun4all/SubsysReco.h>
5 #include "TreeData.h"
6 class TFile;
7 class TTree;
8 class SQEvent;
9 class SRecEvent;
10 class SQMCEvent;
11 class SQHitVector;
12 class SQTrackVector;
13 class SQDimuonVector;
14 
16 
21 class AnaEmbeddedData: public SubsysReco {
23  SQEvent * mi_evt;
24  SQEvent * mi_evt_emb;
25  SQMCEvent * mi_evt_mc;
26  SQMCEvent * mi_evt_mc_emb;
27  SQHitVector * mi_vec_hit;
28  SQTrackVector * mi_vec_trk;
29  SQDimuonVector* mi_vec_dim;
30  SRecEvent * mi_srec;
31 
33  TFile* mo_file;
34  TTree* mo_tree;
35  EventData mo_evt;
36  TrackList mo_trk_true;
37  TrackList mo_trk_reco;
38  DimuonList mo_dim_true;
39  DimuonList mo_dim_reco;
40 
41  public:
42  AnaEmbeddedData(const std::string name="AnaEmbeddedData");
43  virtual ~AnaEmbeddedData() {;}
44  int Init(PHCompositeNode *topNode);
45  int InitRun(PHCompositeNode *topNode);
46  int process_event(PHCompositeNode *topNode);
47  int End(PHCompositeNode *topNode);
48 
49  private:
50  void DivideHitVector(const SQHitVector* vec_in, std::map<int, SQHitVector*>& vec_sep, const bool in_time=false);
51 };
52 
53 #endif /* _ANA_EMBEDDED_DATA__H_ */
std::vector< DimuonData > DimuonList
Definition: TreeData.h:54
std::vector< TrackData > TrackList
Definition: TreeData.h:53
A SubsysReco module to analyze the hit-embedded data.
virtual ~AnaEmbeddedData()
int Init(PHCompositeNode *topNode)
AnaEmbeddedData(const std::string name="AnaEmbeddedData")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
An SQ interface class to hold a list of SQDimuon objects.
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
An SQ interface class to hold one simulated-event header.
Definition: SQMCEvent.h:12
An SQ interface class to hold a list of SQTrack objects.
Definition: SQTrackVector.h:19