From 01a0dd7b79c5e5d5b82878d9e64dcba12891b53d Mon Sep 17 00:00:00 2001 From: tbaudier Date: Mon, 26 Mar 2018 11:50:26 +0200 Subject: [PATCH] Set the Root Tree maximum size to 1TB instead of 1GB --- tools/clitkMergeRootFiles.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/clitkMergeRootFiles.cxx b/tools/clitkMergeRootFiles.cxx index 022ae0b..307c8cc 100644 --- a/tools/clitkMergeRootFiles.cxx +++ b/tools/clitkMergeRootFiles.cxx @@ -55,6 +55,9 @@ int main(int argc, char *argv[]) { FATAL("Error, please provide at least two inputs files"); } + // Set the tree maximum size to 1TB instead of 100GB + TTree::SetMaxTreeSize( 1000000000000LL ); + /* The following block does some bookkeeping necesary for files originating from a pet simulation. Seems fixing some timing info, for coincidences between files perhaps. It seems the files are later on reopened and merged, if the conditions were met. -- 2.47.1