Skip to content

Commit b3a5e30

Browse files
committed
Use default TFile compression in TChain::Merge(const char *)
Otherwise opening the file manually could give different results.
1 parent 94c602b commit b3a5e30

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tree/tree/src/TChain.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1910,7 +1910,7 @@ void TChain::ls(Option_t* option) const
19101910

19111911
Long64_t TChain::Merge(const char* name, Option_t* option)
19121912
{
1913-
TFile *file = TFile::Open(name, "recreate", "chain files", 1);
1913+
TFile *file = TFile::Open(name, "recreate", "chain files");
19141914
return Merge(file, 0, option);
19151915
}
19161916

0 commit comments

Comments
 (0)