]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/READMEraw.txt
- Added class for Global Crate object
[u/mrichter/AliRoot.git] / MUON / READMEraw.txt
1 // $Id$
2
3 /*! 
4
5 \page README_raw README raw
6  
7 \section raw_s1 How to read & decode raw data 
8
9 These macros can read & decode DDL files, root and DATE files.
10 Nevertheless for the two latter, aliroot has to be compiled with DATE.
11
12 For 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+
18 MUONRawStreamTracker(maxEvent, firstDDL, lastDDL, rawFileName)
19 </pre>
20
21 For 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+ 
27 MUONRawStreamTrigger(maxEvent, firstDDL, lastDDL, rawFileName)
28 </pre>
29
30 Default wise the macro read all DDL files from the current directory for 1000 events.
31 For root file rawFileName must end with .root, for date file rawFileName 
32 must be no extention. For DDL files you have to specified the directory 
33 where the raw0...n subdirectories are located:
34 <pre>
35 MUONRawStreamTracker(maxEvent, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
36 </pre>
37
38 */
39