]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDCalibPadStatus.h
example macros for EVE analysis using new ListAnalyser (Ben)
[u/mrichter/AliRoot.git] / TRD / AliTRDCalibPadStatus.h
1 #ifndef ALITRDCALIBPADSTATUS_H
2 #define ALITRDCALIBPADSTATUS_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 //  TRD calibration class for online calibration                             //
11 //                                                                           //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 class TObjArray;
15 class TH2F;
16
17 class AliRawReader;
18
19 class AliTRDCalDet;
20 class AliTRDCalPad;
21 class AliTRDCalROC;
22 class AliTRDCalPadStatus;
23 class AliTRDrawStreamBase;
24 class AliTRDgeometry;
25
26 struct eventHeaderStruct;
27
28 class AliTRDCalibPadStatus : public TObject {
29
30 public:
31
32   AliTRDCalibPadStatus();
33   AliTRDCalibPadStatus(const AliTRDCalibPadStatus &ped);
34   virtual ~AliTRDCalibPadStatus();
35
36   AliTRDCalibPadStatus& operator = (const  AliTRDCalibPadStatus &source);
37
38   Int_t ProcessEvent(AliTRDrawStreamBase *rawStream, Bool_t nocheck = kFALSE);
39   Int_t ProcessEvent(AliRawReader    *rawReader, Bool_t nocheck = kFALSE);
40   Int_t ProcessEvent(const eventHeaderStruct   *event, Bool_t nocheck = kFALSE);
41
42   void  Destroy();
43   Int_t UpdateHisto(const Int_t idet, const Int_t iRow, const Int_t iCol,
44                     const Int_t signal, const Int_t crowMax, const Int_t ccold, const Int_t icMcm);
45
46   void AnalyseHisto();
47   AliTRDCalPadStatus *CreateCalPadStatus();
48   AliTRDCalPad *CreateCalPad();
49   AliTRDCalDet *CreateCalDet() const;
50
51   void SetCalRocMean(AliTRDCalROC *mean, Int_t det);
52   void SetCalRocRMS(AliTRDCalROC *rms, Int_t det);  
53
54   void SetCalRocMeand(AliTRDCalROC *mean, Int_t det);
55   void SetCalRocRMSd(AliTRDCalROC *rms, Int_t det);  
56
57   //
58   AliTRDCalROC* GetCalRocMean(Int_t det, Bool_t force=kFALSE);    // get calibration object
59   AliTRDCalROC* GetCalRocRMS(Int_t det, Bool_t force=kFALSE);     // get calibration object
60
61   AliTRDCalROC* GetCalRocMeand(Int_t det, Bool_t force=kFALSE);   // get calibration object
62   AliTRDCalROC* GetCalRocRMSd(Int_t det, Bool_t force=kFALSE);    // get calibration object
63
64   TH2F* GetHisto  (Int_t det, Bool_t force=kFALSE);              // get refernce histogram
65   
66   void  DumpToFile(const Char_t *filename, const Char_t *dir="", Bool_t append=kFALSE);
67   //
68   Int_t   GetAdcMin()       const { return fAdcMin;       }
69   Int_t   GetAdcMax()       const { return fAdcMax;       }
70
71   void    SetRangeAdc (Int_t aMin, Int_t aMax){ fAdcMin=aMin; fAdcMax=aMax; }  // Set adc range 
72
73
74   Bool_t TestEventHisto(Int_t nevent, Int_t sm, Int_t ch);  //test the fast approach to fill histograms  
75
76  private:
77
78   // Geometry
79   AliTRDgeometry  *fGeo;            //! The TRD geometry
80
81   Int_t fAdcMin;                    //  min adc channel of pedestal value
82   Int_t fAdcMax;                    //  max adc channel of pedestal value
83   Int_t fDetector;                  //  Current detector
84   Int_t fNumberOfTimeBins;          //  Current number of time bins
85      
86   TObjArray fCalRocArrayMean;       //  Array of AliTRDCalROC class for signal width calibration
87   TObjArray fCalRocArrayRMS;        //  Array of AliTRDCalROC class for mean width calibration
88
89   TObjArray fCalRocArrayMeand;      //  Array of AliTRDCalROC class for signal width calibration doubled
90   TObjArray fCalRocArrayRMSd;       //  Array of AliTRDCalROC class for mean width calibration doubled
91
92   TObjArray fHistoArray;            //  Array of histos for mean width calibration
93   
94  
95   AliTRDCalROC* GetCalRoc(Int_t det, TObjArray* arr, Bool_t force);
96  
97   TH2F* GetHisto(Int_t det, TObjArray *arr,
98                  Int_t nbinsY, Float_t ymin, Float_t ymax,
99                  const Char_t *type, Bool_t force);
100
101   // Some basic geometry function
102   virtual Int_t    GetLayer(Int_t d) const;
103   virtual Int_t    GetStack(Int_t d) const;
104   virtual Int_t    GetSector(Int_t d) const;
105
106   ClassDef(AliTRDCalibPadStatus,1)
107
108 };
109 #endif