]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCdataQA.h
Fix in documentation
[u/mrichter/AliRoot.git] / TPC / AliTPCdataQA.h
index 4ebd31034b323b3f41a83220263754752423c9bd..3c59e4b07c0476a639244bcfd056ce016383f57b 100644 (file)
@@ -38,74 +38,92 @@ public:
   Bool_t ProcessEvent(AliRawReader    *rawReader);
   Bool_t ProcessEvent(eventHeaderStruct   *event);
 
-  Int_t  Update(const Int_t isector, const Int_t iRow, const Int_t iPad,
-               const Int_t iTimeBin, const Float_t signal);
   void   Analyse();
   //
   //
   void SetPedestal(AliTPCCalPad *pedestalCal){ fPedestal = pedestalCal;}
   void SetNoise(AliTPCCalPad *noiseCal){ fNoise = noiseCal;}
 
-  AliTPCCalPad *GetMaxCharge(){ return fMaxCharge;}
-  AliTPCCalPad *GetMeanCharge(){ return fMeanCharge;}
-  AliTPCCalPad *GetNoThreshold(){ return fNoThreshold;}
-  AliTPCCalPad *GetOverThreshold0(){ return fOverThreshold0;}
-  AliTPCCalPad *GetOverThreshold5(){ return fOverThreshold5;}
-  AliTPCCalPad *GetOverThreshold10(){ return fOverThreshold10;}
-  AliTPCCalPad *GetOverThreshold20(){ return fOverThreshold20;}
-  AliTPCCalPad *GetOverThreshold30(){ return fOverThreshold30;}
+  AliTPCCalPad *GetNoThreshold() const { return fNoThreshold;}
+  AliTPCCalPad *GetMaxCharge() const { return fMaxCharge;}
+  AliTPCCalPad *GetMeanCharge() const { return fMeanCharge;}
+  AliTPCCalPad *GetNLocalMaxima() const { return fNLocalMaxima;}
+  AliTPCCalPad *GetOverThreshold10() const { return fOverThreshold10;}
+  AliTPCCalPad *GetOverThreshold20() const { return fOverThreshold20;}
+  AliTPCCalPad *GetOverThreshold30() const { return fOverThreshold30;}
+  AliTPCCalPad *GetNTimeBins() const { return fNTimeBins;}
+  AliTPCCalPad *GetNPads() const { return fNPads;}
+  AliTPCCalPad *GetTimePosition() const { return fTimePosition;}
 
   //
   AliTPCAltroMapping **GetAltroMapping() { return fMapping; };
   void  SetAltroMapping(AliTPCAltroMapping **mapp) { fMapping = mapp; };
   //
   //
-  Int_t GetFirstTimeBin() const { return fFirstTimeBin; }
-  Int_t GetLastTimeBin()  const { return fLastTimeBin;  }
-  Int_t GetAdcMin()       const { return fAdcMin;       }
-  Int_t GetAdcMax()       const { return fAdcMax;       }
-  void  SetRangeTime(Int_t tMin, Int_t tMax){ fFirstTimeBin=tMin; fLastTimeBin=tMax; }  // Set time bin range that is used for the pedestal calibration
+  Int_t  GetFirstTimeBin() const { return fFirstTimeBin; }
+  Int_t  GetLastTimeBin()  const { return fLastTimeBin;  }
+  Int_t  GetAdcMin()       const { return fAdcMin;       }
+  Int_t  GetAdcMax()       const { return fAdcMax;       }
+  Int_t  GetEventCounter() const { return fEventCounter; }
+  Bool_t GetOldRCUformat() const { return fOldRCUformat;   }
+  Bool_t GetIsAnalysed()   const { return fIsAnalysed;   }
+  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  SetOldRCUformat(Bool_t format=kTRUE) { fOldRCUformat = format; }
 
+
 private:
