]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDRawStream.cxx
Use VMC id's rather than TGeo id's
[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
36 //____________________________________________________________________
37 ClassImp(AliFMDRawStream)
38 #if 0
39   ; // This is here to keep Emacs for indenting the next line
40 #endif
41
42 //____________________________________________________________________
43 AliFMDRawStream::AliFMDRawStream(AliRawReader* reader) 
44   : AliAltroRawStream(reader)
45 {
46   // CTOR 
47   fNoAltroMapping = kFALSE;
48   // Select FMD DDL's 
49   SelectRawData("FMD");
50 }
51
52 //_____________________________________________________________________________
53 Bool_t 
54 AliFMDRawStream::ReadChannel(UInt_t& ddl, UInt_t& addr, 
55                              UInt_t& len, UShort_t* data)
56 {
57   // Read one channel and return.   Returns 0 when there's no more
58   // data. 
59   Int_t        l         = 0;
60   static Int_t last      = 0xFFFF; // 0xFFFF means signal is used
61   Bool_t       next      = kTRUE;
62   do {
63     Int_t signal = last;
64     if (last > 0x3FF) {
65       AliFMDDebug(30, ("Last is 0x%x, so reading a new word", last));
66       next   = Next();
67       if (!next) break;
68       signal = GetSignal();
69       if (GetHWAddress() != GetPrevHWAddress() && GetPrevHWAddress() >= 0) {
70         AliFMDDebug(15, ("New hardware address, was 0x%x, now 0x%x", 
71                           GetPrevHWAddress(), GetHWAddress()));
72         addr = GetPrevHWAddress();
73         ddl  = GetPrevDDLNumber();
74         len  = l+1; // Need to add one - l points to last valid index
75         last = signal;
76         break;
77       }
78     }
79     Int_t t  = GetTime();
80     l        = TMath::Max(l, t);
81     data[t]  = signal;
82     last     = 0xFFFF;
83   } while (next);
84   return next;
85 }
86
87
88 //_____________________________________________________________________________
89 //
90 // EOF
91 //