8 std::string UtilOnline::m_dir_end =
"/seaquest/e906daq/coda/data/END";
9 std::string UtilOnline::m_dir_coda =
"/localdata/codadata";
10 std::string UtilOnline::m_dir_dst =
"/data2/e1039/dst";
11 std::string UtilOnline::m_dir_eddst =
"/data4/e1039_data/online/evt_disp";
12 std::string UtilOnline::m_dir_onlmon =
"/data2/e1039/onlmon/plots";
13 std::string UtilOnline::m_sch_maindaq =
"user_e1039_maindaq";
17 m_dir_dst =
"/data2/e1039/dst-devel";
18 m_dir_onlmon =
"/data2/e1039/onlmon/plots-devel";
19 m_sch_maindaq =
"user_e1039_maindaq_devel";
24 m_dir_end = gSystem->ExpandPathName(dir.c_str());
29 m_dir_coda = gSystem->ExpandPathName(dir.c_str());
34 m_dir_dst = gSystem->ExpandPathName(dir.c_str());
39 m_dir_eddst = gSystem->ExpandPathName(dir.c_str());
44 m_dir_onlmon = gSystem->ExpandPathName(dir.c_str());
58 int length = name.length();
59 if (length < 19)
return 0;
60 return atoi(name.substr(length-15, 6).c_str());
67 oss << setfill(
'0') <<
"run_" << Run6(run) <<
"_spin.dat";
83 oss << setfill(
'0') <<
"run_" << Run6(run) <<
"_spin.root";
91 oss << setfill(
'0') <<
"run_" << Run6(run) <<
"_evt_disp.root";
99 oss << setfill(
'0') << m_dir_dst <<
"/run_" << Run6(run);
107 oss << setfill(
'0') <<
"run_" << Run6(run) <<
"_spill_" << Spill9(spill) <<
"_spin.root";
113 return GetSpillDstDir(run) +
"/" + GetSpillDstFile(run, spill);
119 if (dir_dst !=
"") oss << dir_dst;
121 oss <<
"/run_" << Run6(run);
122 string dir_run = oss.str();
124 vector<string> list_dst;
126 void* dirp = gSystem->OpenDirectory(dir_run.c_str());
127 if (dirp == 0)
return list_dst;
129 const char* name_char;
130 while ((name_char = gSystem->GetDirEntry(dirp))) {
131 string name = name_char;
132 int length = name.length();
134 name.substr(0, 4) !=
"run_" ||
135 name.substr(length-10, 10) !=
"_spin.root")
continue;
136 list_dst.push_back(dir_run+
"/"+name);
138 gSystem->FreeDirectory(dirp);
139 sort(list_dst.begin(), list_dst.end());
145 return GetCodaFileDir() +
"/" + RunNum2CodaFile(run);
150 return GetEndFileDir() +
"/" + RunNum2EndFile(run);
155 return GetDstFileDir() +
"/" + RunNum2DstFile(run);
160 return GetEDDstFileDir() +
"/" + RunNum2EDDstFile(run);
166 oss << setfill(
'0') << setw(digit) << run;
173 oss << setfill(
'0') << setw(digit) << spill;
static std::string GetSpillDstFile(const int run, const int spill)
Convert a run+spill number to the corresponding name of DST file.
static std::string Spill9(const int spill, const int digit=9)
static std::string GetDstFilePath(const int run)
static void SetSchemaMainDaq(const std::string sch)
static void SetEDDstFileDir(const std::string dir)
static void UseOutputLocationForDevel()
static std::string RunNum2EndFile(const int run)
Convert a run number to the corresponding name of END file.
static int CodaFile2RunNum(const std::string name)
Convert the name of a Coda file to its run number.
static void SetCodaFileDir(const std::string dir)
static std::string RunNum2CodaFile(const int run)
Convert a run number to the corresponding name of Coda file.
static std::string GetCodaFilePath(const int run)
static void SetOnlMonDir(const std::string dir)
static std::string GetSpillDstPath(const int run, const int spill)
static std::string Run6(const int run, const int digit=6)
static std::string RunNum2DstFile(const int run)
Convert a run number to the corresponding name of DST file.
static std::string GetEDDstFilePath(const int run)
static std::vector< std::string > GetListOfSpillDSTs(const int run, const std::string dir_dst="")
static std::string GetDstFileDir()
static std::string GetEndFilePath(const int run)
static void SetEndFileDir(const std::string dir)
static std::string RunNum2EDDstFile(const int run)
Convert a run number to the corresponding name of edDST file.
static std::string GetSpillDstDir(const int run)
Get a directory of spill-level DST files.
static void SetDstFileDir(const std::string dir)