-  void UpdateSignalHistograms(const Int_t icsector, const Int_t icRow,
-                             const Int_t icPad, const Int_t icTimeBin,
-                             const Float_t signal);  
-  
+  Int_t Update(const Int_t iSector, const Int_t iRow, const Int_t iPad,
+              const Int_t iTimeBin, Float_t signal);
+  void  FindLocalMaxima(const Int_t iSector);
+
+  void MakeArrays();                // Create arrays for random data acces
+  void CleanArrays();               // Clean arrays for random data acces
+  void SetExpandDigit(const Int_t iRow, Int_t iPad, Int_t iTimeBin, 
+                     const Float_t signal); // Fill arrays with signals
+  void GetPadAndTimeBin(Int_t bin, Int_t& iPad, Int_t& iTimeBin); // Get pad and time bin corresponding to the 1d bin
+  Float_t GetQ(const Float_t* adcArray, const Int_t time,
+              const Int_t pad, const Int_t maxTimeBins, 
+              Int_t& timeMin,Int_t& timeMax,Int_t& padMin,Int_t& padMax);
+
   Int_t fFirstTimeBin;              //  First Time bin needed for analysis
   Int_t fLastTimeBin;               //  Last Time bin needed for analysis
   Int_t fAdcMin;                    //  min adc channel of pedestal value
   Int_t fAdcMax;                    //  max adc channel of pedestal value
   Bool_t  fOldRCUformat;            //! Should we use the old RCU format for data reading
-  
 
-  AliTPCROC *fROC;                  //! ROC information
   AliTPCAltroMapping **fMapping;    //! Altro Mapping object
   //
   //
   AliTPCCalPad * fPedestal;         //! option to set pedestal cal object
   AliTPCCalPad * fNoise;            //! option to set noise cal object
+  AliTPCCalPad * fNLocalMaxima;     // local maximas found
   AliTPCCalPad * fMaxCharge;        // max charge
   AliTPCCalPad * fMeanCharge;       // mean charge
   AliTPCCalPad * fNoThreshold;      // number of digits
-  AliTPCCalPad * fOverThreshold0;   // number of digits over threshold
-  AliTPCCalPad * fOverThreshold5;   // number of digits over threshold
-  AliTPCCalPad * fOverThreshold10;  // number of digits over threshold
-  AliTPCCalPad * fOverThreshold20;  // number of digits over threshold
-  AliTPCCalPad * fOverThreshold30;  //! number of digits over threshold
+  AliTPCCalPad * fNTimeBins;        // timebins width of cluster
+  AliTPCCalPad * fNPads;            // pads with of cluster
+  AliTPCCalPad * fTimePosition;     // Time position of local maximum
+  AliTPCCalPad * fOverThreshold10;  //! local maxima with qMax over threshold
+  AliTPCCalPad * fOverThreshold20;  //! local maxima with qMax over threshold
+  AliTPCCalPad * fOverThreshold30;  //! local maxima with qMax over threshold
 
   Int_t   fEventCounter;            // event Counter
-  Int_t   fSectorLast;              //! last sector with signal
-  Int_t   fRowLast;                 //! last row with signal
-  Int_t   fPadLast;                 //! last pad with signal
-  Int_t   fTimeBinLast;             //! last time bin with signal
-  Float_t fSignalLast;              //! last signal value
-  Int_t   fNAboveThreshold;         //! number of signals above threshold
+  Bool_t  fIsAnalysed;              // Set to true after Analyse has been called
+  //
+  //  Expand buffer
+  //
+  Float_t** fAllBins;              //! array for digit using random access
+  Int_t**   fAllSigBins;           //! array of pointers to the indexes over threshold
+  Int_t*    fAllNSigBins;          //! 
+  Int_t fRowsMax;                  //!  Maximum number of time bins
+  Int_t fPadsMax;                  //!  Maximum number of time bins
+  Int_t fTimeBinsMax;              //!  Maximum number of time bins
+
 
 public:
-  ClassDef(AliTPCdataQA, 1)  // Implementation of the TPC pedestal and noise calibration
+  ClassDef(AliTPCdataQA, 2)  // Implementation of the TPC pedestal and noise calibration
 };