]> git.uio.no Git - u/mrichter/AliRoot.git/blob - test/fpprod/rec.C
Do not use mean vertex constraint (Andrea)
[u/mrichter/AliRoot.git] / test / fpprod / rec.C
1 void rec() {
2   AliReconstruction reco;
3   reco.SetUniformFieldTracking(kFALSE);
4   reco.SetWriteESDfriend();
5   reco.SetWriteAlignmentData();
6   AliTPCRecoParam * tpcRecoParam = AliTPCRecoParam::GetLowFluxParam();
7   AliTPCReconstructor::SetRecoParam(tpcRecoParam);
8   AliTPCReconstructor::SetStreamLevel(1);
9   //   reco.SetInput("raw.root");
10   reco.SetRunReconstruction("ITS TPC TRD TOF HMPID PHOS EMCAL MUON VZERO T0 FMD PMD ZDC");
11   reco.SetRunQA(kFALSE);
12   reco.SetRunGlobalQA(kFALSE);
13   reco.SetMeanVertexConstraint(kFALSE);
14
15   TStopwatch timer;
16   timer.Start();
17   reco.Run();
18   timer.Stop();
19   timer.Print();
20 }