]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawStreamSPD.h
New detector numbering scheme (common for DAQ/HLT/Offline). All the subdetectors...
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSPD.h
CommitLineData
2906f4c2 1#ifndef ALIITSRAWSTREAMSPD_H
2#define ALIITSRAWSTREAMSPD_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/// This class provides access to ITS SPD digits in raw data.
11///
12///////////////////////////////////////////////////////////////////////////////
13
14#include "AliITSRawStream.h"
15
16
17class AliITSRawStreamSPD: public AliITSRawStream {
18 public :
19 AliITSRawStreamSPD(AliRawReader* rawReader);
20 virtual ~AliITSRawStreamSPD() {};
21
22 virtual Bool_t Next();
23
24 Int_t GetRow() const {return fCoord2;};
25 Int_t GetColumn() const {return fCoord1;};
26
2906f4c2 27 enum {kDDLsNumber = 20}; // number of DDLs in SPD
28 enum {kModulesPerDDL = 12}; // number of modules in each DDL
29
30 static Int_t GetModuleNumber(UInt_t iDDL, UInt_t iModule)
31 {return fgkDDLModuleMap[iDDL][iModule];}
32
33 private :
34 static const Int_t fgkDDLModuleMap[kDDLsNumber][kModulesPerDDL]; // mapping DDL/module -> module number
35
36 UShort_t fData; // data read for file
37 Int_t fDDLNumber; // current DDL number
38 Int_t fEventNumber; // event trigger number
39 Int_t fModuleNumber; // sequential module number
40 UInt_t fOffset; // offset for cell column
41 UInt_t fHitCount; // counter of hits
42
43 ClassDef(AliITSRawStreamSPD, 0) // class for reading ITS SPD raw digits
44};
45
46#endif