CMS 3D CMS Logo

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