]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARTRawReader.h
Removing obsolete code (C.Cheshkov)
[u/mrichter/AliRoot.git] / START / AliSTARTRawReader.h
CommitLineData
ee74718b 1#ifndef ALISTARTRAWREADER_H
2#define ALISTARTRAWREADER_H
3
4#include <TTask.h>
5#include <Riostream.h>
db173afc 6#include "TTree.h"
7#include "AliSTARTdigit.h"
8#include "AliRawReader.h"
ee74718b 9
10class AliSTARTRawReader : public TTask {
11 public :
12
db173afc 13 AliSTARTRawReader(AliRawReader *rawReader, TTree* tree) ;
ee74718b 14
15 virtual ~AliSTARTRawReader();
16
17
4c7da157 18 Bool_t Next(); //read next raw digit
ee74718b 19
db173afc 20 protected :
ee74718b 21
db173afc 22 UInt_t fData; // data read for file
23 AliSTARTdigit* fDigits;
24 TTree* fTree;
ee74718b 25 AliRawReader* fRawReader; // object for reading the raw data
ee74718b 26
27 ClassDef(AliSTARTRawReader, 0) //class for reading START Raw data
28};
29
30#endif