]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDRawReader.h
Migrated to a geometry implemented via AliFMDGeometry (derives from
[u/mrichter/AliRoot.git] / FMD / AliFMDRawReader.h
CommitLineData
e802be3e 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//
e802be3e 15#ifndef ROOT_TTask
16# include <TTask.h>
17#endif
18
19//____________________________________________________________________
20class AliRawReader;
1a1fdef7 21class TTree;
e802be3e 22
23
24//____________________________________________________________________
25class AliFMDRawReader : public TTask
26{
27public:
1a1fdef7 28 AliFMDRawReader(AliRawReader* reader, TTree* array);
e802be3e 29
30 virtual void Exec(Option_t* option="");
e802be3e 31protected:
1a1fdef7 32 TTree* fTree; //! Pointer to tree to read into
e802be3e 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//