]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FMD/AliFMDRawReader.h
Adding protected copy constructor and assignment operator
[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 // Note, that it uses an ALTRO reader, which is wrong. 
15 // Perhaps we need to implement it our selves
16 // 
17 #ifndef ROOT_TTask
18 # include <TTask.h>
19 #endif
20
21 //____________________________________________________________________
22 class AliRawReader;
23 class TTree;
24
25
26 //____________________________________________________________________
27 class AliFMDRawReader : public TTask 
28 {
29 public:
30   AliFMDRawReader(AliRawReader* reader, TTree* array);
31   virtual ~AliFMDRawReader() {}
32   virtual void Exec(Option_t* option="");
33 protected:
34   TTree*        fTree;       //! Pointer to tree to read into 
35   AliRawReader* fReader;     //! Pointer to raw reader 
36   UShort_t      fSampleRate; // The sample rate (if 0, inferred from data)
37   ClassDef(AliFMDRawReader, 0) // Read FMD raw data into a cache 
38 };
39
40 #endif
41 //____________________________________________________________________
42 //
43 // Local Variables:
44 //   mode: C++
45 // End:
46 //
47 // EOF
48 //