CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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('AutoLibraryLoader::enable();')
8  gSystem.Load("libFWCoreFWLite")
9  gSystem.Load("libCintex")
10  gROOT.ProcessLine('ROOT::Cintex::Cintex::Enable();')
11 
12  #now the RootTools stuff
13  gSystem.Load("libPhysicsToolsHeppy")
14 
15 load_libs()
def load_libs
Definition: loadlibs.py:3