]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFcalib.h
Macro that generates Zero MisAlignment in ACORDE Geometry
[u/mrichter/AliRoot.git] / TOF / AliTOFcalib.h
1 #ifndef ALITOFCALIB_H
2 #define ALITOFCALIB_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 //////////////////////////////////////////////////////////////////
8 //  class for TOF calibration:: simulation of uncalibrated data //
9 //////////////////////////////////////////////////////////////////
10
11 #define CHENTRIESSMALL       300   // number of entries per TOF channel per run
12                                    // (to be divided by 3 to get the 
13                                    // real number of entries), smallarray 
14 #define MAXCHENTRIESSMALL  10000   // max number of entries per TOF channel 
15                                    // (to be divided by 3 to get the 
16                                    // real number of entries), smallarray 
17                                    
18 #define NIDXSMALL              3   // number of values stored 
19                                    // after Comb PID per ESD track
20 #define DELTAIDXTOT            0   // index for ToT in bigarray
21 #define DELTAIDXTIME           1   // index for TOF time in big/smallarray
22 #define DELTAIDXPID            2   // index for Exp Time after Comb PID 
23                                    // in smallarray
24 #define MEANENTRIES           15   // Mean number of entries per channel 
25                                    // to perform calibration
26
27 #include "TTask.h"
28
29 class TArrayF;
30 class TF1;
31 class TH1F;
32 class TObjArray;
33 class TTree;
34 class TChain;
35
36 //class AliESD;
37
38 class AliTOFCal;
39 class AliTOFRecoParam;
40
41 class AliTOFcalib:public TTask{
42 public:
43   AliTOFcalib();          // ctor
44   AliTOFcalib(const AliTOFcalib & calib); // copy constructor
45   AliTOFcalib& operator=(const AliTOFcalib & calib); // assignment operator
46   virtual ~AliTOFcalib() ; // dtor
47   void CreateCalArrays();
48   TObjArray * GetTOFCalArrayOnline() const {return fTOFCalOnline;}
49   TObjArray * GetTOFCalArrayOnlinePulser() const {return fTOFCalOnlinePulser;}
50   TObjArray * GetTOFCalArrayOnlineNoise() const {return fTOFCalOnlineNoise;}
51   TObjArray * GetTOFCalArrayOnlineHW() const {return fTOFCalOnlineHW;}
52   TObjArray * GetTOFCalArrayOffline() const {return fTOFCalOffline;}
53   TH1F * GetTOFSimToT() const {return fTOFSimToT;}
54   TTree * GetTOFCalibTree() const {return fTree;}
55   TChain * GetTOFCalibChain() const {return fChain;}
56   const char * GetOfflineValidity() const {return fkValidity;}
57   void SetOfflineValidity(const char* validity) {fkValidity = validity;}
58   Int_t NChannels()const{return fNChannels;}
59   // Methods to retrieve/write parameters from/on CDB
60   void WriteSimHistoOnCDB(Char_t *sel, Int_t minrun, Int_t maxrun, TH1F *histo);
61   void WriteParOnlineOnCDB(Char_t *sel, Int_t minrun, Int_t maxrun);
62   void WriteParOnlinePulserOnCDB(Char_t *sel, Int_t minrun, Int_t maxrun);
63   void WriteParOnlineNoiseOnCDB(Char_t *sel, Int_t minrun, Int_t maxrun);
64   void WriteParOnlineHWOnCDB(Char_t *sel, Int_t minrun, Int_t maxrun);
65   void WriteParOfflineOnCDB(Char_t *sel, const Char_t *validity, Int_t minrun, Int_t maxrun);
66   void WriteParOnlineOnCDB(Char_t *sel);
67   void WriteParOnlinePulserOnCDB(Char_t *sel);
68   void WriteParOnlineNoiseOnCDB(Char_t *sel);
69   void WriteParOnlineHWOnCDB(Char_t *sel);
70   void WriteParOfflineOnCDB(Char_t *sel, const Char_t *validity);
71   Bool_t ReadSimHistoFromCDB(Char_t *sel, Int_t nrun);
72   Bool_t ReadParOnlineFromCDB(Char_t *sel, Int_t nrun);
73   Bool_t ReadParOnlinePulserFromCDB(Char_t *sel, Int_t nrun);
74   Bool_t ReadParOnlineNoiseFromCDB(Char_t *sel, Int_t nrun);
75   Bool_t ReadParOnlineHWFromCDB(Char_t *sel, Int_t nrun);
76   Bool_t ReadParOfflineFromCDB(Char_t *sel, Int_t nrun);
77   void WriteRecParOnCDB(Char_t *sel, Int_t minrun, Int_t maxrun, AliTOFRecoParam *param);
78   AliTOFRecoParam * ReadRecParFromCDB(Char_t *sel, Int_t nrun);
79   void CreateTreeFromCDB(Int_t minrun, Int_t maxrun);
80   void CreateTreeFromFile(Int_t minrun, Int_t maxrun);
81   void CreateTreeFromGrid(Int_t minrun, Int_t maxrun);
82   void CreateChainFromGrid(Int_t minrun, Int_t maxrun);
83   Int_t Calibrate(Option_t *optionSave="", Option_t *optionFit="RQ");
84   Int_t Calibrate(Int_t nch,Int_t *ich, Option_t *optionSave="", Option_t *optionFit="RQ");
85   Int_t Calibrate(Int_t ichmin, Int_t ichmax, Option_t *optionSave="", Option_t *optionFit="RQ");
86   Int_t Calibrate(Int_t ich, Option_t *optionSave="", Option_t *optionFit="RQ");
87   Int_t CalibrateFromProfile(Int_t ich, Option_t *optionSave="", Option_t *optionFit="RQ");
88   TH1F* Profile(Int_t i);
89   Int_t FindBins (TH1F* h, Double_t *bins) const;
90   void SetNruns(Int_t nruns) {fNruns=nruns;}
91   Int_t GetNruns() const {return fNruns;}
92   void SetFirstRun(Int_t firstRun) {fFirstRun=firstRun;}
93   Int_t GetFirstRun() const {return fFirstRun;}
94   void SetLastRun(Int_t lastRun) {fLastRun=lastRun;}
95   Int_t GetLastRun() const {return fLastRun;}
96
97 private:
98   Int_t fNChannels; // number of TOF channels
99   TObjArray *fTOFCalOnline;       // array of AliTOFChannels storing calib parameters
100   TObjArray *fTOFCalOnlinePulser; // array of AliTOFChannels storing calib status from pulser
101   TObjArray *fTOFCalOnlineNoise;  // array of AliTOFChannels storing calib status from noise
102   TObjArray *fTOFCalOnlineHW;  // array of AliTOFChannels storing calib status from hardware
103   TObjArray *fTOFCalOffline;       // array of AliTOFChannels storing calib parameters
104   TH1F *fTOFSimToT;        // histo with realistic ToT signal from TB Data
105   const char *fkValidity;  // validity for offline calibration object
106   TTree *fTree;            // tree for TOF calibration
107   TChain *fChain;          // chain for TOF calibration
108   Int_t fNruns;            // number of runs to be processed
109   Int_t fFirstRun;            // first run for calibration obj validity
110   Int_t fLastRun;            // last run for calib obj validity
111
112   ClassDef(AliTOFcalib,6);
113 };
114
115 #endif // AliTOFcalib_H
116