]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCRawStream.h
Pass detElemId in the constructor from AliMUONRawCluster*
[u/mrichter/AliRoot.git] / TPC / AliTPCRawStream.h
CommitLineData
b27ca38e 1#ifndef ALITPCRAWSTREAM_H
2#define ALITPCRAWSTREAM_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6///////////////////////////////////////////////////////////////////////////////
7///
8/// This class provides access to TPC digits in raw data.
9///
10///////////////////////////////////////////////////////////////////////////////
11
12#include "AliAltroRawStream.h"
13
14class AliRawReader;
15class AliAltroMapping;
16
17class AliTPCRawStream: public AliAltroRawStream {
18 public :
19 AliTPCRawStream(AliRawReader* rawReader);
20 virtual ~AliTPCRawStream();
21
22 virtual void Reset();
23
24 protected :
25 AliTPCRawStream(const AliTPCRawStream& stream);
26 AliTPCRawStream& operator = (const AliTPCRawStream& stream);
27
28 virtual void ApplyAltroMapping();
29
30 AliAltroMapping *fMapping[6]; // Pointers to ALTRO mapping
31
32 ClassDef(AliTPCRawStream, 0) // base class for reading TPC raw digits
33};
34
35#endif