]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawStreamSSD.h
Add the possibiloity to save cut settings in the ROOT file
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSSD.h
CommitLineData
2906f4c2 1#ifndef ALIITSRAWSTREAMSSD_H
2#define ALIITSRAWSTREAMSSD_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 SSD digits in raw data.
11///
12///////////////////////////////////////////////////////////////////////////////
13
14#include "AliITSRawStream.h"
15
16class AliRawReader;
17
18
19class AliITSRawStreamSSD: public AliITSRawStream {
20 public :
21 AliITSRawStreamSSD(AliRawReader* rawReader);
22 virtual ~AliITSRawStreamSSD() {};
23
24 virtual Bool_t Next();
25
26 Int_t GetSideFlag() const {return fCoord1;};
27 Int_t GetStrip() const {return fCoord2;};
28
2906f4c2 29 enum {kDDLsNumber = 16}; // number of DDLs in SSD
30 enum {kModulesPerDDL = 109}; // number of modules in each DDL
31
32 static Int_t GetModuleNumber(UInt_t iDDL, UInt_t iModule)
33 {return fgkDDLModuleMap[iDDL][iModule];}
34
38300302 35 protected :
2906f4c2 36 static const Int_t fgkDDLModuleMap[kDDLsNumber][kModulesPerDDL]; // mapping DDL/module -> module number
37
38 UInt_t fData; // data read for file
39
40 ClassDef(AliITSRawStreamSSD, 0) // class for reading ITS SSD raw digits
41};
42
43#endif