]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STARLIGHT/test/rec.C
fix in calling of gaussian spread function
[u/mrichter/AliRoot.git] / STARLIGHT / test / rec.C
1 void rec() {
2   AliReconstruction reco;
3
4   reco.SetWriteESDfriend();
5   reco.SetWriteAlignmentData();
6
7   reco.SetDefaultStorage("alien://Folder=/alice/data/2010/OCDB");
8 //   reco.SetDefaultStorage("local://$ALICE_ROOT/OCDB");
9   reco.SetSpecificStorage("GRP/GRP/Data",
10                           Form("local://%s",gSystem->pwd()));
11   reco.SetRunPlaneEff(kTRUE);
12
13   reco.SetRunQA("ALL:ALL") ;
14   
15   reco.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
16   
17   for (Int_t det = 0 ; det < AliQA::kNDET ; det++) {
18     reco.SetQACycles((AliQAv1::DETECTORINDEX_t)det, 999) ;
19     reco.SetQAWriteExpert((AliQAv1::DETECTORINDEX_t)det) ; 
20   }
21   
22   TStopwatch timer;
23   timer.Start();
24   reco.Run();
25   timer.Stop();
26   timer.Print();
27 }