Newer
Older
TB_Chris / TbUT / scripts / .svn / text-base / runExampleAnalysis.C.svn-base
@iaro iaro on 9 May 2016 314 bytes first attempt of automated anal
  1. {
  2. //-------------------------
  3. // To execute:
  4. // SetupProject LHCb v36r2
  5. // root[]: .x runExampleAnalysis.C
  6. //
  7. //-------------------------
  8.  
  9. gROOT->ProcessLine(".L CMS.C+");
  10. gROOT->ProcessLine(".L AnalysisBase.C+");
  11. gROOT->ProcessLine(".L ExampleAnalysis.C+");
  12.  
  13. ExampleAnalysis a;
  14. a.Loop();
  15.  
  16. }