Class Reference for E1039 Core & Analysis Software
Fun4AllSpillSRawEventOutputManager.h
Go to the documentation of this file.
1 #ifndef __FUN4ALL_SPILL_SRAW_EVENT_OUTPUT_MANAGER_H__
2 #define __FUN4ALL_SPILL_SRAW_EVENT_OUTPUT_MANAGER_H__
4 #include <string>
5 #include <vector>
6 class TFile;
7 class TTree;
8 class PHCompositeNode;
9 class SRawEvent;
10 class SQEvent;
11 class SQSpillMap;
12 class SQHitVector;
13 class DbSvc;
14 
17 {
18  typedef enum {
19  UNDEF = 0,
20  OPEN = 1,
21  UPDATE = 2,
22  CLOSE = 3
23  } Status_t;
24  std::string m_dir_base;
25  std::string m_tree_name;
26  std::string m_branch_name;
27  std::string m_file_name;
28  int m_run_id;
29  int m_spill_id;
30  TFile* m_file;
31  TTree* m_tree;
32  SRawEvent* m_sraw;
33 
34  SQEvent* m_evt;
35  SQSpillMap* m_sp_map;
36  SQHitVector* m_hit_vec;
37  SQHitVector* m_trig_hit_vec;
38 
39  DbSvc* m_db;
40  std::string m_name_schema;
41  std::string m_name_table;
42  bool m_use_sqlite;
43 
44  public:
45  Fun4AllSpillSRawEventOutputManager(const std::string &dir_base, const std::string &myname = "SPILLSRAWEVENTOUT");
47 
48  void SetTreeName (const std::string name) { m_tree_name = name; }
49  void SetBranchName(const std::string name) { m_branch_name = name; }
50  void EnableDB(const std::string name_schema="user_e1039_maindaq", const std::string name_table="sraw_file_status", const bool refresh_db=false);
51  void EnableSQLiteDB(const bool use=true) { m_use_sqlite = use; }
52 
53  virtual int Write(PHCompositeNode *startNode);
54 
55  protected:
56  void CloseFile();
57  void OpenFile();
58  void UpdateDBStatus(const int status);
59 };
60 
61 #endif /* __FUN4ALL_SPILL_SRAW_EVENT_OUTPUT_MANAGER_H__ */
Standard interface with SQL database.
Definition: DbSvc.h:15
Fun4AllOutputManager to generate spill-level SRawEvent output files.
virtual int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllSpillSRawEventOutputManager(const std::string &dir_base, const std::string &myname="SPILLSRAWEVENTOUT")
void UpdateDBStatus(const int status)
Update the status stored in SQLite DB. Obsolete.
void EnableDB(const std::string name_schema="user_e1039_maindaq", const std::string name_table="sraw_file_status", const bool refresh_db=false)
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 a list of SQSpill objects.
Definition: SQSpillMap.h:19