Class Reference for E1039 Core & Analysis Software
TDirectoryHelper.h
Go to the documentation of this file.
1 #ifndef __TDirectoryHelper_h__
2 #define __TDirectoryHelper_h__
3 
4 class TH1;
5 class TDirectory;
6 class TFile;
7 
8 #include <string>
9 #include <vector>
10 
12 {
13 public:
14 
15  static void duplicateDir(TDirectory* dest, TDirectory* source);
16 
17  static TH1* getHisto(TDirectory* dir, const std::string& histoname,
18  const std::string& where);
19 
20  static TDirectory* mkdir(TDirectory* topDir,
21  const char* path,
22  std::vector<std::string>* titles=0);
23 
24  static bool mkpath(TDirectory* dir, const std::string& path);
25 
26  static void copyToFile(TDirectory* src, TFile* dest);
27 
28  static bool pathIsInDir(const std::string& path, TDirectory* dir);
29 
30  static void splitPath(const std::string& path,
31  std::vector<std::string>& paths);
32 };
33 
34 #endif
static void splitPath(const std::string &path, std::vector< std::string > &paths)
static bool mkpath(TDirectory *dir, const std::string &path)
static TH1 * getHisto(TDirectory *dir, const std::string &histoname, const std::string &where)
static bool pathIsInDir(const std::string &path, TDirectory *dir)
static void duplicateDir(TDirectory *dest, TDirectory *source)
static void copyToFile(TDirectory *src, TFile *dest)
static TDirectory * mkdir(TDirectory *topDir, const char *path, std::vector< std::string > *titles=0)