Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-25 02:29:50

0001 from ROOT import gROOT,gSystem
0002 
0003 def load_libs():
0004     print('loading FWLite.')
0005     #load the libaries needed
0006     gSystem.Load("libFWCoreFWLite")
0007     gROOT.ProcessLine('FWLiteEnabler::enable();')
0008     gSystem.Load("libFWCoreFWLite")
0009         
0010     #now the RootTools stuff
0011     gSystem.Load("libPhysicsToolsHeppy")
0012 
0013 load_libs()