]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/READMEraw.txt
Reorganized README*.txt pages to get them well ordered
[u/mrichter/AliRoot.git] / MUON / READMEraw.txt
1 // $Id$
2
3 /*! 
4
5 \page README_raw Raw data
6  
7 \section raw_s1 How to read & decode raw data 
8
9 These macros can read & decode DDL files and root files.
10 DATE files are no more supported.
11
12 For tracker raw data, full output
13 <pre>
14 .includepath $ALICE_ROOT/STEER
15 .includepath $ALICE_ROOT/MUON
16 .includepath $ALICE_ROOT/RAW
17 .L $ALICE_ROOT/MUON/MUONRawStreamTracker.C+
18 MUONRawStreamTrackerExpert(rawFileName, maxEvent, firstDDL, lastDDL)
19 </pre>
20
21
22 For 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+
28 MUONRawStreamTrackerSimple(rawFileName, maxEvent, firstDDL, lastDDL)
29 </pre>
30
31 For trigger raw data, full output
32 <pre>
33 .includepath $ALICE_ROOT/STEER
34 .includepath $ALICE_ROOT/MUON
35 .includepath $ALICE_ROOT/RAW
36 .L $ALICE_ROOT/MUON/MUONRawStreamTrigger.C+ 
37 MUONRawStreamTrigger(maxEvent, firstDDL, lastDDL, rawFileName)
38 </pre>
39
40 For 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+ 
46 MUONRawStreamTriggerSimple(maxEvent, firstDDL, lastDDL, rawFileName)
47 </pre>
48
49
50 Default wise the macro read all DDL files from the current directory for 1000 events.
51 For root file rawFileName must end with .root. For DDL files you have to specified the directory 
52 where the raw0...n subdirectories are located:
53 <pre>
54 MUONRawStreamTracker(..)(maxEvent, firstDDL, lastDDL, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
55 </pre>
56
57 This chapter is defined in the READMEraw.txt file.
58
59 */
60