From 2b895f34b3149e49ce668f274070c9ede51ade43 Mon Sep 17 00:00:00 2001 From: agheata Date: Mon, 26 Sep 2011 14:37:25 +0000 Subject: [PATCH] default merging does local file copying first --- ANALYSIS/AliAnalysisAlien.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ANALYSIS/AliAnalysisAlien.cxx b/ANALYSIS/AliAnalysisAlien.cxx index 54637645c8d..e38bbb90816 100644 --- a/ANALYSIS/AliAnalysisAlien.cxx +++ b/ANALYSIS/AliAnalysisAlien.cxx @@ -2616,7 +2616,7 @@ Bool_t AliAnalysisAlien::MergeOutput(const char *output, const char *basedir, In // Loop 'find' results and get next LFN if (countZero == nmaxmerge) { // First file in chunk - create file merger and add previous chunk if any. - fm = new TFileMerger(kFALSE); + fm = new TFileMerger(kTRUE); fm->SetFastMethod(kTRUE); if (previousChunk.Length()) fm->AddFile(previousChunk.Data()); outputChunk = outputFile; @@ -2656,7 +2656,7 @@ Bool_t AliAnalysisAlien::MergeOutput(const char *output, const char *basedir, In } // Merging stage different than 0. // Move to the begining of the requested chunk. - fm = new TFileMerger(kFALSE); + fm = new TFileMerger(kTRUE); fm->SetFastMethod(kTRUE); while ((nextfile=next())) fm->AddFile(nextfile->GetName()); delete listoffiles; -- 2.43.0