]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDclusterizer.h
Fix compiler warnings (Theodor)
[u/mrichter/AliRoot.git] / TRD / AliTRDclusterizer.h
index ab3089c96c5337bc965c002f50599aa402b8c395..ee10beaf3fe43fdc5f5bdd1d474c9bcd807af9d4 100644 (file)
 
 /* $Id$ */
 
+////////////////////////////////////////////////////////////////////////////
+//                                                                        //
+//  TRD cluster finder                                                    //
+//                                                                        //
+////////////////////////////////////////////////////////////////////////////
+
 #include <TNamed.h>
-#include <TFile.h>
 
-///////////////////////////////////////////////////////
-//  Finds and handles cluster                        //
-///////////////////////////////////////////////////////
+class TFile;
+class TTree;
+class TClonesArray;
+
+class AliRunLoader;
+class AliRawReader;
+
+class AliTRD;
+class AliTRDcluster;
 
-class AliTRDclusterizer : public TNamed {
+class AliTRDarrayADC;
+class AliTRDarraySignal;
+class AliTRDdigitsManager;
+class AliTRDSignalIndex;
+class AliTRDtransform;
+class AliTRDCalROC;
+class AliTRDReconstructor;
+class AliTRDCalSingleChamberStatus;
+
+class AliTRDclusterizer : public TNamed 
+{
 
  public:
 
-  AliTRDclusterizer();
-  AliTRDclusterizer(const Text_t* name, const Text_t* title);
-  AliTRDclusterizer(AliTRDclusterizer &c);
-  virtual ~AliTRDclusterizer();
+  // steering flags
+  enum{
+    kIsHLT = BIT(12),    //  are we just in HLT?
+    kIsLUT = BIT(13),    //  are we using look up table for center of the cluster?
+    kOwner = BIT(14),    //  is the clusterizer owner of the clusters?
+    kAddLabels  = BIT(15)   //  Should clusters have MC labels?
+  };
+
+  struct MaxStruct
+  {
+    Int_t       Row;
+    Int_t       Col;
+    Int_t       Time;
+    UChar_t     padStatus;
+    Short_t     Signals[3];
+    Bool_t      FivePad;
+  MaxStruct():Row(-1),Col(0),Time(0),padStatus(0),FivePad(kFALSE)
+      {}
+    MaxStruct &operator=(const MaxStruct &a)
+    {Row=a.Row; Col=a.Col; Time=a.Time; padStatus=a.padStatus; FivePad=a.FivePad;
+     memcpy(Signals, a.Signals, 3*sizeof(Signals[0])); return *this;}
+  };
   
-  inline  AliTRDclusterizer &operator=(AliTRDclusterizer &c);
-  virtual void    Copy(AliTRDclusterizer &c);
-  virtual void    Init();
-  virtual Bool_t  Open(const Char_t *name, Int_t nEvent = 0);
-  virtual Bool_t  MakeCluster() = 0;
-  virtual Bool_t  WriteCluster();
+  AliTRDclusterizer(const AliTRDReconstructor *const rec = 0x0);
+  AliTRDclusterizer(const Text_t* name, const Text_t* title, const AliTRDReconstructor *const rec = 0x0);
+  AliTRDclusterizer(const AliTRDclusterizer &c);
+  virtual         ~AliTRDclusterizer();
+  AliTRDclusterizer &operator=(const AliTRDclusterizer &c);
+
+  void     Copy(TObject &c) const;
+
+  Bool_t   Open(const Char_t *name, Int_t nEvent = 0);
+  Bool_t   OpenInput(Int_t nEvent = 0);
+  Bool_t   OpenOutput();
+  Bool_t   OpenOutput(TTree *clusterTree);
+
+  Bool_t   ReadDigits();
+  Bool_t   ReadDigits(AliRawReader *rawReader);
+  Bool_t   ReadDigits(TTree *digitsTree);
+
+  Bool_t   WriteClusters(Int_t det);
+  void     ResetRecPoints();
+  virtual TClonesArray    *RecPoints();
+  Bool_t   WriteTracklets(Int_t det);
+
+  Bool_t   Raw2Clusters(AliRawReader *rawReader);
+  Bool_t   Raw2ClustersChamber(AliRawReader *rawReader);
+
+  Bool_t   MakeClusters();
+  Bool_t   MakeClusters(Int_t det);
+
+  Bool_t   AddLabels();
+  Bool_t   SetAddLabels(const Bool_t kset) { SetBit(kAddLabels, kset); return TestBit(kAddLabels);  } // should we assign labels to clusters
+  void     SetRawVersion(const Int_t iver) { fRawVersion = iver; } // set the expected raw data version
+  void             SetReconstructor(const AliTRDReconstructor *rec) {fReconstructor = rec;}
+  static UChar_t   GetStatus(Short_t &signal);
+  Int_t            GetAddedClusters() {return fNoOfClusters;}
+
+  Bool_t   IsClustersOwner() const {return TestBit(kOwner);}
+  virtual void     SetClustersOwner(Bool_t own=kTRUE) {SetBit(kOwner, own); if(!own) {fRecPoints = 0x0; fNoOfClusters=0;} }
 
  protected:
 
-  TFile   *fInputFile;             //! AliROOT input file
+  void             DeConvExp (const Double_t *const source, Double_t *const target
+                            ,const Int_t nTimeTotal, const Int_t nexp);
+  void             TailCancelation();
+
+  Float_t  Unfold(Double_t eps, Int_t layer, Double_t *padSignal) const;
+  Double_t GetCOG(Double_t signal[5]) const; 
+  void             FillLUT();
+  Double_t LUTposition(Int_t ilayer, Double_t ampL, Double_t ampC, Double_t ampR) const;
   
-  Int_t    fEvent;                 //! Event number
+  void             SetPadStatus(const UChar_t status, UChar_t &encoding);
+  UChar_t          GetPadStatus(UChar_t encoding) const;
+  Int_t            GetCorruption(UChar_t encoding) const;
 
-  ClassDef(AliTRDclusterizer,1)    // TRD-Cluster manager base class
+  Bool_t           IsMaximum(const MaxStruct &Max, UChar_t &padStatus, Short_t *const Signals);       //for const correctness reasons not const parameters are given separately
+  Bool_t           FivePadCluster(MaxStruct &ThisMax, MaxStruct &NeighbourMax);
+  void             CreateCluster(const MaxStruct &Max); 
+  inline void      CalcAdditionalInfo(const MaxStruct &Max, Short_t *const signals, Int_t &nPadCount);
+  virtual void     AddClusterToArray(AliTRDcluster *cluster);
 
-};
+  const AliTRDReconstructor *fReconstructor; //! reconstructor
+  AliRunLoader        *fRunLoader;           //! Run Loader
+  TTree               *fClusterTree;         //! Tree with the cluster
+  TClonesArray        *fRecPoints;           //! Array of clusters
 
-//_____________________________________________________________________________
-AliTRDclusterizer &AliTRDclusterizer::operator=(AliTRDclusterizer &c)
-{
-  //
-  // Assignment operator
-  //
+  TTree               *fTrackletTree;        //! Tree for tracklets
+
+  AliTRDdigitsManager *fDigitsManager;       //! TRD digits manager
 
-  if (this != &c) c.Copy(*this);
-  return *this;
+  UInt_t              **fTrackletContainer;  //! tracklet container
 
-}
+  Int_t                fRawVersion;          //  Expected raw version of the data - default is 2
+
+  AliTRDtransform     *fTransform;           //! Transforms the reconstructed space points
+
+  Int_t                fLUTbin;              //  Number of bins of the LUT
+  Double_t            *fLUT;                 //! The lookup table
+
+  AliTRDarrayADC      *fDigits;               // Array holding the digits
+  AliTRDSignalIndex   *fIndexes;              // Array holding the indexes to the digits
+  Float_t              fADCthresh;            // ADC thresholds: There is no ADC threshold anymore, and simParam should not be used in clusterizer. KO
+  Float_t              fMaxThresh;            // Threshold value for the maximum
+  Float_t              fSigThresh;            // Threshold value for the digit signal
+  Float_t              fMinMaxCutSigma;       // Threshold value for the maximum (cut noise)
+  Float_t              fMinLeftRightCutSigma; // Threshold value for the sum pad (cut noise)
+  Int_t                fLayer;                // Current layer of the detector
+  Int_t                fDet;                  // Current detecor
+  UShort_t             fVolid;                // Volume ID
+  Int_t                fColMax;               // Number of Colums in one detector
+  Int_t                fTimeTotal;            // Number of time bins
+  AliTRDCalROC        *fCalGainFactorROC;     // Calibration object with pad wise values for the gain factors
+  Float_t              fCalGainFactorDetValue;// Calibration value for chamber wise noise
+  AliTRDCalROC        *fCalNoiseROC;          // Calibration object with pad wise values for the noise
+  Float_t              fCalNoiseDetValue;     // Calibration value for chamber wise noise
+  AliTRDCalSingleChamberStatus *fCalPadStatusROC; // Calibration object with the pad status
+  Int_t                fClusterROC;           // The index to the first cluster of a given ROC
+  Int_t                firstClusterROC;       // The number of cluster in a given ROC
+  Int_t                fNoOfClusters;         // Number of Clusters already processed and still owned by the clusterizer
+
+  ClassDef(AliTRDclusterizer,6)               //  TRD clusterfinder
+
+};
 
 #endif