]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDRawReader.h
Added script
[u/mrichter/AliRoot.git] / FMD / AliFMDRawReader.h
1 #ifndef ALIFMDRAWREADER_H
2 #define ALIFMDRAWREADER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4  * reserved. 
5  *
6  * Latest changes by Christian Holm Christensen <cholm@nbi.dk>
7  *
8  * See cxx source for full Copyright notice                               
9  */
10 /* $Id$ */
11 //____________________________________________________________________
12 // 
13 // Class to read ADC values from a AliRawReader object. 
14 // 
15 #ifndef ROOT_TTask
16 # include <TTask.h>
17 #endif
18
19 //____________________________________________________________________
20 class AliRawReader;
21 class TTree;
22
23
24 //____________________________________________________________________
25 class AliFMDRawReader : public TTask 
26 {
27 public:
28   AliFMDRawReader(AliRawReader* reader, TTree* array);
29
30   virtual void Exec(Option_t* option="");
31 protected:
32   TTree*        fTree;       //! Pointer to tree to read into 
33   AliRawReader* fReader;     //! Pointer to raw reader 
34   UShort_t      fSampleRate; // The sample rate (if 0, inferred from data)
35   ClassDef(AliFMDRawReader, 0) // Read FMD raw data into a cache 
36 };
37
38 #endif
39 //____________________________________________________________________
40 //
41 // Local Variables:
42 //   mode: C++
43 // End:
44 //
45 // EOF
46 //