12 if (dir_dst !=
"") oss << dir_dst;
14 oss << setfill(
'0') <<
"/run_" << setw(6) << run_id;
15 oss <<
"/run_" << setw(6) << run_id <<
"_spill_" << setw(9) << spill_id <<
"_spin.root";
22 if (dir_dst !=
"") oss << dir_dst;
24 oss << setfill(
'0') <<
"/run_" << setw(6) << run;
25 string dir_run = oss.str();
26 cout <<
"DST directory = " << dir_run << endl;
28 vector<string> list_dst;
30 void* dirp = gSystem->OpenDirectory(dir_run.c_str());
31 if (dirp == 0)
return list_dst;
33 const char* name_char;
34 while ((name_char = gSystem->GetDirEntry(dirp))) {
35 string name = name_char;
36 int length = name.length();
38 name.substr(0, 4) !=
"run_" ||
39 name.substr(length-10, 10) !=
"_spin.root")
continue;
40 cout <<
" DST file = " << name << endl;
41 list_dst.push_back(dir_run+
"/"+name);
43 cout <<
" N of DST files = " << list_dst.size() << endl;
44 gSystem->FreeDirectory(dirp);
45 sort(list_dst.begin(), list_dst.end());
static std::string GetDstFileDir()
std::string GetDstFilePath(const int run_id, const int spill_id, const std::string dir_dst="")
std::vector< std::string > GetListOfSpillDSTs(const int run, const std::string dir_dst="")