Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:32:12

0001 // Original Author: Gero Flucke
0002 // last change    : $Date: 2009/01/20 20:21:38 $
0003 // by             : $Author: flucke $
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