3 #include <TDirectory.h>
21 TDirectory* save = gDirectory;
36 if ( !dest->IsWritable() )
38 cerr <<
"TDirectoryHelper::copyToFile : destination file is not "
43 duplicateDir(dest,src);
95 newdir =
static_cast<TDirectory*
>(gDirectory->FindObject(source->GetName()));
99 newdir = dest->mkdir(source->GetName(),source->GetTitle());
104 TIter next(source->GetList());
107 while ( (obj=next()) )
109 TDirectory* dir =
dynamic_cast<TDirectory*
>(obj);
112 duplicateDir(newdir,dir);
125 static vector<string> paths;
127 splitPath(path,paths);
129 TDirectory* currentdir = dir;
131 for (
size_t i = 0 ; i < paths.size() ; i++) {
135 currentdir =
dynamic_cast<TDirectory*
>(gDirectory->Get(paths[i].c_str()));
137 currentdir = gDirectory->mkdir(paths[i].c_str());
138 assert(currentdir!=0);
149 std::vector<std::string>* titles)
151 TDirectory* save = gDirectory;
153 TDirectory* dir = topDir;
154 TDirectory* tdir = dir;
165 std::vector<std::string> paths;
167 splitPath(path,paths);
169 for (
size_t i=0;i<paths.size();i++)
172 TDirectory* subdir =
static_cast<TDirectory*
>(dir->FindObject(paths[i].c_str()));
175 if ( titles && i<titles->size() )
177 dir = dir->mkdir(paths[i].c_str(),(*titles)[i].c_str());
181 dir = dir->mkdir(paths[i].c_str());
205 TDirectory* dirsave = gDirectory;
207 static std::vector<string> paths;
210 splitPath(path,paths);
214 TDirectory* cdir = dir;
216 for (
size_t i = 0 ; i < paths.size() && ok ; i++) {
220 cdir =
dynamic_cast<TDirectory*
>(cdir->Get(paths[i].c_str()));
241 bool ok = pathIsInDir(where,dir);
248 ok = dir->cd(where.c_str());
250 TObject* obj = gDirectory->Get(histoname.c_str());
252 rv =
dynamic_cast<TH1*
>(obj);
254 cerr <<
"GetHisto : object " << histoname <<
" is not a TH1" << endl;
265 std::vector<std::string>& paths)
272 std::string str = path;
279 std::vector<size_t> slashes_pos;
283 str.insert(str.begin(),
'/');
286 if ( str[str.size()-1] !=
'/' )
291 for (
size_t i = 0 ; i < str.size() ; i++)
295 slashes_pos.push_back(i);
299 if ( not slashes_pos.empty() )
301 for (
size_t i = 0 ; i < slashes_pos.size()-1 ; i++)
303 paths.push_back(str.substr(slashes_pos[i]+1,
304 slashes_pos[i+1]-slashes_pos[i]-1));
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)