8 #include <TSQLServer.h>
17 #include <ktracker/SRawEvent.h>
25 , m_dir_base(dir_base)
27 , m_branch_name(
"rawEvent")
49 if (m_sraw)
delete m_sraw;
50 if (m_db)
delete m_db;
55 m_name_schema = name_schema;
56 m_name_table = name_table;
61 if (! m_db->
HasTable(m_name_table)) {
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");
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;
87 if (m_run_id != run_id || m_spill_id != sp_id) {
93 SQSpill* sp = m_sp_map ? m_sp_map->
get(sp_id) : 0;
104 if (
Verbosity() > 0) cout <<
"Fun4AllSpillSRawEventOutputManager::CloseFile(): run " << m_run_id <<
", spill " << m_spill_id << endl;
105 if (! m_file)
return;
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;
126 if (
Verbosity() > 0) cout <<
"Fun4AllSpillSRawEventOutputManager::OpenFile(): run " << m_run_id <<
", spill " << m_spill_id << endl;
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;
139 m_tree =
new TTree(m_tree_name.c_str(),
"");
140 m_tree->Branch(m_branch_name.c_str(), &m_sraw);
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;
177 if (! m_use_sqlite)
return;
179 const char* table_name =
"data_status";
181 oss << m_dir_base <<
"/data_status.db";
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;
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;
void Add(const std::string name, const std::string type, const bool is_key=false)
Standard interface with SQL database.
void DropTable(const char *name)
void UseSchema(const char *name, const bool do_create=false, const bool do_drop=false)
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)
bool HasTable(const char *name, const bool exit_on_false=false)
virtual int Verbosity() const
Gets the verbosity of this module.
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 ~Fun4AllSpillSRawEventOutputManager()
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.
An SQ interface class to hold the data of one spill.
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)