]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCCalibPedestal.h
1.
[u/mrichter/AliRoot.git] / TPC / AliTPCCalibPedestal.h
CommitLineData
8bc7e885 1#ifndef ALITPCCALIBPEDESTAL_H
2#define ALITPCCALIBPEDESTAL_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
f1b14fa2 6#include <TObjArray.h>
880c3382 7#include "AliTPCCalibRawBase.h"
8bc7e885 8
bdf99a93 9class TArrayF;
8bc7e885 10class TH2F;
8bc7e885 11class TTreeSRedirector;
12class AliTPCROC;
bc331d5b 13class AliTPCCalROC;
a7dce0bc 14class AliTPCRawStream;
08205ed7 15class AliTPCRawStreamFast;
aa983e4f 16class AliRawReader;
4958b652 17class AliTPCAltroMapping;
ac940b58 18class TMap;
8bc7e885 19
bdf99a93 20struct eventHeaderStruct;
8bc7e885 21
880c3382 22class AliTPCCalibPedestal : public AliTPCCalibRawBase {
8bc7e885 23
24public:
25 AliTPCCalibPedestal();
bc331d5b 26 AliTPCCalibPedestal(const AliTPCCalibPedestal &ped);
ac940b58 27 AliTPCCalibPedestal(const TMap *config);
8bc7e885 28 virtual ~AliTPCCalibPedestal();
bc331d5b 29
30 AliTPCCalibPedestal& operator = (const AliTPCCalibPedestal &source);
31
880c3382 32 virtual Int_t Update(const Int_t isector, const Int_t iRow, const Int_t iPad,
bdf99a93 33 const Int_t iTimeBin, const Float_t signal);
880c3382 34 virtual void Analyse();
8bc7e885 35 //
4958b652 36 AliTPCAltroMapping **GetAltroMapping() { return fMapping; };
37 void SetAltroMapping(AliTPCAltroMapping **mapp) { fMapping = mapp; };
38 //
bc331d5b 39 AliTPCCalROC* GetCalRocPedestal (Int_t sector, Bool_t force=kFALSE); // get calibration object - sector
1542c62d 40 AliTPCCalROC* GetCalRocSigma(Int_t sector, Bool_t force=kFALSE); // get calibration object - sector
bc331d5b 41 const TObjArray* GetCalPadPedestal (){return &fCalRocArrayPedestal;} // get calibration object
1542c62d 42 const TObjArray* GetCalPadSigma(){return &fCalRocArraySigma;} // get calibration object
43
44 AliTPCCalROC* GetCalRocMean (Int_t sector, Bool_t force=kFALSE); // get calibration object - sector
45 AliTPCCalROC* GetCalRocRMS(Int_t sector, Bool_t force=kFALSE); // get calibration object - sector
46 const TObjArray* GetCalPadMean (){return &fCalRocArrayMean;} // get calibration object
bc331d5b 47 const TObjArray* GetCalPadRMS(){return &fCalRocArrayRMS;} // get calibration object
aa983e4f 48
bc331d5b 49 TH2F* GetHistoPedestal (Int_t sector, Bool_t force=kFALSE); // get refernce histogram
8bc7e885 50 //
bdf99a93 51 void SetTimeAnalysis(Bool_t time = kTRUE); // Use ONLY in TPCPEDESTALda on LDC for one sector!
52 void AnalyseTime(Int_t nevents); // Makes sense only in TPCPEDESTALda on LDC!
53 TArrayF **GetTimePedestals() const { return fTimeSignal; } // Get array with time dependent pedestals (for one sector!)
54 //
1542c62d 55 Int_t GetAdcMin() const { return fAdcMin; }
56 Int_t GetAdcMax() const { return fAdcMax; }
57 Float_t GetAnaMeanDown() const { return fAnaMeanDown; }
58 Float_t GetAnaMeanUp() const { return fAnaMeanUp; }
59
aa983e4f 60 void SetRangeAdc (Int_t aMin, Int_t aMax){ fAdcMin=aMin; fAdcMax=aMax; } // Set adc range for the pedestal calibration
1542c62d 61 void SetAnalysisTruncationRange(Float_t down, Float_t up) {fAnaMeanDown=down; fAnaMeanUp=up;} //Set range for truncated mean analysis of the channel information
8bc7e885 62
bdf99a93 63 void Merge(AliTPCCalibPedestal *ped);
8bc7e885 64
bdf99a93 65 Bool_t TestEvent(); // Test the fast approach to fill histogram - used for test purposes
8bc7e885 66
67private:
8bc7e885 68 Int_t fAdcMin; // min adc channel of pedestal value
69 Int_t fAdcMax; // max adc channel of pedestal value
bdf99a93 70
1542c62d 71 Float_t fAnaMeanDown; // Truncated mean channel analysis - lower cut
72 Float_t fAnaMeanUp; // Truncated mean channel analysis - upper cut
73
bdf99a93 74 Bool_t fTimeAnalysis; //! Should we use the time dependent analysis? ONLY ON LDC!
a7dce0bc 75
1542c62d 76 TObjArray fCalRocArrayPedestal; // Array of AliTPCCalROC class for pedestal values from gaus fit
77 TObjArray fCalRocArraySigma; // Array of AliTPCCalROC class for noise values from gaus fit
bdf99a93 78
8bc7e885 79 TObjArray fHistoPedestalArray; // Calibration histograms for Pedestal distribution
bdf99a93 80
81 TArrayF **fTimeSignal; //! Arrays which hold time dependent signals
1542c62d 82
83 TObjArray fCalRocArrayMean; // Array of AliTPCCalROC class for pedestal values, simple mean
84 TObjArray fCalRocArrayRMS; // Array of AliTPCCalROC class for noise values, simple rms
bdf99a93 85
bc331d5b 86 TH2F* GetHisto(Int_t sector, TObjArray *arr,
8bc7e885 87 Int_t nbinsY, Float_t ymin, Float_t ymax,
a6e0ebfe 88 const Char_t *type, Bool_t force);
bdf99a93 89
8bc7e885 90 AliTPCCalROC* GetCalRoc(Int_t sector, TObjArray* arr, Bool_t force);
91
92public:
880c3382 93 ClassDef(AliTPCCalibPedestal, 7) // Implementation of the TPC pedestal and noise calibration
8bc7e885 94};
95
96
97
98#endif
99