12 m_type(type), m_label(label), m_header(header), m_map_id(
"")
14 m_dir_base = gSystem->Getenv(
"E1039_RESOURCE");
15 if (m_dir_base.length() == 0) {
16 m_dir_base =
"/data2/e1039/resource";
17 cout <<
"RunParamBase: E1039_RESOURCE is empty. Use '" << m_dir_base <<
"' as the data directory." << endl;
24 if (! m_range.
Find(map_id)) {
25 cout <<
" !WARNING! SetMapIDbyFile(): This map ID '" << map_id
26 <<
"' is not included in the run-range table. OK?" << endl;
34 if (! m_range.
Find(map_id)) {
35 cout <<
" !WARNING! SetMapIDbyDB(): This map ID '" << map_id
36 <<
"' is not included in the run-range table. OK?" << endl;
44 m_map_id = m_range.
Find(run);
50 m_map_id = m_range.
Find(run);
65 char* path = gSystem->ExpandPathName(fn_tsv.c_str());
66 cout <<
" RunParamBase::ReadFromFile(): " << path <<
"...";
69 cerr <<
"\n!!ERROR!! Cannot open the map file '" << path <<
"'." << endl;
76 while ( getline(ifs, buffer) ) {
77 if (buffer[0] ==
'#')
continue;
78 lines.push_back(buffer);
82 cout <<
" read " << nn <<
" entries." << endl;
87 char* path = gSystem->ExpandPathName(fn_tsv.c_str());
88 cout <<
" RunParamBase::WriteToFile(): " << path <<
"...";
91 cerr <<
"\n!!ERROR!! Cannot open the map file '" << path <<
"'." << endl;
96 ofs <<
"#" << m_header <<
"\n";
99 cout <<
" wrote " << nn <<
" entries." << endl;
104 if (m_map_id.length() == 0) {
105 cerr <<
" ERROR: The map ID is not set. Abort." << endl;
110 cout <<
"Read channel map from "
111 << name_schema <<
"." << name_table <<
".\n";
123 cout <<
"RunParamBase::WriteToDB()\n";
124 if (m_map_id.length() == 0) {
125 cerr <<
" ERROR: The map ID is not set. Abort." << endl;
130 cout <<
" Schema = " << name_schema
131 <<
"\n Table = " << name_table <<
"\n";
137 cout <<
" ...done." << endl;
147 cout <<
" virtual function called." << endl;
153 oss << m_dir_base <<
"/" << m_type <<
"/" << m_label <<
"/run_range.tsv";
160 oss << m_dir_base <<
"/" << m_type <<
"/" << m_label <<
"/" << m_map_id <<
"/param.tsv";
167 oss <<
"user_e1039_" << m_type <<
"_" << m_label;
174 oss <<
"param_" << m_map_id;
180 cout <<
" virtual function called." << endl;
186 cout <<
" virtual function called." << endl;
192 cout <<
" virtual function called." << endl;
197 cout <<
" virtual function called." << endl;
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)
bool HasTable(const char *name, const bool exit_on_false=false)
void ReadFromDB(const std::string schema)
void WriteToDB(const std::string schema)
bool Find(const std::string map_id)
void ReadFromFile(const std::string fn_tsv)
virtual void WriteDbTable(DbSvc &db)
virtual void Print(std::ostream &os)
RunParamBase(const std::string type, const std::string label, const std::string header)
std::string MapFileName()
std::vector< std::string > LineList
void SetMapIDbyFile(const std::string map_id)
virtual int WriteFileCont(std::ostream &os)
void SetMapIDbyDB(const std::string map_id)
void WriteToLocalFile(const std::string fn_tsv)
virtual void ReadDbTable(DbSvc &db)
void ReadFromLocalFile(const std::string fn_tsv)
std::string MapTableName()
std::string RangeFileName()
virtual int ReadFileCont(LineList &lines)