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
#include <stdlib.h> 
#include "AnalysisBase_Inputs.h"

void runClusterWithTrackAna(){

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

}