]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDRawStream.cxx
Adding missing include
[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 //
23 #include "AliFMDRawStream.h"            // ALIFMDRAWSTREAM_H
24 #include "AliRawReader.h"               // ALIRAWREADER_H
25
26 //____________________________________________________________________
27 ClassImp(AliFMDRawStream);
28
29 //____________________________________________________________________
30 AliFMDRawStream::AliFMDRawStream(AliRawReader* reader, UShort_t sampleRate) 
31   : AliAltroRawStream(reader), 
32     fSampleRate(sampleRate),
33     fPrevTime(-1), 
34     fExplicitSampleRate(kFALSE)
35 {
36   if (fSampleRate > 0) fExplicitSampleRate = kTRUE;
37 }
38
39 //_____________________________________________________________________________
40 Bool_t 
41 AliFMDRawStream::Next()
42 {
43   // read the next raw digit
44   // returns kFALSE if there is no digit left
45   fPrevTime = fTime;
46   if (AliAltroRawStream::Next()) {
47     if (!fExplicitSampleRate && fPrevPad != fPad) 
48       fSampleRate = fTimeBunch / 128;
49     return kTRUE;
50   }
51   return kFALSE;
52 }
53
54 //_____________________________________________________________________________
55 //
56 // EOF
57 //