Class Reference for E1039 Core & Analysis Software
DbUpRun.cc
Go to the documentation of this file.
1 #include <iomanip>
3 #include <TClass.h>
4 #include <interface_main/SQRun.h>
8 #include <phool/PHNodeIterator.h>
9 #include <phool/PHIODataNode.h>
10 #include <phool/getClass.h>
11 #include <TSQLServer.h>
12 #include <db_svc/DbSvc.h>
13 #include <UtilAna/UtilOnline.h>
14 #include "DecoStatusDb.h"
15 #include "DbUpRun.h"
16 using namespace std;
17 
18 DbUpRun::DbUpRun(const std::string& name) : SubsysReco(name)
19 {
20  ;
21 }
22 
24 {
26 }
27 
29 {
30  SQRun* run = findNode::getClass<SQRun >(topNode, "SQRun");
31  SQParamDeco* par_deco = findNode::getClass<SQParamDeco>(topNode, "SQParamDeco");
32  if (!run || !par_deco) return Fun4AllReturnCodes::ABORTEVENT;
33  UploadRun(run);
34  UploadParam(run->get_run_id(), par_deco);
35  UploadV1495(run);
37 }
38 
40 {
41  static int utime_pre = 0;
42  int utime_now = time(0);
43  if (utime_now - utime_pre >= 10) { // Suppress the number of updates
44  utime_pre = utime_now;
45  SQRun* run_header = findNode::getClass<SQRun>(topNode, "SQRun");
46  if (!run_header) return Fun4AllReturnCodes::ABORTEVENT;
47  UploadRun(run_header);
48  DecoStatusDb deco_stat;
49  deco_stat.RunUpdated(run_header->get_run_id());
50  }
52 }
53 
55 {
56  SQRun* run = findNode::getClass<SQRun >(topNode, "SQRun");
57  SQParamDeco* par_deco = findNode::getClass<SQParamDeco>(topNode, "SQParamDeco");
58  if (!run || !par_deco) return Fun4AllReturnCodes::ABORTEVENT;
59  UploadRun(run);
60  UploadParam(run->get_run_id(), par_deco);
61  UploadV1495(run);
63 }
64 
69 void DbUpRun::UploadRun(SQRun* sq)
70 {
71  const char* table_name = "run";
72  static DbSvc* db = 0;
73  if (db == 0) {
74  db = new DbSvc(DbSvc::DB1);
76  //db->DropTable(table_name); // Use this when you want to refresh
77  if (! db->HasTable(table_name)) {
78  DbSvc::VarList list;
79  list.Add("run_id" , "INT", true);
80  list.Add("utime_b" , "INT");
81  list.Add("utime_e" , "INT");
82  list.Add("fpga1_enabled" , "BOOL");
83  list.Add("fpga2_enabled" , "BOOL");
84  list.Add("fpga3_enabled" , "BOOL");
85  list.Add("fpga4_enabled" , "BOOL");
86  list.Add("fpga5_enabled" , "BOOL");
87  list.Add( "nim1_enabled" , "BOOL");
88  list.Add( "nim2_enabled" , "BOOL");
89  list.Add( "nim3_enabled" , "BOOL");
90  list.Add( "nim4_enabled" , "BOOL");
91  list.Add( "nim5_enabled" , "BOOL");
92  list.Add("fpga1_prescale", "INT");
93  list.Add("fpga2_prescale", "INT");
94  list.Add("fpga3_prescale", "INT");
95  list.Add("fpga4_prescale", "INT");
96  list.Add("fpga5_prescale", "INT");
97  list.Add( "nim1_prescale", "INT");
98  list.Add( "nim2_prescale", "INT");
99  list.Add( "nim3_prescale", "INT");
100  list.Add("n_spill" , "INT");
101  list.Add("n_evt_all" , "INT");
102  list.Add("n_evt_dec" , "INT");
103  db->CreateTable(table_name, list);
104  }
105  }
106 
107  ostringstream oss;
108  oss << "delete from " << table_name << " where run_id = " << sq->get_run_id();
109  if (! db->Con()->Exec(oss.str().c_str())) {
110  cerr << "!!ERROR!! DbUpRun::UploadRun()." << endl;
111  return;
112  }
113  oss.str("");
114  oss << "insert into " << table_name << " values"
115  << " (" << sq->get_run_id()
116  << ", " << sq->get_unix_time_begin()
117  << ", " << sq->get_unix_time_end();
118  for (int ii=0; ii<5; ii++) oss << ", " << sq->get_fpga_enabled(ii);
119  for (int ii=0; ii<5; ii++) oss << ", " << sq->get_nim_enabled(ii);
120  for (int ii=0; ii<5; ii++) oss << ", " << sq->get_fpga_prescale(ii);
121  for (int ii=0; ii<3; ii++) oss << ", " << sq->get_nim_prescale(ii);
122  oss << ", " << sq->get_n_spill()
123  << ", " << sq->get_n_evt_all()
124  << ", " << sq->get_n_evt_dec()
125  << ")";
126  if (! db->Con()->Exec(oss.str().c_str())) {
127  cerr << "!!ERROR!! DbUpRun::UploadRun()." << endl;
128  return;
129  }
130 }
131 
133 void DbUpRun::UploadParam(const int run, const SQParamDeco* sq)
134 {
135  const char* table_name = "param_deco";
136  DbSvc db(DbSvc::DB1);
138  //db.DropTable(table_name); // Use this when you want to refresh
139  if (! db.HasTable(table_name)) {
140  DbSvc::VarList list;
141  list.Add("run_id", "INT", true);
142  list.Add("name" , "VARCHAR(64)", true);
143  list.Add("value" , "VARCHAR(64)");
144  db.CreateTable(table_name, list);
145  }
146 
147  if (sq->size() == 0) return;
148 
149  ostringstream oss;
150  oss << "delete from " << table_name << " where run_id = " << run;
151  if (! db.Con()->Exec(oss.str().c_str())) {
152  cerr << "!!ERROR!! DbUpRun::UploadParam()." << endl;
153  return;
154  }
155  oss.str("");
156  oss << "insert into " << table_name << " values";
157  for (SQParamDeco::ParamConstIter it = sq->begin(); it != sq->end(); it++) {
158  oss << " (" << run << ", '" << it->first << "', '" << it->second << "'),";
159  }
160  string query = oss.str();
161  query.erase(query.length()-1, 1); // Remove the last ',' char.
162  if (! db.Con()->Exec(query.c_str())) {
163  cerr << "!!ERROR!! DbUpRun::UploadParam()." << endl;
164  return;
165  }
166 }
167 
169 void DbUpRun::UploadV1495(SQRun* sq)
170 {
171  const char* table_name = "v1495";
172  static DbSvc* db = 0;
173  if (db == 0) {
174  db = new DbSvc(DbSvc::DB1);
176  //db->DropTable(table_name); // Use this when you want to refresh
177  if (! db->HasTable(table_name)) {
178  DbSvc::VarList list;
179  list.Add("run_id" , "INT", true);
180  list.Add("v1495_id_1", "INT");
181  list.Add("v1495_id_2", "INT");
182  list.Add("v1495_id_3", "INT");
183  list.Add("v1495_id_4", "INT");
184  list.Add("v1495_id_5", "INT");
185  db->CreateTable(table_name, list);
186  }
187  }
188 
189  ostringstream oss;
190  oss << "delete from " << table_name << " where run_id = " << sq->get_run_id();
191  if (! db->Con()->Exec(oss.str().c_str())) {
192  cerr << "!!ERROR!! DbUpRun::UploadV1495()." << endl;
193  return;
194  }
195  oss.str("");
196  oss << "insert into " << table_name << " values"
197  << " (" << sq->get_run_id();
198  for (int ii = 0; ii < 5; ii++) oss << ", " << sq->get_v1495_id(ii);
199  oss << ")";
200  if (! db->Con()->Exec(oss.str().c_str())) {
201  cerr << "!!ERROR!! DbUpRun::UploadV1495()." << endl;
202  return;
203  }
204 }
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
@ DB1
Definition: DbSvc.h:17
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
DbUpRun(const std::string &name="DbUpRun")
Definition: DbUpRun.cc:18
int InitRun(PHCompositeNode *topNode)
Definition: DbUpRun.cc:28
int Init(PHCompositeNode *topNode)
Definition: DbUpRun.cc:23
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: DbUpRun.cc:54
int process_event(PHCompositeNode *topNode)
Definition: DbUpRun.cc:39
void RunUpdated(const int run, int utime=0)
Definition: DecoStatusDb.cc:68
SQParamDeco.h.
Definition: SQParamDeco.h:16
virtual unsigned int size() const =0
Return the number of variables held.
virtual ParamConstIter end() const =0
Return the end iterator.
ParamMap::const_iterator ParamConstIter
Definition: SQParamDeco.h:19
virtual ParamConstIter begin() const =0
Return the begin iterator.
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18
virtual int get_unix_time_end() const
Return the Unix time when this run ended.
Definition: SQRun.h:38
virtual int get_fpga_prescale(const int chan) const
Return the prescale factor of the given channel ('chan') of the FPGA trigger in this run.
Definition: SQRun.h:47
virtual int get_nim_enabled(const int chan) const
Return 'true' if the given channel ('chan') of the NIM trigger was enabled in this run.
Definition: SQRun.h:44
virtual int get_n_evt_all() const
Return the number of all recorded events.
Definition: SQRun.h:71
virtual int get_n_spill() const
Return the number of spill events.
Definition: SQRun.h:68
virtual int get_unix_time_begin() const
Return the Unix time when this run began.
Definition: SQRun.h:35
virtual int get_nim_prescale(const int chan) const
Return the prescale factor of the given channel ('chan') of the NIM trigger in this run.
Definition: SQRun.h:50
virtual int get_fpga_enabled(const int chan) const
Return 'true' if the given channel ('chan') of the FPGA trigger was enabled in this run.
Definition: SQRun.h:41
virtual int get_v1495_id(const int chan) const
Return the ID of the chan-th V1495 boards.
Definition: SQRun.h:53
virtual int get_n_evt_dec() const
Return the number of decoded events. The online decoding usually skips a part of events in order to f...
Definition: SQRun.h:74
virtual int get_run_id() const
Return the run ID.
Definition: SQRun.h:32
static std::string GetSchemaMainDaq()
Definition: UtilOnline.h:29