Warnings & Errors suppression

Hi,

is there a way to suppress filly in root the standard warnings and errors like:

Error in TFile::TFile: …

Cheers,
Ivan

Hi Ivan,

Set gErrorIgnoreLevel according to your needs to a value from the list below:const Int_t kUnset = -1; const Int_t kPrint = 0; const Int_t kInfo = 1000; const Int_t kWarning = 2000; const Int_t kError = 3000; const Int_t kBreak = 4000; const Int_t kSysError = 5000; const Int_t kFatal = 6000; e.g.gErrorIgnoreLevel=4000will not print Error messages.

Cheers, Ilka

Thanks Ilka,

that’s exactly what I needed.

Cheers,
Ivan