]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDRawStream.cxx
remove obselete clean QA macros command
[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 "AliFMDDebug.h" // Better debug macros
33 // #include <iomanip>
34 // #include <iostream>
35 #include "AliRawReader.h"
36 #include <climits>
37
38 //____________________________________________________________________
39 ClassImp(AliFMDRawStream)
40 #if 0
41   ; // This is here to keep Emacs for indenting the next line
42 #endif
43
44 //____________________________________________________________________
45 AliFMDRawStream::AliFMDRawStream(AliRawReader* reader) 
46   : AliAltroRawStream(reader)
47 {
48   // CTOR 
49   reader->Reset();
50   fNoAltroMapping = kFALSE;
51   // Select FMD DDL's 
52   SelectRawData("FMD");
53 }
54
55 //_____________________________________________________________________________
56 Bool_t 
57 AliFMDRawStream::ReadChannel(UInt_t& ddl, UInt_t& addr, 
58                              UInt_t& len, volatile UShort_t* data)
59 {
60   // Read one channel and return.   Returns 0 when there's no more
61   // data. 
62   Int_t        l         = 0;
63   static Int_t last      = 0xFFFF; // 0xFFFF means signal is used
64   Bool_t       next      = kTRUE;
65   do {
66     Int_t signal = last;
67     if (last > 0x3FF) {
68       AliFMDDebug(30, ("Last is 0x%x, so reading a new word", last));
69       next   = Next();
70       if(!next){
71         AliFMDDebug(15, ("Read word # %d (!next)", l));
72         addr = GetPrevHWAddress();
73         ddl  = (GetPrevDDLNumber() < 0 ? UINT_MAX: GetPrevDDLNumber());
74         len  = l+1; // Need to add one - l points to last valid index
75         last = signal;
76         break;
77       }
78       signal = GetSignal();
79       if (GetHWAddress() != GetPrevHWAddress() && GetPrevHWAddress() >= 0) {
80         AliFMDDebug(15, ("New hardware address, was 0x%x, now 0x%x", 
81                           GetPrevHWAddress(), GetHWAddress()));
82         addr = GetPrevHWAddress();
83         ddl  = (GetPrevDDLNumber() < 0 ? UINT_MAX : GetPrevDDLNumber());
84         len  = l+1; // Need to add one - l points to last valid index
85         last = signal;
86         break;
87       }
88     }
89     // Sanity check - if the total bunch length is less than 1, then
90     // read until we get the next bunch. 
91     Int_t b  = GetTimeLength();
92     if (b < 1) { 
93       AliWarning(Form("Bunch length %0d is less than 0 for "
94                       "DDL %4d address 0x%03x", 
95                       b, ddl, addr));
96       last = 0xFFFF;
97       continue;
98     }
99
100     // Sanity check - if the current time is less than 0, then read
101     // until we get a new bunch. 
102     Int_t t  = GetTime();
103     if (t < 0) {
104       AliWarning(Form("Time %0d is less than 0 for DDL %4d address 0x%03x", 
105                       t, ddl, addr));
106       last = 0xFFFF;
107       continue;
108     }
109     l        = TMath::Max(l, t);
110     data[t]  = signal;
111     last     = 0xFFFF;
112 #if 0
113     AliFMDDebug(signal > 512 ? 1 : 0, ("Signal @ %d (%d) is %d", 
114                                        time, t, data[t]));
115 #endif
116   } while (next);
117   return next;
118 }
119
120
121 //_____________________________________________________________________________
122 //
123 // EOF
124 //