While using the ROOT 6.18/04 with a simple python “trial.py
” script:
#!/usr/bin/python
import ROOT
ROOT.gROOT.SetStyle("Plain")
one gets the error shown in the title of this thread when one tries:
./trial.py --web="blah"
It seems that ROOT automatically tries to parse the script’s parameters.
How can I prevent it?
I would need some magic line, that will be executed as the first one in the script (right after “import ROOT
”), which could block it (i.e., something that begins with “ROOT.gROOT...
”).