]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDRawStream.cxx
Added documentation of each file.
[u/mrichter/AliRoot.git] / FMD / AliFMDRawStream.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 //____________________________________________________________________
19 //                                                                          
20 // Buffer to read RAW ALTRO FMD format from a AliRawReader 
21 // 
22 // This class derives from AliAltroBuffer, but overloads the memer
23 // function Next to do some extra processing.  In particular, it tries
24 // to autodetect the sample rate.  If zero-suppression was used when
25 // writing the raw data, then the automatic discovery will not work,
26 // and the sample rate should be set explicitly. 
27 //
28 #include "AliFMDRawStream.h"            // ALIFMDRAWSTREAM_H
29 #include <AliRawReader.h>               // ALIRAWREADER_H
30 #include "AliFMDParameters.h"
31 #include <AliLog.h>
32 #include <iomanip>
33 #include <iostream>
34
35 //____________________________________________________________________
36 ClassImp(AliFMDRawStream)
37 #if 0
38   ; // This is here to keep Emacs for indenting the next line
39 #endif
40
41 //____________________________________________________________________
42 AliFMDRawStream::AliFMDRawStream(AliRawReader* reader) 
43   : AliAltroRawStream(reader)
44 {
45   fNoAltroMapping = kFALSE;
46 }
47
48 //_____________________________________________________________________________
49 Bool_t 
50 AliFMDRawStream::ReadChannel(UInt_t& ddl, UInt_t& addr, 
51                              UInt_t& len, UShort_t* data)
52 {
53   UInt_t       prevddl   = 0;
54   Int_t        l         = 0;
55   static Int_t last      = 0xFFFF; // 0xFFFF means signal is used
56   Bool_t       next      = kTRUE;
57   do {
58     Int_t signal = last;
59     if (last > 0x3FF) {
60       AliDebug(30, Form("Last is 0x%x, so reading a new word", last));
61       next   = Next();
62       if (!next) break;
63       signal = GetSignal();
64       if (GetHWAddress() != GetPrevHWAddress() && GetPrevHWAddress() >= 0) {
65         AliDebug(15, Form("New hardware address, was 0x%x, now 0x%x", 
66                           GetPrevHWAddress(), GetHWAddress()));
67         addr = GetPrevHWAddress();
68         ddl  = AliFMDParameters::kBaseDDL + prevddl;
69         len  = l+1;
70         last = signal;
71         break;
72       }
73     }
74     prevddl  = fRawReader->GetDDLID();
75     Int_t t  = GetTime();
76     l        = TMath::Max(l, t);
77     data[t]  = signal;
78     last     = 0xFFFF;
79   } while (next);
80   return next;
81 }
82
83
84 //_____________________________________________________________________________
85 //
86 // EOF
87 //