Newer
Older
TB_Chris / TbUT / scripts / runClusterWithTrackAna.C
@iaro iaro on 9 May 2016 587 bytes first attempt of automated anal
#include <stdlib.h> 
#include "AnalysisBase_Inputs.h"

void runClusterWithTrackAna(){

    int bias = atoi(m_bias);
  
  gROOT->ProcessLine(".L ../Tb/TbUT/scripts/CMS.C+");
  gROOT->ProcessLine(".L ../Tb/TbUT/scripts/AnalysisBase.C+");
  gROOT->ProcessLine(".L ../Tb/TbUT/scripts/ClusterWithTrackAna.C+");
  //  gROOT->ProcessLine(".L ClusterTrackAnalysis.C+");
  //  int bias = atoi(m_bias);
  //int bias = 300;
  //    ClusterWithTrackAna a;
  //a.Loop();
  
  //  TTree *t;
   ClusterWithTrackAna a(bias);
  //  ClusterTrackAnalysis a(bias);
  //AnalysisBase a(bias);
  a.Loop();


}