Description
It is rouglhy 400 MB for every 50/100 reconfigures, as we go pace increases. This is annoing espeically when running longer fits...
How to reproduce
Take this badboi
docker pull picker24/pittpaccbox
and run this code
#include "FitLogger.h"
#include "PlotUtils.h"
#include "StatUtils.h"
#include "TFile.h"
#include "TH1D.h"
#include "TTree.h"
#include <stdio.h>
#include <stdlib.h>
// If you don't have NEUT enabled, you shouldn't compile this...
#include "neutpart.h"
#include "neutvect.h"
#include "NEUTInputHandler.h"
//*******************************
int main(int argc, char *argv[]) {
//*******************************
NEUTInputHandler* input = new NEUTInputHandler("Luke", "/hosthome/Pittpac/T2K_NEUT_Short.root");
int iterator = 0;
while(true)
{
for (int i = 0; i < input->GetNEvents(); i++)
{
input->GetNuisanceEvent(i, true);
}
//if (iterator % (100) == 0)
std::cout<<"Luke help "<<iterator<<std::endl;
iterator++;
}
};
Description
It is rouglhy 400 MB for every 50/100 reconfigures, as we go pace increases. This is annoing espeically when running longer fits...
How to reproduce
Take this badboi
docker pull picker24/pittpaccboxand run this code