]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCdataQA.h
Fixes a small problem with finding clusters close to the Z ends
[u/mrichter/AliRoot.git] / TPC / AliTPCdataQA.h
index 866a1e0a53f2ef301696ea8ae5f4887f64cd90f5..7b35a245050a5ed8960b537cb0965142b8c27408 100644 (file)
@@ -6,17 +6,18 @@
 
 
 #include <TH1F.h>
-class TProfile;
+#include <TProfile.h>
+#include <TProfile2D.h>
 #include "AliRecoParam.h"
 
-class TArrayF;
+#include <TArray.h>
+
 class TH2F;
 class TTreeSRedirector;
 class AliTPCROC;
 class AliTPCCalROC;
 class AliTPCRawStream;
 class AliTPCRawStreamV3;
-class AliTPCRawStreamFast;
 class AliRawReader;
 class AliTPCAltroMapping;
 class AliTPCCalPad;
@@ -27,7 +28,6 @@ class AliTPCdataQA : public TH1F {
 
 public:
   AliTPCdataQA();
-  AliTPCdataQA(AliRecoParam::EventSpecie_t es);
   AliTPCdataQA(const AliTPCdataQA &ped);
   AliTPCdataQA(const TMap *config);
   virtual ~AliTPCdataQA();
@@ -37,8 +37,6 @@ public:
  void MakeTree(const char *fname="QApad.root") const;
 
   //
-  Bool_t ProcessEventFast(AliTPCRawStreamFast *const rawStreamFast);
-  Bool_t ProcessEventFast(AliRawReader        *const rawReader);
   Bool_t ProcessEvent(AliTPCRawStream *const rawStream);
   Bool_t ProcessEvent(AliTPCRawStreamV3 *const rawStreamV3);
   Bool_t ProcessEvent(AliRawReader    *const rawReader);
@@ -51,6 +49,11 @@ public:
   void SetPedestal(AliTPCCalPad *const pedestalCal){ fPedestal = pedestalCal;}
   void SetNoise(AliTPCCalPad *const noiseCal){ fNoise = noiseCal;}
 
+  // DQM methods
+  void FillOccupancyProfile();
+  void ResetProfiles();
+
+
   AliTPCCalPad *GetNoThreshold() const { return fNoThreshold;}
   AliTPCCalPad *GetMaxCharge() const { return fMaxCharge;}
   AliTPCCalPad *GetMeanCharge() const { return fMeanCharge;}
@@ -70,6 +73,12 @@ public:
   TH1F*     GetHistOccupancyVsEvent();
   TH1F*     GetHistNclustersVsEvent();
 
+  // DQM output
+  TProfile* GetHistOccVsSector()  const { return fHistOccVsSector; }
+  TProfile2D* GetHistOcc2dVsSector() const { return fHistOcc2dVsSector; }
+  TProfile* GetHistQVsSector()    const { return fHistQVsSector; }
+  TProfile* GetHistQmaxVsSector() const { return fHistQmaxVsSector; }
+
   //
   AliTPCAltroMapping **GetAltroMapping() const { return fMapping; };
   void  SetAltroMapping(AliTPCAltroMapping **mapp) { fMapping = mapp; };
@@ -86,14 +95,21 @@ public:
   Int_t  GetSignalCounter()  const { return fSignalCounter; }
   Int_t  GetClusterCounter() const { return fClusterCounter;}
 
+  // DQM getter
+  Bool_t    GetIsDQM() const { return fIsDQM; }
+
   void  SetRangeTime(Int_t tMin, Int_t tMax){ fFirstTimeBin=tMin; fLastTimeBin=tMax;}  // Set time bin range that is used for the pedestal calibration
   void  SetRangeAdc (Int_t aMin, Int_t aMax){ fAdcMin=aMin; fAdcMax=aMax; }  // Set adc range for the pedestal calibration
   void  SetMaxEvents   (Int_t value) { fMaxEvents = value; }
   void  SetEventsPerBin(Int_t value) { fEventsPerBin = value; }
+  
+  // DQM setter
+  void  SetIsDQM(Bool_t value) { fIsDQM = value; }
 
 private:
   Int_t Update(const Int_t iSector, const Int_t iRow, const Int_t iPad,
-              const Int_t iTimeBin, Float_t signal);
+              const Int_t iTimeBin, Float_t signal,
+              const Int_t iPatch=-1, const Int_t iBranch=-1);
   void  FindLocalMaxima(const Int_t iSector);
 
   void MakeArrays();                // Create arrays for random data acces
@@ -152,6 +168,18 @@ private:
   Int_t fPadsMax;                  //!  Maximum number of time bins
   Int_t fTimeBinsMax;              //!  Maximum number of time bins
 
+  // DQM variables
+  Bool_t fIsDQM;                   //!  Is DQM -> Simple output (no 2D!)
+  TProfile* fHistOccVsSector;      //!  Occ vs sector (for DQM only)
+  TProfile2D* fHistOcc2dVsSector;  //!  Occ vs sector 2D (for DQM only)
+  TProfile* fHistQVsSector;        //!  Q vs sector (for DQM only)
+  TProfile* fHistQmaxVsSector;     //!  QMax vs sector (for DQM only)
+  TArrayD* fOccVec;                //!  Occupancy help counter for DQM
+  TArrayD* fOccMaxVec;             //!  Occupancy help normlization for DQM
+  TArrayD* fOccVecFine;            //!  "2D" occupancy help counter for DQM
+  TArrayD* fOccMaxVecFine;         //!  "2D" occupancy help normlization for DQM
+  
+
   ClassDef(AliTPCdataQA, 5)  // Implementation of the TPC Raw QA
 };