Class Reference for E1039 Core & Analysis Software
Fun4AllSpillSRawEventOutputManager.cxx
Go to the documentation of this file.
1 #include <cstdlib>
2 #include <string>
3 #include <iostream>
4 #include <iomanip>
5 #include <TSystem.h>
6 #include <TFile.h>
7 #include <TTree.h>
8 #include <TSQLServer.h>
9 #include <phool/phool.h>
10 #include <phool/getClass.h>
11 #include <phool/PHNode.h>
12 #include <phool/PHNodeIOManager.h>
13 #include <phool/PHNodeIterator.h>
14 #include <interface_main/SQEvent.h>
17 #include <ktracker/SRawEvent.h>
18 #include <db_svc/DbSvc.h>
19 #include "UtilSRawEvent.h"
21 using namespace std;
22 
23 Fun4AllSpillSRawEventOutputManager::Fun4AllSpillSRawEventOutputManager(const std::string &dir_base, const string &myname)
24  : Fun4AllOutputManager(myname)
25  , m_dir_base(dir_base)
26  , m_tree_name("save")
27  , m_branch_name("rawEvent")
28  , m_file_name("")
29  , m_run_id(0)
30  , m_spill_id(0)
31  , m_file(0)
32  , m_tree(0)
33  , m_sraw(0)
34  , m_evt(0)
35  , m_sp_map(0)
36  , m_hit_vec(0)
37  , m_trig_hit_vec(0)
38  , m_db(0)
39  , m_name_schema("")
40  , m_name_table("")
41  , m_use_sqlite(false)
42 {
43  ;
44 }
45 
47 {
48  CloseFile();
49  if (m_sraw) delete m_sraw;
50  if (m_db) delete m_db;
51 }
52 
53 void Fun4AllSpillSRawEventOutputManager::EnableDB(const std::string name_schema, const std::string name_table, const bool refresh_db)
54 {
55  m_name_schema = name_schema;
56  m_name_table = name_table;
57  m_db = new DbSvc(DbSvc::DB1);
58  m_db->UseSchema(m_name_schema, true);
59 
60  if (refresh_db && m_db->HasTable(m_name_table)) m_db->DropTable(m_name_table);
61  if (! m_db->HasTable(m_name_table)) {
62  DbSvc::VarList list;
63  list.Add("run_id" , "INT", true);
64  list.Add("spill_id" , "INT", true);
65  list.Add("file_name", "VARCHAR(256)");
66  list.Add("status" , "INT");
67  list.Add("utime_b" , "INT");
68  list.Add("utime_e" , "INT");
69  m_db->CreateTable(m_name_table, list);
70  }
71 }
72 
74 {
75  if (! m_evt) {
76  m_evt = findNode::getClass<SQEvent >(startNode, "SQEvent");
77  m_sp_map = findNode::getClass<SQSpillMap >(startNode, "SQSpillMap");
78  m_hit_vec = findNode::getClass<SQHitVector>(startNode, "SQHitVector");
79  m_trig_hit_vec = findNode::getClass<SQHitVector>(startNode, "SQTriggerHitVector");
80  if (!m_evt || !m_hit_vec || !m_trig_hit_vec) {
81  cout << PHWHERE << "Cannot find the SQ data nodes. Abort." << endl;
82  exit(1);
83  }
84  }
85  int run_id = m_evt->get_run_id();
86  int sp_id = m_evt->get_spill_id();
87  if (m_run_id != run_id || m_spill_id != sp_id) { // New spill
88  CloseFile();
89  m_run_id = run_id;
90  m_spill_id = sp_id;
91  OpenFile();
92  }
93  SQSpill* sp = m_sp_map ? m_sp_map->get(sp_id) : 0;
94  UtilSRawEvent::SetEvent (m_sraw, m_evt);
95  UtilSRawEvent::SetSpill (m_sraw, sp);
96  UtilSRawEvent::SetHit (m_sraw, m_hit_vec);
97  UtilSRawEvent::SetTriggerHit(m_sraw, m_trig_hit_vec);
98  m_tree->Fill();
99  return 0;
100 }
101 
103 {
104  if (Verbosity() > 0) cout << "Fun4AllSpillSRawEventOutputManager::CloseFile(): run " << m_run_id << ", spill " << m_spill_id << endl;
105  if (! m_file) return;
106  m_file->Write();
107  m_file->Close();
108  delete m_file;
109  m_file = 0;
110  UpdateDBStatus(CLOSE);
111 
112  if (m_db) { // MySQL DB
113  int utime = time(0);
114  ostringstream oss;
115  oss << "update " << m_name_table << " set status = " << CLOSE << ", utime_e = " << utime
116  << " where run_id = " << m_run_id << " and spill_id = " << m_spill_id;
117  if (! m_db->Con()->Exec(oss.str().c_str())) {
118  cerr << "!!ERROR!! Fun4AllSpillSRawEventOutputManager::CloseFile(): " << oss.str() << endl;
119  return;
120  }
121  }
122 }
123 
125 {
126  if (Verbosity() > 0) cout << "Fun4AllSpillSRawEventOutputManager::OpenFile(): run " << m_run_id << ", spill " << m_spill_id << endl;
127  ostringstream oss;
128  oss << m_dir_base << "/sraw/run_" << setfill('0') << setw(6) << m_run_id;
129  gSystem->mkdir(oss.str().c_str(), true);
130  oss << "/run_" << setw(6) << m_run_id << "_spill_" << setw(9) << m_spill_id << "_sraw.root";
131  m_file_name = oss.str();
132  if (Verbosity() > 9) cout << " " << m_file_name << endl;
133  m_file = new TFile(m_file_name.c_str(), "RECREATE");
134  if (!m_file->IsOpen()) {
135  cout << PHWHERE << "Could not open " << m_file_name << ". Abort." << endl;
136  exit(1);
137  }
138  if (!m_sraw) m_sraw = new SRawEvent();
139  m_tree = new TTree(m_tree_name.c_str(), "");
140  m_tree->Branch(m_branch_name.c_str(), &m_sraw);
141  UpdateDBStatus(OPEN);
142 
143  if (m_db) { // MySQL DB
144  int utime = time(0);
145  ostringstream oss;
146  oss << "insert into " << m_name_table
147  << " values(" << m_run_id << ", " << m_spill_id << ", '" << m_file_name << "', 1, " << utime << ", 0)"
148  << " on duplicate key update file_name = '" << m_file_name << "', status = " << OPEN << ", utime_b = " << utime << ", utime_e = 0";
149  if (! m_db->Con()->Exec(oss.str().c_str())) {
150  cerr << "!!ERROR!! Fun4AllSpillSRawEventOutputManager::OpenFile(): " << oss.str() << endl;
151  return;
152  }
153  }
154 }
155 
157 
176 {
177  if (! m_use_sqlite) return;
178 
179  const char* table_name = "data_status";
180  ostringstream oss;
181  oss << m_dir_base << "/data_status.db";
182  DbSvc db(DbSvc::LITE, oss.str());
183 
184  oss.str("");
185  oss << "insert or ignore into " << table_name << " (run_id, spill_id) values (" << m_run_id << ", " << m_spill_id << ")";
186  if (! db.Con()->Exec(oss.str().c_str())) {
187  cerr << "!!ERROR!! Fun4AllSpillSRawEventOutputManager::UpdateDBStatus()." << endl;
188  return;
189  }
190  oss.str("");
191  oss << "update " << table_name << " set utime_deco = strftime('%s', 'now'), status_deco = " << status << " where run_id = " << m_run_id << " and spill_id = " << m_spill_id;
192  if (! db.Con()->Exec(oss.str().c_str())) {
193  cerr << "!!ERROR!! Fun4AllSpillSRawEventOutputManager::UpdateDBStatus()." << endl;
194  return;
195  }
196 }
void Add(const std::string name, const std::string type, const bool is_key=false)
Definition: DbSvc.cc:282
Standard interface with SQL database.
Definition: DbSvc.h:15
@ LITE
Definition: DbSvc.h:17
@ DB1
Definition: DbSvc.h:17
void DropTable(const char *name)
Definition: DbSvc.cc:82
void UseSchema(const char *name, const bool do_create=false, const bool do_drop=false)
Definition: DbSvc.cc:52
void CreateTable(const std::string name, const std::vector< std::string > list_var, const std::vector< std::string > list_type, const std::vector< std::string > list_key)
Definition: DbSvc.cc:102
TSQLServer * Con()
Definition: DbSvc.h:44
bool HasTable(const char *name, const bool exit_on_false=false)
Definition: DbSvc.cc:92
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
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)
virtual int get_run_id() const =0
Return the run ID.
virtual int get_spill_id() const =0
Return the spill ID.
virtual const SQSpill * get(unsigned int idkey) const
Return the SQSpill entry having spill ID = 'idkey'. Return '0' if no entry exists.
Definition: SQSpillMap.h:41
An SQ interface class to hold the data of one spill.
Definition: SQSpill.h:19
bool SetTriggerHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetEvent(SRawEvent *sraw, const SQEvent *evt, const bool do_assert=false)
bool SetHit(SRawEvent *sraw, const SQHitVector *hit_vec, std::map< int, size_t > *hitID_idx=0, const bool do_assert=false)
bool SetSpill(SRawEvent *sraw, const SQSpill *sp, const bool do_assert=false)
#define PHWHERE
Definition: phool.h:23