]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRawDecoder.h
Compilation warnings fixed. Functionality updated.
[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;
bafc1087 16class AliPHOSCalibData ;
b1a8a9cb 17
6d1f3e73 18class AliPHOSRawDecoder : public TObject
19{
a29c28b6 20
21public:
22
23 AliPHOSRawDecoder();
467957dc 24 AliPHOSRawDecoder(AliRawReader* rawReader, AliAltroMapping **mapping = NULL);
a29c28b6 25 AliPHOSRawDecoder(const AliPHOSRawDecoder& rawDecoder);
26 AliPHOSRawDecoder& operator = (const AliPHOSRawDecoder& rawDecoder);
27 virtual ~AliPHOSRawDecoder();
28
29 virtual Bool_t NextDigit();
30
a29c28b6 31 void SubtractPedestals(Bool_t subtract) {fPedSubtract=subtract;}
60144e5f 32 void SetAmpOffset(Int_t extPed=5){fAmpOffset=extPed ;}
f78c9781 33 void SetAmpThreshold(Int_t thr=5){fAmpThreshold=thr ;}
a29c28b6 34
f12d42ce 35 Double_t GetEnergy() const { return fEnergy; }
36 Double_t GetTime() const { return fTime; }
37 Double_t GetSampleQuality() const {return fQuality ;}
38 Double_t GetPedestalRMS() const {return fPedestalRMS ;}
39 Int_t GetModule() const { return fModule; }
40 Int_t GetColumn() const { return fColumn; }
41 Int_t GetRow() const { return fRow; }
42 Bool_t IsLowGain() const { return fLowGainFlag; }
43 Bool_t IsOverflow() const { return fOverflow ;}
a29c28b6 44
5e3c77d9 45 const AliRawReader* GetRawReader() const { return fRawReader; }
bafc1087 46 void SetCalibData(AliPHOSCalibData * cdata){ fCalibData=cdata ;}
5e3c77d9 47
a29c28b6 48protected:
49
7bc140a5 50 AliRawReader* fRawReader; // raw data reader
51 AliCaloRawStream* fCaloStream; // PHOS/EMCAL raw data stream
52 Bool_t fPedSubtract; // pedestals subtraction (kTRUE="yes")
a29c28b6 53
a29c28b6 54
7bc140a5 55 Double_t fEnergy; // "digit" energy
56 Double_t fTime; // "digit" time
70d93620 57 Double_t fQuality ; //Sample quality
3876e91d 58 Double_t fPedestalRMS; //calciulated RMS of pedestal (non-ZS runs)
60144e5f 59 Int_t fAmpOffset ; //Pedestal offset from ALTRO chips
f78c9781 60 Int_t fAmpThreshold ; //Zero Suppression threshold from ALTRO chips
7bc140a5 61 Int_t fModule; // PHOS module number (1-5)
62 Int_t fColumn; // column in the module
63 Int_t fRow; // row
39569d36 64 Int_t fNewModule; // PHOS module number (1-5) of keeped sample
65 Int_t fNewColumn; // column in the module of keeped sample
66 Int_t fNewRow; // row of keeped sample
67 Int_t fNewAmp ; //Keeped amp
68 Int_t fNewTime ; //Time of keeped sample
c5d477f8 69 Bool_t fLowGainFlag; //True if sample read from Low Gain
70 Bool_t fNewLowGainFlag; // fLowGainFlag of keeped sample
14100b90 71 Bool_t fOverflow ; //Wether there was overflow
72 TArrayI* fSamples; // array of samples
73 TArrayI* fTimes ; // array of times corresponding to samples
bafc1087 74 AliPHOSCalibData * fCalibData ; //! Calibration database if avalable
75
14100b90 76
6d1f3e73 77 ClassDef(AliPHOSRawDecoder,4)
a29c28b6 78};
79
80#endif