18 #include <TSQLServer.h>
36 SQRun* run_header = findNode::getClass<SQRun>(topNode,
"SQRun");
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);
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");
56 static int spill_id_pre = -1;
62 UploadToSpillTable (spi, hspi);
63 UploadToScalerTable(spi,
"bos");
64 UploadToScalerTable(spi,
"eos");
65 UploadToSlowContTable(spi);
76 void DbUpSpill::ClearTable(
const char* table_name,
const int run_id)
80 if (! db.HasTable(table_name))
return;
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;
91 const char* table_name =
"spill";
95 if (! db.HasTable(table_name)) {
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);
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;
114 oss <<
"insert into " << table_name <<
" values"
123 if (! db.Con()->Exec(oss.str().c_str())) {
124 cerr <<
"!!ERROR!! DbUpSpill::UploadToSpillTable()." << endl;
129 void DbUpSpill::UploadToScalerTable(
SQSpill* spi,
const std::string boseos)
137 cerr <<
"!!ERROR!! DbUpSpill::UploadToScalerTable(): " << boseos <<
"?" << endl;
142 oss <<
"scaler_" << boseos;
143 string table_name = oss.str();
148 if (! db.HasTable(table_name)) {
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);
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;
165 oss <<
"insert into " << table_name <<
" values";
167 string name = it->first;
169 oss <<
" (" << run_id <<
", " << spill_id <<
", '" << name <<
"', " << sca->
get_count() <<
"),";
171 oss.seekp(-1, oss.cur);
173 if (! db.Con()->Exec(oss.str().c_str())) {
174 cerr <<
"!!ERROR!! DbUpSpill::UploadToScalerTable().\n"
175 <<
" Query: " << oss.str() << endl;
180 void DbUpSpill::UploadToSlowContTable(
SQSpill* spi)
186 typedef map<string, ostringstream> OssMap_t;
189 string name = it->first;
190 if (name ==
"U:TODB25")
continue;
193 if (name ==
"SLOWCONTROL_IS_GOOD") type =
"DAQ";
194 map_oss[type] <<
" (" << run_id <<
", " << spill_id <<
", '" << name <<
"', '" << slo->
get_time_stamp() <<
"', '" << slo->
get_value() <<
"'),";
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;
206 string table_name =
"slow_cont_";
209 if (! db.HasTable(table_name)) {
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);
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;
226 oss <<
"insert into " << table_name <<
" values" << values;
227 oss.seekp(-1, oss.cur);
229 if (! db.Con()->Exec(oss.str().c_str())) {
230 cerr <<
"!!ERROR!! DbUpSpill::UploadToSlowContTable().\n"
231 <<
" Query: " << oss.str() << endl;
249 string name = it->first;
251 cout <<
" " << setw(20) << name <<
" " << setw(10) << sca->
get_count() <<
"\n";
255 string name = it->first;
257 cout <<
" " << setw(20) << name <<
" " << setw(10) << sca->
get_count() <<
"\n";
261 string name = it->first;
void Add(const std::string name, const std::string type, const bool is_key=false)
Standard interface with SQL database.
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
DbUpSpill(const std::string &name="DbUpSpill")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
An SQ interface class to hold one event header.
virtual int get_spill_id() const =0
Return the spill ID.
An SQ interface class to hold the hardware-related data of one spill.
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.
virtual const PHObject * get(unsigned int idkey) const
An SQ interface class to hold the run-level info.
virtual int get_run_id() const
Return the run ID.
An SQ interface class to hold the data of one scaler channel.
virtual int get_count() const
Return the count of this scaler channel.
An SQ interface class to hold the data of one slow-control channel.
virtual std::string get_type() const
Return the type (i.e. caterogy name) of this channel.
virtual std::string get_time_stamp() const
Return the time when this channel was read out.
virtual std::string get_value() const
Return the value of this channel.
An SQ interface class to hold a list of SQSpill objects.
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.
virtual short get_target_pos() const
Return the target position in this spill.
virtual int get_spill_id() const
Return the spill ID.
virtual SQStringMap * get_slow_cont_list()
Return the list of slow control variables.
virtual SQStringMap * get_bos_scaler_list()
Return the list of scaler variables read out at BOS.
virtual int get_run_id() const
Return the run ID when this spill was taken.
virtual SQStringMap * get_eos_scaler_list()
Return the list of scaler variables read out at EOS.
A general-purpose SQ interface class that holds a list of PHObjects with key = string.
virtual ConstIter begin() const
ObjectMap::const_iterator ConstIter
virtual ConstIter end() const
virtual size_t size() const
static std::string GetSchemaMainDaq()