]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCCalibCE.h
Merge rev 30296 from https://alisoft.cern.ch/AliRoot/branches/EVE-dev/EVE-root-trunk
[u/mrichter/AliRoot.git] / TPC / AliTPCCalibCE.h
index 8fb078c9841b293870c69bf79fbf83e24e99a465..11a5f7ccd186ff4231d20140638a8859a5b819ab 100644 (file)
@@ -10,7 +10,7 @@
 ////////////////////////////////////////////////////////////////////////////////////////
 
 #include <TVectorT.h>
-class TObjArray;
+#include <TObjArray.h>
 class TH1S;
 class TH2S;
 class TH1F;
@@ -23,6 +23,9 @@ class AliRawReader;
 class AliTPCRawStream;
 class AliTPCRawStreamFast;
 class TGraph;
+class AliTPCAltroMapping;
+class TMap;
+
 struct eventHeaderStruct;
 
 class AliTPCCalibCE : public TObject {
@@ -30,6 +33,7 @@ class AliTPCCalibCE : public TObject {
 public:
     AliTPCCalibCE();
     AliTPCCalibCE(const AliTPCCalibCE &sig);
+    AliTPCCalibCE(const TMap *config);
     virtual ~AliTPCCalibCE();
 
     AliTPCCalibCE& operator = (const  AliTPCCalibCE &source);
@@ -45,21 +49,36 @@ public:
     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();
+     //
+    AliTPCAltroMapping **GetAltroMapping() { return fMapping; };
+    void  SetAltroMapping(AliTPCAltroMapping **mapp) { fMapping = mapp; };
+
     //
     AliTPCCalROC* GetCalRocT0  (Int_t sector, Bool_t force=kFALSE);  // get calibration object - sector
+    AliTPCCalROC* GetCalRocT0Err(Int_t sector, Bool_t force=kFALSE);  // get calibration object - sector
     AliTPCCalROC* GetCalRocQ   (Int_t sector, Bool_t force=kFALSE);  // get calibration object - sector
     AliTPCCalROC* GetCalRocRMS(Int_t sector, Bool_t force=kFALSE);  // get calibration object - sector
     AliTPCCalROC* GetCalRocOutliers(Int_t sector, Bool_t force=kFALSE);  // get calibration object - sector
 
-    const TObjArray* GetCalPadT0()  const { return &fCalRocArrayT0; }      // get calibration object
-    const TObjArray* GetCalPadQ()   const { return &fCalRocArrayQ;  }      // get calibration object
-    const TObjArray* GetCalPadRMS() const { return &fCalRocArrayRMS;}      // get calibration object
+    const TObjArray* GetCalPadT0()    const { return &fCalRocArrayT0; }      // get calibration object
+    const TObjArray* GetCalPadT0Err() const { return &fCalRocArrayT0Err; }      // get calibration object
+    const TObjArray* GetCalPadQ()     const { return &fCalRocArrayQ;  }      // get calibration object
+    const TObjArray* GetCalPadRMS()   const { return &fCalRocArrayRMS;}      // get calibration object
     const TObjArray* GetCalPadOutliers() const { return &fCalRocArrayOutliers;}      // get calibration object
 
     TH2S* GetHistoQ  (Int_t sector, Bool_t force=kFALSE);           // get refernce histogram
     TH2S* GetHistoT0 (Int_t sector, Bool_t force=kFALSE);           // get refernce histogram
     TH2S* GetHistoRMS(Int_t sector, Bool_t force=kFALSE);           // get refernce histogram
 
+    Float_t GetMeanT0rms() const {return fMeanT0rms;}
+    Float_t GetMeanQrms() const {return fMeanQrms;}
+    Float_t GetMeanRMSrms() const {return fMeanRMSrms;}
+
+    Int_t   GetPeakDetectionMinus() const {return fPeakMinus;}
+    Int_t   GetPeakDetectionPlus()  const {return fPeakPlus;}
+    Float_t GetNnoiseThresholdMax() const {return fNoiseThresholdMax;}
+    Float_t GetNnoiseThresholdSum() const {return fNoiseThresholdSum;}
+
     TH1S* GetHistoTmean(Int_t sector, Bool_t force=kFALSE);           // get refernce histogram
 
     //needed here to merge ClibCE objects
@@ -82,22 +101,33 @@ public:
     void  SetRangeRefT0 (Int_t nBins, Float_t xMin, Float_t xMax){ fNbinsT0  = nBins; fXminT0  = xMin; fXmaxT0  = xMax; }   //Set range for T0 reference histograms
     void  SetRangeRefRMS(Int_t nBins, Float_t xMin, Float_t xMax){ fNbinsRMS = nBins; fXminRMS = xMin; fXmaxRMS = xMax; }   //Set range for T0 reference histograms
     //
+    void  SetRangePeakDetection(Int_t minus, Int_t plus) { fPeakMinus=minus; fPeakPlus=plus;}
+    void  SetNnoiseThresholdMax(Float_t n) {fNoiseThresholdMax=n;}
+    void  SetNnoiseThresholdSum(Float_t n) {fNoiseThresholdSum=n;}
+    //
     void  SetTimeStampEvent(Double_t timestamp){ fTimeStamp = timestamp; }
     void  SetRunNumber(Double_t eventnumber){ fRunNumber = eventnumber; }
 
     void  SetEventInfo(Double_t runNumber, Double_t timestamp, Double_t eventId){ fRunNumber=runNumber; fTimeStamp=timestamp; fEventId=eventId;}
 
-    void  SetOldRCUformat(Bool_t format=kTRUE){ fOldRCUformat = format; }
-
     void  SetDebugLevel(Short_t debug=1){ fDebugLevel = debug;}
 
     void  SetPedestalDatabase(AliTPCCalPad *pedestalTPC, AliTPCCalPad *padNoiseTPC) {fPedestalTPC = pedestalTPC; fPadNoiseTPC = padNoiseTPC;}
 
+    void  SetIsZeroSuppressed(Bool_t zs=kTRUE) { fIsZeroSuppressed=zs; }
+
+    void  SetSecRejectRatio(Float_t ratio) { fSecRejectRatio=ratio; }
+
     Int_t GetFirstTimeBin()   const { return fFirstTimeBin;  }
     Int_t GetLastTimeBin()    const { return fLastTimeBin;   }
 
     Int_t GetNeventsProcessed() const { return fNevents; }
 
+    Bool_t GetIsZeroSuppressed() const { return fIsZeroSuppressed; }
+
+    Float_t  GetSecRejectRatio() const { return fSecRejectRatio; }
+
+
     void Merge(AliTPCCalibCE *ce);
 
     TGraph *MakeGraphTimeCE(Int_t sector, Int_t xVariable=0, Int_t fitType=0, Int_t fitParameter=0);
@@ -118,12 +148,20 @@ private:
     Int_t   fNbinsRMS;                //  Number of bins for T0 reference histogram
     Float_t fXminRMS;                 //  xmin   of T0 reference histogram
     Float_t fXmaxRMS;                 //  xmax   of T0 reference histogram
+    Int_t   fPeakMinus;               //  Consecutive timebins on rising edge to be regarded as a signal
+    Int_t   fPeakPlus;                //  Consecutive timebins on falling edge to be regarded as a signal
+    Float_t fNoiseThresholdMax;       //  Analysis Treshold for signal finding: Max>fNoiseThresholdMax*PadNoise
+    Float_t fNoiseThresholdSum;       //  Analysis Treshold for signal finding: Sum>fNoiseThresholdSum*PadNoise
+
+    Bool_t  fIsZeroSuppressed;        //  If data is Zero Suppressed -> Don't subtrakt pedestals!
 
     Int_t     fLastSector;            //! Last sector processed
 
-    Bool_t  fOldRCUformat;            //! Should we use the old RCU format for data reading
+    Float_t   fSecRejectRatio;        //! Needed percentage of signals in one chamber. Below it will be rejected
+                                      //  This is neede if we do not process a laser event
 
     AliTPCROC   *fROC;                //! ROC information
+    AliTPCAltroMapping **fMapping;    //! Altro Mapping object
     AliTPCParam *fParam;              //! TPC information
 
     AliTPCCalPad *fPedestalTPC;       //! Pedestal Information whole TPC
@@ -132,6 +170,7 @@ private:
     AliTPCCalROC *fPadNoiseROC;       //! Pad noise Information for current ROC
 
     TObjArray fCalRocArrayT0;         //  Array of AliTPCCalROC class for Time0 calibration
+    TObjArray fCalRocArrayT0Err;      //  Array of AliTPCCalROC class for the error (rms) of Time0 calibration
     TObjArray fCalRocArrayQ;          //  Array of AliTPCCalROC class for Charge calibration
     TObjArray fCalRocArrayRMS;        //  Array of AliTPCCalROC class for signal width calibration
     TObjArray fCalRocArrayOutliers;   //  Array of AliTPCCalROC class for signal outliers
@@ -140,6 +179,10 @@ private:
     TObjArray fHistoT0Array;          //  Calibration histograms for Time0  distribution
     TObjArray fHistoRMSArray;         //  Calibration histograms for signal width distribution
 
+    Float_t   fMeanT0rms;             // mean of the rms of all pad T0  fits, used as error estimation of T0 results
+    Float_t   fMeanQrms;              // mean of the rms of all pad Q   fits, used as error estimation of Q results
+    Float_t   fMeanRMSrms;            // mean of the rms of all pad TMS fits, used as error estimation of RMS results
+
     TObjArray fHistoTmean;            //! Calibration histograms of the mean CE position for all sectors
 
     TObjArray fParamArrayEventPol1;   //  Store mean arrival time parameters for each sector event by event from global plane fit
@@ -148,6 +191,7 @@ private:
     TObjArray fQMeanArrayEvent;       //  Store mean arrival Charge for each sector event by event
     TVectorD  fVEventTime;            //  Timestamps of the events
     TVectorD  fVEventNumber;          //  Eventnumbers of the events
+//    TVectorD  fVTime0Side[2];         //  Mean Time0 for each side for all events
     Int_t     fNevents;               //  Event counter
     Double_t  fTimeStamp;             //! Timestamp of the current event
     Double_t  fEventId;               //! Event Id of the current event
@@ -159,36 +203,40 @@ private:
     TObjArray fPadRMSArrayEvent;      //! Signal width for the event, only needed for debugging streamer
     TObjArray fPadPedestalArrayEvent; //! Signal width for the event, only needed for debugging streamer
 
-    Int_t     fCurrentChannel;         //! current channel processed
-    Int_t     fCurrentSector;          //! current sector processed
-    Int_t     fCurrentRow;             //! current row processed
-    Float_t   fMaxPadSignal;           //! maximum bin of current pad
-    Int_t     fMaxTimeBin;             //! time bin with maximum value
-    TVectorF  fPadSignal;              //! signal of current Pad
-    Float_t   fPadPedestal;            //! Pedestal Value of current pad
-    Float_t   fPadNoise;               //! Noise Value of current pad
+    Int_t     fCurrentChannel;        //! current channel processed
+    Int_t     fCurrentSector;         //! current sector processed
+    Int_t     fCurrentRow;            //! current row processed
+    Float_t   fMaxPadSignal;          //! maximum bin of current pad
+    Int_t     fMaxTimeBin;            //! time bin with maximum value
+    TVectorF  fPadSignal;             //! signal of current Pad
+    Float_t   fPadPedestal;           //! Pedestal Value of current pad
+    Float_t   fPadNoise;              //! Noise Value of current pad
 
     TVectorD  fVTime0Offset;          //!  Time0 Offset for each sector;
     TVectorD  fVTime0OffsetCounter;   //!  Time0 Offset counter for each sector;
     TVectorD  fVMeanQ;                //!  Mean Q for each sector;
     TVectorD  fVMeanQCounter;         //!  Mean Q counter for each sector;
+
+    Float_t   fCurrentCETimeRef;      //! Time refernce of the current sector  
     //debugging
 //    Int_t fEvent;
     TTreeSRedirector *fDebugStreamer;  //! debug streamer
+    
 
     Short_t fDebugLevel;              // debug level
     //! debugging
 
     void   FindPedestal(Float_t part=.6);
+    void   UpdateCETimeRef(); //Get the time reference of the last valid measurement in sector
     void   FindCESignal(TVectorD &param, Float_t &qSum, const TVectorF maxima);
     void   FindLocalMaxima(TVectorF &maxima);
     Bool_t IsPeak(Int_t pos, Int_t tminus, Int_t tplus) const;
 
     TH2S* GetHisto(Int_t sector, TObjArray *arr,
                   Int_t nbinsY, Float_t ymin, Float_t ymax,
-                  Char_t *type, Bool_t force);
+                  const Char_t *type, Bool_t force);
     TH1S* GetHisto(Int_t sector, TObjArray *arr,
-                  Char_t *type, Bool_t force);
+                  const Char_t *type, Bool_t force);
 
     AliTPCCalROC* GetCalRoc(Int_t sector, TObjArray* arr, Bool_t force) const;
 
@@ -208,7 +256,7 @@ private:
     TVectorF* GetPadRMSEvent(Int_t sector, Bool_t force=kFALSE);
     TVectorF* GetPadPedestalEvent(Int_t sector, Bool_t force=kFALSE);
 
-    ClassDef(AliTPCCalibCE,3)  //Implementation of the TPC Central Electrode calibration
+    ClassDef(AliTPCCalibCE,7)  //Implementation of the TPC Central Electrode calibration
 
 };