Source code for alphatwirl.cmsedm.load_fwlite

# Tai Sakuma <tai.sakuma@cern.ch>

try:
    import ROOT
except ImportError:
    pass

_loaded = False

##__________________________________________________________________||
[docs]def load_fwlite(): global _loaded if _loaded: return ROOT.gSystem.Load("libFWCoreFWLite") ROOT.gSystem.Load("libDataFormatsFWLite") ROOT.FWLiteEnabler.enable() _loaded = True
##__________________________________________________________________||