]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Updated documentation (Christian)
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 30 Nov 2007 13:18:38 +0000 (13:18 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 30 Nov 2007 13:18:38 +0000 (13:18 +0000)
MUON/READMEraw.txt

index fd95b0048c24b9e5cae70d2e7434f8eb1d457064..0487ece63499fce466e34e1aaab249bcda486cfe 100644 (file)
@@ -6,19 +6,29 @@
  
 \section raw_s1 How to read & decode raw data 
 
-These macros can read & decode DDL files, root and DATE files.
-Nevertheless for the two latter, aliroot has to be compiled with DATE.
+These macros can read & decode DDL files and root files.
+DATE files are no more supported.
 
-For tracker raw data
+For tracker raw data, full output
 <pre>
 .includepath $ALICE_ROOT/STEER
 .includepath $ALICE_ROOT/MUON
 .includepath $ALICE_ROOT/RAW
 .L $ALICE_ROOT/MUON/MUONRawStreamTracker.C+
-MUONRawStreamTracker(maxEvent, firstDDL, lastDDL, rawFileName)
+MUONRawStreamTrackerExpert(rawFileName, maxEvent, firstDDL, lastDDL)
 </pre>
 
-For trigger raw data
+
+For tracker raw data, just digit output
+<pre>
+.includepath $ALICE_ROOT/STEER
+.includepath $ALICE_ROOT/MUON
+.includepath $ALICE_ROOT/RAW
+.L $ALICE_ROOT/MUON/MUONRawStreamTracker.C+
+MUONRawStreamTrackerSimple(rawFileName, maxEvent, firstDDL, lastDDL)
+</pre>
+
+For trigger raw data, full output
 <pre>
 .includepath $ALICE_ROOT/STEER
 .includepath $ALICE_ROOT/MUON
@@ -27,12 +37,21 @@ For trigger raw data
 MUONRawStreamTrigger(maxEvent, firstDDL, lastDDL, rawFileName)
 </pre>
 
+For trigger raw data, local response output
+<pre>
+.includepath $ALICE_ROOT/STEER
+.includepath $ALICE_ROOT/MUON
+.includepath $ALICE_ROOT/RAW
+.L $ALICE_ROOT/MUON/MUONRawStreamTrigger.C+ 
+MUONRawStreamTriggerSimple(maxEvent, firstDDL, lastDDL, rawFileName)
+</pre>
+
+
 Default wise the macro read all DDL files from the current directory for 1000 events.
-For root file rawFileName must end with .root, for date file rawFileName 
-must be no extention. For DDL files you have to specified the directory 
+For root file rawFileName must end with .root. For DDL files you have to specified the directory 
 where the raw0...n subdirectories are located:
 <pre>
-MUONRawStreamTracker(maxEvent, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
+MUONRawStreamTracker(..)(maxEvent, firstDDL, lastDDL, "$YOUR_WORKING_DIRECTORY/"); //Do not forget the slash at the end!
 </pre>
 
 */