]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/scripts/RunAnaESD.C
Work around when AliFMDCalibZeroSuppression contains
[u/mrichter/AliRoot.git] / FMD / scripts / RunAnaESD.C
1 // void
2 // RunAnaESD(Bool_t bg=true)
3 {
4   Int_t  v2    = 6;
5   Int_t  nBins = 1;
6   Bool_t bg    = kTRUE;
7   // gROOT->LoadMacro("Compile.C");
8   Compile("AliFMDAnaFlowRing.h"); 
9   Compile("AliFMDAnaFlow.C"); 
10   AliFMDAnaFlow af(nBins,bg); 
11   af.Run(); 
12   TBrowser b;
13   b.Add(&af);
14   af.ToFile(Form("flow_v%02d_b%02d_%s.root", v2, nBins, (bg?"bg":"nobg"))); 
15 }