]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALRawStream.h
Removed loading non-existing library
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALRawStream.h
CommitLineData
f51151a0 1#ifndef ALIEMCALRAWSTREAM_H
2#define ALIEMCALRAWSTREAM_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 EMCAL digits in raw data.
11///
12///////////////////////////////////////////////////////////////////////////////
13
14// --- ROOT system ---
15
16// --- AliRoot header files ---
17#include "AliAltroRawStream.h"
18class AliRawReader;
19
20
21class AliEMCALRawStream: public AliAltroRawStream {
22
23public :
24
25 AliEMCALRawStream(AliRawReader* rawReader);
26
27 Int_t GetId() const {return fPad;};
56088960 28 Int_t GetModule() const {return fSector;}
f51151a0 29 Int_t GetPrevId() const {return fPrevPad;};
30 Int_t GetSignal() const {return fSignal;};
31 Int_t GetTime() const {return fTime;};
32 Bool_t IsNewId() const {return (GetId() != GetPrevId());};
33
34 ClassDef(AliEMCALRawStream, 0) // class for reading EMCAL raw digits
35 };
36
37#endif