Class Reference for E1039 Core & Analysis Software
UtilMine.h
Go to the documentation of this file.
1 #ifndef _UTIL_MINE__H_
2 #define _UTIL_MINE__H_
3 #include <string>
4 #include <vector>
5 
7 /*
8  * Commonly-useful functions should be imported into e1039-core/packages/UtilAna.
9  */
10 namespace UtilMine {
11  std::string GetDstFilePath(const int run_id, const int spill_id, const std::string dir_dst="");
12  std::vector<std::string> GetListOfSpillDSTs(const int run, const std::string dir_dst="");
13 };
14 
15 #endif // _UTIL_MINE__H_
Collection of your useful functions.
Definition: UtilMine.h:10
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