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

void runClusterDUT(){

    int bias = atoi(m_bias);
  
  gROOT->ProcessLine(".L CMS.C+");
  gROOT->ProcessLine(".L AnalysisBase.C+");
  gROOT->ProcessLine(".L ClusterAna.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();


}