]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRawDecoder.h
No optimization with gcc 4.3.0
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRawDecoder.h
CommitLineData
a29c28b6 1#ifndef ALIPHOSRAWDECODER_H
2#define ALIPHOSRAWDECODER_H
3/* Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
7bc140a5 6/* $Id$ */
7
a29c28b6 8// This class extracts the PHOS "digits" of current event
9// (amplitude,time, position,gain) from the raw stream
10// provided by AliRawReader. See cxx source for use case.
11
a29c28b6 12#include "AliCaloRawStream.h"
13
b1a8a9cb 14class TArrayI;
c5d477f8 15class AliRawReader;
b1a8a9cb 16
a29c28b6 17class AliPHOSRawDecoder {
18
19public:
20
21 AliPHOSRawDecoder();
467957dc 22 AliPHOSRawDecoder(AliRawReader* rawReader, AliAltroMapping **mapping = NULL);
a29c28b6 23 AliPHOSRawDecoder(const AliPHOSRawDecoder& rawDecoder);
24 AliPHOSRawDecoder& operator = (const AliPHOSRawDecoder& rawDecoder);
25 virtual ~AliPHOSRawDecoder();
26
27 virtual Bool_t NextDigit();
28
a29c28b6 29 void SubtractPedestals(Bool_t subtract) {fPedSubtract=subtract;}
30
c5d477f8 31 const Double_t GetEnergy() const { return fEnergy; }
32 const Double_t GetTime() const { return fTime; }
33 const Double_t GetSampleQuality() const {return fQuality ;}
34 const Int_t GetModule() const { return fModule; }
35 const Int_t GetColumn() const { return fColumn; }
36 const Int_t GetRow() const { return fRow; }
37 const Bool_t IsLowGain() const { return fLowGainFlag; }
38 const Bool_t IsOverflow() const { return fOverflow ;}
a29c28b6 39
5e3c77d9 40 const AliRawReader* GetRawReader() const { return fRawReader; }
41
a29c28b6 42protected:
43
7bc140a5 44 AliRawReader* fRawReader; // raw data reader
45 AliCaloRawStream* fCaloStream; // PHOS/EMCAL raw data stream
46 Bool_t fPedSubtract; // pedestals subtraction (kTRUE="yes")
a29c28b6 47
a29c28b6 48
7bc140a5 49 Double_t fEnergy; // "digit" energy
50 Double_t fTime; // "digit" time
70d93620 51 Double_t fQuality ; //Sample quality
7bc140a5 52 Int_t fModule; // PHOS module number (1-5)
53 Int_t fColumn; // column in the module
54 Int_t fRow; // row
39569d36 55 Int_t fNewModule; // PHOS module number (1-5) of keeped sample
56 Int_t fNewColumn; // column in the module of keeped sample
57 Int_t fNewRow; // row of keeped sample
58 Int_t fNewAmp ; //Keeped amp
59 Int_t fNewTime ; //Time of keeped sample
c5d477f8 60 Bool_t fLowGainFlag; //True if sample read from Low Gain
61 Bool_t fNewLowGainFlag; // fLowGainFlag of keeped sample
14100b90 62 Bool_t fOverflow ; //Wether there was overflow
63 TArrayI* fSamples; // array of samples
64 TArrayI* fTimes ; // array of times corresponding to samples
65
a29c28b6 66 ClassDef(AliPHOSRawDecoder,1)
67};
68
69#endif