CMS 3D CMS Logo

loadlibs.py
Go to the documentation of this file.
1 from __future__ import print_function
2 from ROOT import gROOT,gSystem
3 
4 def load_libs():
5  print('loading FWLite.')
6  #load the libaries needed
7  gSystem.Load("libFWCoreFWLite")
8  gROOT.ProcessLine('FWLiteEnabler::enable();')
9  gSystem.Load("libFWCoreFWLite")
10 
11  #now the RootTools stuff
12  gSystem.Load("libPhysicsToolsHeppy")
13 
14 load_libs()
S & print(S &os, JobReport::InputFile const &f)
Definition: JobReport.cc:66
def load_libs()
Definition: loadlibs.py:4