Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:28

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