File size limit

Hello,

My program writes out a rootfile, but it crashes when it switches to a new file, due to the file getting too large (1.8 GB by default).
To debug this, I would like to set the limit to 5 MB, so that the program arrives at the problem much sooner. How do I change this limit?
(I seem to remember there was some global variable, but I can’t find it anywhere anymore…)

Thanks!

Paul

PS Using root 3.05/00 on Red Hat 7.3.

Hi Paul,

see comments in TTree::ChangeFile at:

root.cern.ch/root/htmldoc/TTree. … ChangeFile

Rene

That helps, thank you.

But now I have two additional questions:

  • Is there a way to disable the file size limit?
  • The largest file size I can enter appears to be 4.2 GB, but when I do this, I get a very large number unreadable files (see below). What’s the largest file size possible? (independent from OS limitations)

The reason I’m looking for the largest possible file size, is that my interface to rootfiles is through HepTuple and HepTuple seems to be unable to unable to deal with trees that switch to a new file. I’m e-mailing Philippe about this.

Thanks,

Paul

root [0] TChain tc(“Global”)
root [1] tc.Add(“AAvtx_set1-20_0706_100k_aa.root”)
(Int_t)1
root [2]
root [2] tc.Add(“AAvtx_set1-20_0706_100k_ab.root”)
(Int_t)1
root [3] tc.Add(“AAvtx_set1-20_0706_100k_ac.root”)
(Int_t)1
root [4] tc.Add(“AAvtx_set1-20_0706_100k_ah.root”)
(Int_t)1
root [5] tc.SetMaxTreeSize(4200000000)
root [6] tc.Merge("/data/dzero/balm/largest_file_ever.root")
Fill: Switching to new file: /data/dzero/balm/largest_file_ever_1.root
Fill: Switching to new file: /data/dzero/balm/largest_file_ever_2.root
Fill: Switching to new file: /data/dzero/balm/largest_file_ever_3.root
Fill: Switching to new file: /data/dzero/balm/largest_file_ever_4.root
(…)
*** Break *** keyboard interrupt
Root > .q
parces:/stage/orion/dzero/balm/data/rootfiles/AAvtx/files 23>root /data/dzero/balm/largest_file_ever_76.root
/user/r45/.rootlogon.C
root [0]
Attaching file /data/dzero/balm/largest_file_ever_76.root…
Error in TFile::ReadKeys: reading illegal key, exiting after 0 keys
R__unzip: discrepancy (51920) with initial size: 10311, tgtsize=10311
root [1]

The current max file size is 2Gbytes

Rene

Hi Paul,

HepTuple has not been updated to deal the consequence of TTree::Change. Use the HepFileManager interface to work
around this issue.

Cheers,
Philippe