Newer
Older
TB_Chris / TbUT / scripts / .svn / text-base / runClusterWithTrackAna.C.svn-base
@iaro iaro on 9 May 2016 308 bytes first attempt of automated anal
  1. #include <stdlib.h>
  2. #include "AnalysisBase_Inputs.h"
  3.  
  4. void runClusterWithTrackAna(){
  5.  
  6. int bias = atoi(m_bias);
  7. gROOT->ProcessLine(".L CMS.C+");
  8. gROOT->ProcessLine(".L AnalysisBase.C+");
  9. gROOT->ProcessLine(".L ClusterWithTrackAna.C+");
  10. TTree *t;
  11. ClusterWithTrackAna a(bias);
  12. a.Loop();
  13.  
  14. }