Newer
Older
TB_Chris / TbUT / scripts / runClusterAna.C
@iaro iaro on 9 May 2016 180 bytes first attempt of automated anal
void runClusterAna(int bias = 50){

  gROOT->ProcessLine(".L AnalysisBaseCluOnly.C+");
  gROOT->ProcessLine(".L ClusterAna.C+");
  
  TTree *t;
  ClusterAna a(bias);
  a.Loop();
}