<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Times New Roman \(Body CS\)";
        panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
        {font-family:Menlo;
        panose-1:2 11 6 9 3 8 4 2 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
p.msonormal0, li.msonormal0, div.msonormal0
        {mso-style-name:msonormal;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
p.p1, li.p1, div.p1
        {mso-style-name:p1;
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:13.5pt;
        font-family:Menlo;
        color:black;}
span.EmailStyle19
        {mso-style-type:personal;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
span.s1
        {mso-style-name:s1;}
span.apple-converted-space
        {mso-style-name:apple-converted-space;}
span.EmailStyle22
        {mso-style-type:personal-reply;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style>
</head>
<body lang="EN-AU" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal">Hi,<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">I’m running a fairly simple, though quite long and memory demanding, simulation on a HPC computer.
<o:p></o:p></p>
<p class="MsoNormal">The simulation has to be split on various CPUs using gjs. The problem that I’ve encountered is that, for some root files, the following error appears:<o:p></o:p></p>
<p class="p1"><span class="s1"><span style="font-size:12.0pt">This error is symptomatic of a Tree created as a memory-resident Tree</span></span><o:p></o:p></p>
<p class="p1"><span class="apple-converted-space"><span style="font-size:12.0pt"> </span></span><span class="s1"><span style="font-size:12.0pt">Instead of doing:</span></span><o:p></o:p></p>
<p class="p1"><span class="apple-converted-space"><span style="font-size:12.0pt">   
</span></span><span class="s1"><span style="font-size:12.0pt">TTree *T = new TTree(...)</span></span><o:p></o:p></p>
<p class="p1"><span class="apple-converted-space"><span style="font-size:12.0pt">   
</span></span><span class="s1"><span style="font-size:12.0pt">TFile *f = new TFile(...)</span></span><o:p></o:p></p>
<p class="p1"><span class="apple-converted-space"><span style="font-size:12.0pt"> </span></span><span class="s1"><span style="font-size:12.0pt">you should do:</span></span><o:p></o:p></p>
<p class="p1"><span class="apple-converted-space"><span style="font-size:12.0pt">   
</span></span><span class="s1"><span style="font-size:12.0pt">TFile *f = new TFile(...)</span></span><o:p></o:p></p>
<p class="p1"><span class="apple-converted-space"><span style="font-size:12.0pt">   
</span></span><span class="s1"><span style="font-size:12.0pt">TTree *T = new TTree(...)</span></span><o:p></o:p></p>
<p class="MsoNormal">From root documentation (<a href="https://root-forum.cern.ch/t/a-tree-created-as-a-memory-resident-tree/16496">https://root-forum.cern.ch/t/a-tree-created-as-a-memory-resident-tree/16496</a>), I understand that by creating the TTree before
 the TFile, the TTree exists in memory (which is inefficient, if you want to store high amounts of data). What I don’t understand though, is why this error appears in some of my files, but not in all of them - As the simulation times are split evenly and the
 CPU resources are the same for all my simulation <o:p></o:p></p>
<p class="MsoNormal">My questions are then, (i) Why is this happening only in a few files but not all? (ii) Has this been fixed in recent gate versions?<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Regards,<o:p></o:p></p>
<p class="MsoNormal">Francisco Enriquez<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
</div>
</body>
</html>