]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGPP/CalibMacros/CPass0/recCPass0.C
Update, according to macros on alien from latest running (LHC13g + update from T0...
[u/mrichter/AliRoot.git] / PWGPP / CalibMacros / CPass0 / recCPass0.C
CommitLineData
27eb9bff 1/*
2 rec.C to be used for pass0
3 - reconstruction of raw data
4 - QA information switched off
5 - store all friends
6 - default OCDB storage set to "raw://"
7
8 Example:
4c8432c7 9 aliroot -b -q 'recCPass0.C("raw.root",100)'
27eb9bff 10*/
11
a6168b42 12void recCPass0(const char *filename="raw.root",Int_t nevents=-1, const char *ocdb="raw://", const char* options="?Trigger=kCalibBarrel")
27eb9bff 13{
14 // Load some system libs for Grid and monitoring
15 // Set the CDB storage location
16 AliCDBManager * man = AliCDBManager::Instance();
17 man->SetDefaultStorage(ocdb);
18 // Reconstruction settings
19 AliReconstruction rec;
20 // Upload CDB entries from the snapshot (local root file) if snapshot exist
21 if (gSystem->AccessPathName("OCDB.root", kFileExists)==0) {
5cebce24 22 rec.SetCDBSnapshotMode("OCDB.root");
27eb9bff 23 }
19ec92a8 24
25 if (gSystem->AccessPathName("localOCDBaccessConfig.C", kFileExists)==0) {
26 gROOT->LoadMacro("localOCDBaccessConfig.C");
27 localOCDBaccessConfig();
28 }
29
27eb9bff 30 // All friends
31 rec.SetFractionFriends(1.0);
32
33 // AliReconstruction settings - hardwired MB trigger for calibration
34
35 TString newfilename = filename;
a6168b42 36 newfilename += options;
27eb9bff 37 rec.SetInput(newfilename.Data());
38
39 // Set protection against too many events in a chunk (should not happen)
40 if (nevents>0) rec.SetEventRange(0,nevents);
41
42 // Remove recpoints after each event
9e160db9 43 rec.SetDeleteRecPoints("TPC TRD ITS");
44 //
9e160db9 45
27eb9bff 46
47 // Switch off the V0 finder - saves time!
9dec4b98 48 // rec.SetRunMultFinder(kFALSE);
27eb9bff 49 rec.SetRunV0Finder(kFALSE);
50
51 //
52 // QA options - all QA is off
53 //
54 rec.SetRunQA(":");
55 rec.SetRunGlobalQA(kFALSE);
56
57 // AliReconstruction settings
58 rec.SetWriteESDfriend(kTRUE);
59 rec.SetWriteAlignmentData();
60 rec.SetUseTrackingErrorsForAlignment("ITS");
2e8e7977 61 rec.SetRunReconstruction("ALL -HLT");
27eb9bff 62 rec.SetFillESD("ALL");
63 rec.SetCleanESD(kFALSE);
64
27eb9bff 65 //Ignore SetStopOnError
66 rec.SetStopOnError(kFALSE);
67
68 AliLog::Flush();
69 rec.Run();
70}
71