]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/exa/recraw-local.C
adding more examples to documentation
[u/mrichter/AliRoot.git] / HLT / exa / recraw-local.C
CommitLineData
94430cc1 1// $Id$
2/**
3 * @file recraw-local.C
4 * @brief Run reconstruction of raw data locally
5 *
6 * <pre>
7 * Usage: aliroot -b -q -l \
dd347dca 8 * recraw-local.C'("file", "cdb", minEvent, maxEvent, modules)'
94430cc1 9 *
10 * Examples:
dd347dca 11 * recraw-local.C'("alien:///alice/data/2009/.../....root")'
94430cc1 12 * recraw-local.C'("raw://run12345")'
13 * recraw-local.C'("raw://run12345", minEvent, MaxEvent)'
14 * recraw-local.C'("raw.root", "local://$PWD", minEvent, MaxEvent)'
043ef395 15 * recraw-local.C'("10000135031045.10..root", "raw://", -1, -1)'
16 * recraw-local.C'("alien:///alice/data/2010/LHC10f/000135031/10000135031045.10..root", "raw://", -1, -1)'
94430cc1 17 *
18 * Defaults
dd347dca 19 * cdb="raw://" -> take OCDB from GRID
20 * minEvent=-1 -> no lower event selection
21 * maxEvent=-1 -> no upper event selection
22 * modules="ALL" -> all modules
deb17658 23 * hltOption="loglevel=0x7c" -> logging level info and above
94430cc1 24 *
25 * </pre>
26 *
27 * The input file can be a file on the grid, indicated by the tag
28 * 'alien://' indicates. By default also the OCDB is set to the GRID.
29 * If either the file or the OCDB is taken from the GRID, the macros
30 * connects to the Grid in the beginning.
31 *
32 * Input files can be specified via te run number when using the tag
33 * 'raw://' followed by the string 'run12345' where the number needs
34 * to be adjusted.
deb17658 35 *
36 * As for the OCDB it is always a good idea to use the OCDB from the
37 * Grid as this will contain all the necessary objects and the latest
38 * calibration. The special URI 'raw://' is most advisable as it selects
39 * the storage automatically from the run number. Other options are e.g.
40 * - "alien://folder=/alice/data/2010/OCDB"
41 * - "local://$ALICE_ROOT/OCDB"
42 *
43 * Re-running the HLT reconstruction
44 * By specifying the hlt options, the HLT chain can be re-run instead
45 * of just extracting the online result. E.g. the following options
46 * specify to ignore the HLTOUT payload and run the two chains defined
47 * in the agents. The translation of the online configuration into
48 * an HLT offline chain is under development.
49 * <pre>
50 * ignore-hltout chains=GLOBAL-esd-converter,TPC-clusters
51 * <pre>
52 *
dd347dca 53 * Note: You need a valid GRID token, use 'alien-token-init' of your
54 * alien installation.
94430cc1 55 *
56 * @author Matthias.Richter@ift.uib.no
57 * @ingroup alihlt_qa
58 */
59void recraw_local(const char *filename,
60 const char *cdbURI,
61 int minEvent=-1,
dd347dca 62 int maxEvent=-1,
deb17658 63 const char *modules="ALL",
64 const char *hltOptions="loglevel=0x7c")
94430cc1 65{
66 // connect to the GRID if we use a file or OCDB from the GRID
67 TString struri=cdbURI;
68 TString strfile=filename;
69 if (struri.BeginsWith("raw://") ||
70 strfile.Contains("://") && !strfile.Contains("local://")) {
71 TGrid::Connect("alien");
72 }
73
74 // Set the CDB storage location
75 AliCDBManager * man = AliCDBManager::Instance();
76 man->SetDefaultStorage(cdbURI);
84d998ff 77 if (struri.BeginsWith("local://")) {
78 // set specific storage for GRP entry
79 // search in the working directory and one level above, the latter
80 // follows the standard simulation setup like e.g. in test/ppbench
81 if (!gSystem->AccessPathName("GRP/GRP/Data")) {
82 man->SetSpecificStorage("GRP/GRP/Data", "local://$PWD");
83 } else if (!gSystem->AccessPathName("../GRP/GRP/Data")) {
84 man->SetSpecificStorage("GRP/GRP/Data", "local://$PWD/..");
85 }
86 }
94430cc1 87
88 // Reconstruction settings
89 AliReconstruction rec;
90
91 if (minEvent>=0 || maxEvent>minEvent) {
92 if (minEvent<0) minEvent=0;
93 if (maxEvent<minEvent) maxEvent=minEvent;
94 rec.SetEventRange(minEvent,maxEvent);
95 }
96
8382b388 97 TString strModules=modules;
dd347dca 98 if (modules)
99 rec.SetRunReconstruction(modules);
100 else
101 rec.SetRunReconstruction("ALL");
94430cc1 102
103 // QA options
8382b388 104 TString qaOptions="HLT TPC";
105 if (!strModules.Contains("TPC")) qaOptions.ReplaceAll("TPC", "");
106 qaOptions+=":ALL";
107 rec.SetRunQA(qaOptions) ;
dd347dca 108 //rec.SetQARefDefaultStorage("local://$ALICE_ROOT/QAref") ;
94430cc1 109
110 // AliReconstruction settings
111 rec.SetWriteESDfriend(kTRUE);
8382b388 112 rec.SetRunVertexFinder(strModules.Contains("ITS"));
12fe5aa8 113 rec.SetRunMultFinder(strModules.Contains("ITS"));
94430cc1 114 rec.SetInput(filename);
deb17658 115 rec.SetOption("HLT", hltOptions);
94430cc1 116
117 rec.SetRunPlaneEff(kFALSE);
118
119 // switch off cleanESD
120 rec.SetCleanESD(kFALSE);
121
122 AliLog::Flush();
123 rec.Run();
124
125}
126
dd347dca 127void recraw_local(const char *filename,
94430cc1 128 int minEvent=-1,
dd347dca 129 int maxEvent=-1,
deb17658 130 const char *modules="ALL",
131 const char *hltOptions="loglevel=0x7f")
dd347dca 132{
deb17658 133 recraw_local(filename, "raw://", minEvent, maxEvent, modules, hltOptions);
dd347dca 134}
135
136void recraw_local()
94430cc1 137{
dd347dca 138 cout << "recraw-local: Run AliRoot reconstruction locally" << endl;
139 cout << " Usage: aliroot -b -q -l \\" << endl;
deb17658 140 cout << " recraw-local.C'(\"file\", \"cdb\", minEvent, maxEvent, modules, hltOptions)'" << endl;
dd347dca 141 cout << "" << endl;
142 cout << " Examples:" << endl;
143 cout << " recraw-local.C'(\"alien:///alice/data/2009/.../....root\")' " << endl;
144 cout << " recraw-local.C'(\"raw://run12345\")'" << endl;
145 cout << " recraw-local.C'(\"raw://run12345\", minEvent, MaxEvent)'" << endl;
146 cout << " recraw-local.C'(\"raw.root\", \"local://$PWD\", minEvent, MaxEvent)'" << endl;
147 cout << "" << endl;
148 cout << " Defaults" << endl;
149 cout << " cdb=\"raw://\" -> take OCDB from GRID" << endl;
150 cout << " minEvent=-1 -> no lower event selection" << endl;
151 cout << " maxEvent=-1 -> no upper event selection" << endl;
152 cout << " modules=\"ALL\" -> all modules" << endl;
deb17658 153 cout << " hltOption=\"loglevel=0x7c\" -> logging level info and above" << endl;
94430cc1 154}