Class Reference for E1039 Core & Analysis Software
GenEmbeddingData.h
Go to the documentation of this file.
1 #ifndef _GEN_EMBEDDING_DATA__H_
2 #define _GEN_EMBEDDING_DATA__H_
3 #include <fun4all/SubsysReco.h>
4 class TFile;
5 class TTree;
6 class SQEvent;
7 class SQMCEvent;
8 class SQHitVector;
9 class SQTrackVector;
10 class SQDimuonVector;
11 
15  SQEvent * mi_evt;
16  SQHitVector * mi_vec_hit;
17  SQMCEvent * mi_sim_evt;
18  SQTrackVector * mi_sim_vec_trk;
19  SQDimuonVector* mi_sim_vec_dim;
20 
22  std::string m_name_file;
23  std::string m_name_tree;
24  TFile* mo_file;
25  TTree* mo_tree;
26 
27  public:
28  GenEmbeddingData(const std::string name="GenEmbeddingData");
29  virtual ~GenEmbeddingData() {;}
30  int Init(PHCompositeNode *topNode);
31  int InitRun(PHCompositeNode *topNode);
32  int process_event(PHCompositeNode *topNode);
33  int End(PHCompositeNode *topNode);
34 
35  void SetFileName(const std::string name) { m_name_file = name; }
36  void SetTreeName(const std::string name) { m_name_tree = name; }
37  std::string GetFileName() const { return m_name_file; }
38  std::string GetTreeName() const { return m_name_tree; }
39 };
40 
41 #endif // _GEN_EMBEDDING_DATA__H_
An example class to analyze the simulated uDST file.
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void SetTreeName(const std::string name)
GenEmbeddingData(const std::string name="GenEmbeddingData")
std::string GetFileName() const
int InitRun(PHCompositeNode *topNode)
std::string GetTreeName() const
void SetFileName(const std::string name)
virtual ~GenEmbeddingData()
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