]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/READMEraw.txt
- New parameters to fill ESD MUON clusters with additional informations (including...
[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
ae11a428 9These macros can read & decode DDL files and root files.
10DATE files are no more supported.
2ce5e44e 11
ae11a428 12For tracker raw data, full output
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+
ae11a428 18MUONRawStreamTrackerExpert(rawFileName, maxEvent, firstDDL, lastDDL)
518eb852 19</pre>
2ce5e44e 20
ae11a428 21
22For tracker raw data, just digit output
23<pre>
24.includepath $ALICE_ROOT/STEER
25.includepath $ALICE_ROOT/MUON
26.includepath $ALICE_ROOT/RAW
27.L $ALICE_ROOT/MUON/MUONRawStreamTracker.C+
28MUONRawStreamTrackerSimple(rawFileName, maxEvent, firstDDL, lastDDL)
29</pre>
30
31For trigger raw data, full output
518eb852 32<pre>
2ce5e44e 33.includepath $ALICE_ROOT/STEER
34.includepath $ALICE_ROOT/MUON
35.includepath $ALICE_ROOT/RAW
36.L $ALICE_ROOT/MUON/MUONRawStreamTrigger.C+
37MUONRawStreamTrigger(maxEvent, firstDDL, lastDDL, rawFileName)
518eb852 38</pre>
2ce5e44e 39
ae11a428 40For trigger raw data, local response output
41<pre>
42.includepath $ALICE_ROOT/STEER
43.includepath $ALICE_ROOT/MUON
44.includepath $ALICE_ROOT/RAW
45.L $ALICE_ROOT/MUON/MUONRawStreamTrigger.C+
46MUONRawStreamTriggerSimple(maxEvent, firstDDL, lastDDL, rawFileName)
47</pre>
48
49
2ce5e44e 50Default wise the macro read all DDL files from the current directory for 1000 events.
ae11a428 51For root file rawFileName must end with .root. For DDL files you have to specified the directory
2ce5e44e 52where the raw0...n subdirectories are located:
518eb852 53<pre>
ae11a428 54MUONRawStreamTracker(..)(maxEvent, firstDDL, lastDDL, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
518eb852 55</pre>
56
57*/
2ce5e44e 58