File indexing completed on 2023-10-25 09:32:12
0001
0002
0003
0004
0005 void allMillePede(bool forceCompile = false) {
0006 TString compile(forceCompile ? "++" : "+");
0007 gROOT->ProcessLine(".L GFUtils/GFHistArray.C" + compile);
0008 gROOT->ProcessLine(".L GFUtils/GFHistManager.C" + compile);
0009
0010 gROOT->ProcessLine(".L MillePedeTrees.C" + compile);
0011 gROOT->ProcessLine(".L PlotMillePede.C" + compile);
0012 gROOT->ProcessLine(".L PlotMillePedeIOV.C" + compile);
0013 gROOT->ProcessLine(".L CompareMillePede.C" + compile);
0014
0015 gROOT->ProcessLine(".L PlotMilleMonitor.C" + compile);
0016 }
0017
0018
0019