Class Reference for E1039 Core & Analysis Software
UtilMine.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <sstream>
3 #include <iomanip>
4 #include <TSystem.h>
5 #include <UtilAna/UtilOnline.h>
6 #include "UtilMine.h"
7 using namespace std;
8 
9 std::string UtilMine::GetDstFilePath(const int run_id, const int spill_id, const std::string dir_dst)
10 {
11  ostringstream oss;
12  if (dir_dst != "") oss << dir_dst;
13  else oss << UtilOnline::GetDstFileDir();
14  oss << setfill('0') << "/run_" << setw(6) << run_id;
15  oss << "/run_" << setw(6) << run_id << "_spill_" << setw(9) << spill_id << "_spin.root";
16  return oss.str();
17 }
18 
19 vector<string> UtilMine::GetListOfSpillDSTs(const int run, const string dir_dst)
20 {
21  ostringstream oss;
22  if (dir_dst != "") oss << dir_dst;
23  else oss << UtilOnline::GetDstFileDir();
24  oss << setfill('0') << "/run_" << setw(6) << run;
25  string dir_run = oss.str();
26  cout << "DST directory = " << dir_run << endl;
27 
28  vector<string> list_dst;
29 
30  void* dirp = gSystem->OpenDirectory(dir_run.c_str());
31  if (dirp == 0) return list_dst; // The directory does not exist.
32 
33  const char* name_char;
34  while ((name_char = gSystem->GetDirEntry(dirp))) {
35  string name = name_char;
36  int length = name.length();
37  if (length < 10 ||
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);
42  }
43  cout << " N of DST files = " << list_dst.size() << endl;
44  gSystem->FreeDirectory(dirp);
45  sort(list_dst.begin(), list_dst.end());
46  return list_dst;
47 }
static std::string GetDstFileDir()
Definition: UtilOnline.h:26
std::string GetDstFilePath(const int run_id, const int spill_id, const std::string dir_dst="")
Definition: UtilMine.cc:9
std::vector< std::string > GetListOfSpillDSTs(const int run, const std::string dir_dst="")
Definition: UtilMine.cc:19