Raw File
.rootlogon.py
"""rootlogon module for the Python tutorials. Disables the graphics."""
import ROOT
ROOT.gROOT.SetBatch(True)
back to top