]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDrawData.h
New version of SPD raw-data reconstruction. The format now correponds to the actual...
[u/mrichter/AliRoot.git] / TRD / AliTRDrawData.h
CommitLineData
5990c064 1#ifndef ALITRDRAWDATA_H
2#define ALITRDRAWDATA_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9// //
10// Converts TRD digits into a raw data stream //
11// //
12///////////////////////////////////////////////////////////////////////////////
13
14#include "TObject.h"
15
b864d801 16class TTree;
2cb20be6 17
b864d801 18class AliRawReader;
5990c064 19
2cb20be6 20class AliTRDdigitsManager;
21
5990c064 22class AliTRDrawData : public TObject {
23
24 public:
25
26 AliTRDrawData();
5990c064 27 virtual ~AliTRDrawData();
5990c064 28
b864d801 29 virtual Bool_t Digits2Raw(TTree *digits);
2cb20be6 30 virtual AliTRDdigitsManager* Raw2Digits(AliRawReader *rawReader);
5990c064 31
32 protected:
33
2745a409 34 ClassDef(AliTRDrawData,2) // TRD raw data class
5990c064 35
36};
37#endif