]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/READMEraw.txt
Be explicit with the kind of manus we are counting (Laurent)
[u/mrichter/AliRoot.git] / MUON / READMEraw.txt
... / ...
CommitLineData
1// $Id$
2
3/*!
4
5\page README_raw README raw
6
7\section raw_s1 How to read & decode raw data
8
9These macros can read & decode DDL files, root and DATE files.
10Nevertheless for the two latter, aliroot has to be compiled with DATE.
11
12For tracker raw data
13<pre>
14.includepath $ALICE_ROOT/STEER
15.includepath $ALICE_ROOT/MUON
16.includepath $ALICE_ROOT/RAW
17.L $ALICE_ROOT/MUON/MUONRawStreamTracker.C+
18MUONRawStreamTracker(maxEvent, firstDDL, lastDDL, rawFileName)
19</pre>
20
21For trigger raw data
22<pre>
23.includepath $ALICE_ROOT/STEER
24.includepath $ALICE_ROOT/MUON
25.includepath $ALICE_ROOT/RAW
26.L $ALICE_ROOT/MUON/MUONRawStreamTrigger.C+
27MUONRawStreamTrigger(maxEvent, firstDDL, lastDDL, rawFileName)
28</pre>
29
30Default wise the macro read all DDL files from the current directory for 1000 events.
31For root file rawFileName must end with .root, for date file rawFileName
32must be no extention. For DDL files you have to specified the directory
33where the raw0...n subdirectories are located:
34<pre>
35MUONRawStreamTracker(maxEvent, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
36</pre>
37
38*/
39