Class Reference for E1039 Core & Analysis Software
DbUpSpill.cc
Go to the documentation of this file.
1 #include <iomanip>
3 #include <TClass.h>
4 #include <interface_main/SQRun.h>
15 #include <phool/PHNodeIterator.h>
16 #include <phool/PHIODataNode.h>
17 #include <phool/getClass.h>
18 #include <TSQLServer.h>
19 #include <db_svc/DbSvc.h>
20 #include <UtilAna/UtilOnline.h>
21 #include "DbUpSpill.h"
22 using namespace std;
23 
24 DbUpSpill::DbUpSpill(const std::string& name) : SubsysReco(name)
25 {
26  ;
27 }
28 
30 {
32 }
33 
35 {
36  SQRun* run_header = findNode::getClass<SQRun>(topNode, "SQRun");
37  if (!run_header) return Fun4AllReturnCodes::ABORTEVENT;
38  int run_id = run_header->get_run_id();
39  ClearTable("spill" , run_id);
40  ClearTable("scaler_bos" , run_id);
41  ClearTable("scaler_eos" , run_id);
42  ClearTable("slow_cont_DAQ" , run_id);
43  ClearTable("slow_cont_beam" , run_id);
44  ClearTable("slow_cont_environment", run_id);
45  ClearTable("slow_cont_target ", run_id);
47 }
48 
50 {
51  SQSpillMap* map_sp = findNode::getClass<SQSpillMap>(topNode, "SQSpillMap");
52  SQIntMap* map_hsp = findNode::getClass<SQIntMap >(topNode, "SQHardSpillMap");
53  SQEvent* evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
54  if (!map_sp || !map_hsp || !evt) return Fun4AllReturnCodes::ABORTEVENT;
55 
56  static int spill_id_pre = -1;
57  if (evt->get_spill_id() != spill_id_pre) {
58  spill_id_pre = evt->get_spill_id();
59  SQSpill* spi = map_sp ->get(spill_id_pre);
60  SQHardSpill* hspi = (SQHardSpill*)map_hsp->get(spill_id_pre);
61  //PrintSpill(spi, hspi);
62  UploadToSpillTable (spi, hspi);
63  UploadToScalerTable(spi, "bos");
64  UploadToScalerTable(spi, "eos");
65  UploadToSlowContTable(spi);
66  }
67 
69 }
70 
72 {
74 }
75 
76 void DbUpSpill::ClearTable(const char* table_name, const int run_id)
77 {
78  DbSvc db(DbSvc::DB1);
79  db.UseSchema(UtilOnline::GetSchemaMainDaq(), true);
80  if (! db.HasTable(table_name)) return;
81  ostringstream oss;
82  oss << "delete from " << table_name << " where run_id = " << run_id;
83  if (! db.Con()->Exec(oss.str().c_str())) {
84  cerr << "!!ERROR!! DbUpSpill::ClearTables(): table = " << table_name << ", run_id = " << run_id << "." << endl;
85  return;
86  }
87 }
88 
89 void DbUpSpill::UploadToSpillTable(SQSpill* spi, SQHardSpill* hspi)
90 {
91  const char* table_name = "spill";
92  DbSvc db(DbSvc::DB1);
93  db.UseSchema(UtilOnline::GetSchemaMainDaq(), true);
94  //db.DropTable(table_name); // Use this when you want to refresh
95  if (! db.HasTable(table_name)) {
96  DbSvc::VarList list;
97  list.Add("run_id" , "INT", true);
98  list.Add("spill_id" , "INT", true);
99  list.Add("target_pos" , "INT");
100  list.Add("bos_coda_id" , "INT");
101  list.Add("bos_vme_time", "INT");
102  list.Add("eos_coda_id" , "INT");
103  list.Add("eos_vme_time", "INT");
104  db.CreateTable(table_name, list);
105  }
106 
107  ostringstream oss;
108  oss << "delete from " << table_name << " where run_id = " << spi->get_run_id() << " and spill_id = " << spi->get_spill_id();
109  if (! db.Con()->Exec(oss.str().c_str())) {
110  cerr << "!!ERROR!! DbUpSpill::UploadToSpillTable()." << endl;
111  return;
112  }
113  oss.str("");
114  oss << "insert into " << table_name << " values"
115  << " (" << spi->get_run_id ()
116  << ", " << spi->get_spill_id ()
117  << ", " << spi->get_target_pos ()
118  << ", " << hspi->get_bos_coda_id ()
119  << ", " << hspi->get_bos_vme_time()
120  << ", " << hspi->get_eos_coda_id ()
121  << ", " << hspi->get_eos_vme_time()
122  << ")";
123  if (! db.Con()->Exec(oss.str().c_str())) {
124  cerr << "!!ERROR!! DbUpSpill::UploadToSpillTable()." << endl;
125  return;
126  }
127 }
128 
129 void DbUpSpill::UploadToScalerTable(SQSpill* spi, const std::string boseos)
130 {
131  int run_id = spi->get_run_id();
132  int spill_id = spi->get_spill_id();
133  SQStringMap* map_sca;
134  if (boseos == "bos") map_sca = spi->get_bos_scaler_list();
135  else if (boseos == "eos") map_sca = spi->get_eos_scaler_list();
136  else {
137  cerr << "!!ERROR!! DbUpSpill::UploadToScalerTable(): " << boseos << "?" << endl;
138  return;
139  }
140 
141  ostringstream oss;
142  oss << "scaler_" << boseos;
143  string table_name = oss.str();
144 
145  DbSvc db(DbSvc::DB1);
146  db.UseSchema(UtilOnline::GetSchemaMainDaq(), true);
147  //db.DropTable(table_name); // Use this when you want to refresh
148  if (! db.HasTable(table_name)) {
149  DbSvc::VarList list;
150  list.Add("run_id" , "INT", true);
151  list.Add("spill_id", "INT", true);
152  list.Add("name" , "VARCHAR(32)", true);
153  list.Add("count" , "INT");
154  db.CreateTable(table_name, list);
155  }
156 
157  oss.str("");
158  oss << "delete from " << table_name << " where run_id = " << run_id << " and spill_id = " << spill_id;
159  if (! db.Con()->Exec(oss.str().c_str())) {
160  cerr << "!!ERROR!! DbUpSpill::UploadToScalerTable().\n"
161  << " Query: " << oss.str() << endl;
162  return;
163  }
164  oss.str("");
165  oss << "insert into " << table_name << " values";
166  for (SQStringMap::ConstIter it = map_sca->begin(); it != map_sca->end(); it++) {
167  string name = it->first;
168  SQScaler* sca = dynamic_cast<SQScaler*>(it->second);
169  oss << " (" << run_id << ", " << spill_id << ", '" << name << "', " << sca->get_count() << "),";
170  }
171  oss.seekp(-1, oss.cur);
172  oss << " "; // Erase the last ',' char.
173  if (! db.Con()->Exec(oss.str().c_str())) {
174  cerr << "!!ERROR!! DbUpSpill::UploadToScalerTable().\n"
175  << " Query: " << oss.str() << endl;
176  return;
177  }
178 }
179 
180 void DbUpSpill::UploadToSlowContTable(SQSpill* spi)
181 {
182  int run_id = spi->get_run_id();
183  int spill_id = spi->get_spill_id();
184  SQStringMap* map_slo = spi->get_slow_cont_list();
185 
186  typedef map<string, ostringstream> OssMap_t;
187  OssMap_t map_oss;
188  for (SQStringMap::ConstIter it = map_slo->begin(); it != map_slo->end(); it++) {
189  string name = it->first;
190  if (name == "U:TODB25") continue; // Known that the value for this name is badly formatted
191  SQSlowCont* slo = dynamic_cast<SQSlowCont*>(it->second);
192  string type = slo->get_type();
193  if (name == "SLOWCONTROL_IS_GOOD") type = "DAQ"; // Known that the type for this name contains extra (invisible) characters.
194  map_oss[type] << " (" << run_id << ", " << spill_id << ", '" << name << "', '" << slo->get_time_stamp() << "', '" << slo->get_value() << "'),";
195  }
196 
197  DbSvc db(DbSvc::DB1);
198  db.UseSchema(UtilOnline::GetSchemaMainDaq(), true);
199 
200  ostringstream oss;
201  for (OssMap_t::iterator it = map_oss.begin(); it != map_oss.end(); it++) {
202  string type = it->first;
203  string values = it->second.str();
204  if (values.size() == 0) continue;
205 
206  string table_name = "slow_cont_";
207  table_name += type;
208  //db.DropTable(table_name); // Use this when you want to refresh
209  if (! db.HasTable(table_name)) {
210  DbSvc::VarList list;
211  list.Add("run_id" , "INT", true);
212  list.Add("spill_id" , "INT", true);
213  list.Add("name" , "VARCHAR(64)", true);
214  list.Add("time_stamp", "CHAR(14)");
215  list.Add("value" , "TEXT");
216  db.CreateTable(table_name, list);
217  }
218  oss.str("");
219  oss << "delete from " << table_name << " where run_id = " << run_id << " and spill_id = " << spill_id;
220  if (! db.Con()->Exec(oss.str().c_str())) {
221  cerr << "!!ERROR!! DbUpSpill::UploadToSlowContTable().\n"
222  << " Query: " << oss.str() << endl;
223  continue;
224  }
225  oss.str("");
226  oss << "insert into " << table_name << " values" << values;
227  oss.seekp(-1, oss.cur);
228  oss << " "; // Erase the last ',' char.
229  if (! db.Con()->Exec(oss.str().c_str())) {
230  cerr << "!!ERROR!! DbUpSpill::UploadToSlowContTable().\n"
231  << " Query: " << oss.str() << endl;
232  continue;
233  }
234  }
235 }
236 
237 void DbUpSpill::PrintSpill(SQSpill* spi, SQHardSpill* hspi)
238 {
239  cout << "SQSpill: "
240  << " " << spi->get_spill_id ()
241  << " " << spi->get_run_id ()
242  << " " << spi->get_target_pos ()
243  << " " << hspi->get_bos_coda_id ()
244  << " " << hspi->get_bos_vme_time()
245  << " " << hspi->get_eos_coda_id ()
246  << " " << hspi->get_eos_vme_time()
247  << " \nBOS Scaler: " << spi->get_bos_scaler_list()->size() << "\n";
248  for (SQStringMap::ConstIter it = spi->get_bos_scaler_list()->begin(); it != spi->get_bos_scaler_list()->end(); it++) {
249  string name = it->first;
250  SQScaler* sca = dynamic_cast<SQScaler*>(it->second);
251  cout << " " << setw(20) << name << " " << setw(10) << sca->get_count() << "\n";
252  }
253  cout << " EOS Scaler: " << spi->get_eos_scaler_list()->size() << "\n";
254  for (SQStringMap::ConstIter it = spi->get_eos_scaler_list()->begin(); it != spi->get_eos_scaler_list()->end(); it++) {
255  string name = it->first;
256  SQScaler* sca = dynamic_cast<SQScaler*>(it->second);
257  cout << " " << setw(20) << name << " " << setw(10) << sca->get_count() << "\n";
258  }
259  cout << " Slow Control " << spi->get_slow_cont_list()->size() << ":\n";
260  for (SQStringMap::ConstIter it = spi->get_slow_cont_list()->begin(); it != spi->get_slow_cont_list()->end(); it++) {
261  string name = it->first;
262  SQSlowCont* slo = dynamic_cast<SQSlowCont*>(it->second);
263  cout << " " << setw(20) << name << " " << slo->get_time_stamp() << " " << setw(20) << slo->get_value() << " " << slo->get_type() << "\n";
264  }
265 }
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
int process_event(PHCompositeNode *topNode)
Definition: DbUpSpill.cc:49
int InitRun(PHCompositeNode *topNode)
Definition: DbUpSpill.cc:34
DbUpSpill(const std::string &name="DbUpSpill")
Definition: DbUpSpill.cc:24
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: DbUpSpill.cc:71
int Init(PHCompositeNode *topNode)
Definition: DbUpSpill.cc:29
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
virtual int get_spill_id() const =0
Return the spill ID.
An SQ interface class to hold the hardware-related data of one spill.
Definition: SQHardSpill.h:7
virtual int get_bos_coda_id() const =0
Return the Coda ID at BOS of this spill.
virtual int get_eos_vme_time() const =0
Return the VME time at EOS of this spill.
virtual int get_eos_coda_id() const =0
Return the Coda ID at EOS of this spill.
virtual int get_bos_vme_time() const =0
Return the VME time at BOS of this spill.
A general-purpose SQ interface class that holds a list of PHObjects with key = integer.
Definition: SQIntMap.h:14
virtual const PHObject * get(unsigned int idkey) const
Definition: SQIntMap.h:34
An SQ interface class to hold the run-level info.
Definition: SQRun.h:18
virtual int get_run_id() const
Return the run ID.
Definition: SQRun.h:32
An SQ interface class to hold the data of one scaler channel.
Definition: SQScaler.h:15
virtual int get_count() const
Return the count of this scaler channel.
Definition: SQScaler.h:39
An SQ interface class to hold the data of one slow-control channel.
Definition: SQSlowCont.h:15
virtual std::string get_type() const
Return the type (i.e. caterogy name) of this channel.
Definition: SQSlowCont.h:38
virtual std::string get_time_stamp() const
Return the time when this channel was read out.
Definition: SQSlowCont.h:29
virtual std::string get_value() const
Return the value of this channel.
Definition: SQSlowCont.h:35
An SQ interface class to hold a list of SQSpill objects.
Definition: SQSpillMap.h:19
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
virtual short get_target_pos() const
Return the target position in this spill.
Definition: SQSpill.h:41
virtual int get_spill_id() const
Return the spill ID.
Definition: SQSpill.h:37
virtual SQStringMap * get_slow_cont_list()
Return the list of slow control variables.
Definition: SQSpill.h:67
virtual SQStringMap * get_bos_scaler_list()
Return the list of scaler variables read out at BOS.
Definition: SQSpill.h:61
virtual int get_run_id() const
Return the run ID when this spill was taken.
Definition: SQSpill.h:33
virtual SQStringMap * get_eos_scaler_list()
Return the list of scaler variables read out at EOS.
Definition: SQSpill.h:64
A general-purpose SQ interface class that holds a list of PHObjects with key = string.
Definition: SQStringMap.h:14
virtual ConstIter begin() const
Definition: SQStringMap.h:39
ObjectMap::const_iterator ConstIter
Definition: SQStringMap.h:17
virtual ConstIter end() const
Definition: SQStringMap.h:41
virtual size_t size() const
Definition: SQStringMap.h:30
static std::string GetSchemaMainDaq()
Definition: UtilOnline.h:29