Hi,
I have a script that calls TTree::Process(“MySelector.C+”) many times, and each time this method is called Aclic reports:
“Info in : unmodified script has already been compiled and loaded”
How can I tell Aclic/Cint to run in silent mode and not report this message?
Best regards, Marcelo
You could set gErrorIgnoreLevel to kWarning. Or you could load the the script/library once and create the selector explicitly: gROOT->ProcessLine(".L MySelector.C+"); .... MySelector *selector = new MySelector; .... tree->Process(selector);
gROOT->ProcessLine(".L MySelector.C+"); .... MySelector *selector = new MySelector; .... tree->Process(selector);
Cheers, Philippe.