CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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()
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
def load_libs
Definition: loadlibs.py:4