]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/READMEraw.txt
coding violation fixes
[u/mrichter/AliRoot.git] / MUON / READMEraw.txt
CommitLineData
518eb852 1// $Id$
2
3/*!
4
5\page README_raw README raw
6
7\section raw_s1 How to read & decode raw data
8
2ce5e44e 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
518eb852 13<pre>
2ce5e44e 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)
518eb852 19</pre>
2ce5e44e 20
21For trigger raw data
518eb852 22<pre>
2ce5e44e 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)
518eb852 28</pre>
2ce5e44e 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:
518eb852 34<pre>
2ce5e44e 35MUONRawStreamTracker(maxEvent, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
518eb852 36</pre>
37
38*/
2ce5e44e 39