]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSPIDv1.h
Fix compiler problems
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPIDv1.h
index aef74e25986d4957d7bf36f2821c75b4a9a16957..5192cf6f2866dc46e2590432bd7f6e38f56687fc 100644 (file)
@@ -5,6 +5,10 @@
 
 /* $Id$ */
 
+/* History of cvs commits:
+ *
+ * $Log$
+ */
 
 //_________________________________________________________________________
 // Implementation version v1 of the PHOS particle identifier 
 class TVector3 ;
 class TMatrix ;
 class TPrincipal ;
-
+class TROOT ;
+class TTree ;
+class TCanvas ;
+class TFolder ;
+class TMatrixD ;
+class TFormula;
 // --- Standard library ---
-
 // --- AliRoot header files ---
 class AliPHOSEmcRecPoint ;
-class AliPHOSRecPoint ;
+class AliPHOSCpvRecPoint ;
+class AliPHOSClusterizerv1 ;
+class AliPHOSTrackSegmentMakerv1 ;
 
 #include "AliPHOSPID.h"
-
+#include "AliPID.h"
 class  AliPHOSPIDv1 : public AliPHOSPID {
   
 public:
   
-  AliPHOSPIDv1() ;          // ctor            
-  AliPHOSPIDv1(const char* headerFile, const char * tsBranch = "Default", const Bool_t toSplit=kFALSE) ;
-  AliPHOSPIDv1(AliPHOSPIDv1 & pid) ;          // cpy ctor            
+  AliPHOSPIDv1() ;          // ctor   
+  AliPHOSPIDv1(const TString alirunFileNameFile, const TString eventFolderName = AliConfig::GetDefaultEventFolderName()) ;
+  AliPHOSPIDv1(const AliPHOSPIDv1 & pid) ;          // cpy ctor            
   
   virtual ~AliPHOSPIDv1() ; // dtor
   
-  virtual void Exec(Option_t * option) ;
+  virtual void Exec(Option_t *option);  // Does the job
 
   //Get file name that contain the PCA
   const TString GetFileNamePrincipal(TString particle) const;
@@ -44,20 +54,29 @@ public:
   const TString GetFileNameParameters()      const {return fFileNameParameters ;}
 
   // Get number of rec.particles in this run
-  virtual const Int_t GetRecParticlesInRun() const {return fRecParticlesInRun ;}  
+  virtual Int_t GetRecParticlesInRun() const {return fRecParticlesInRun ;}  
+
 
   // Get PID parameters as they are defined in fParameters
-  const Float_t GetParameterCalibration    (Int_t i)               const;
-  const Float_t GetParameterCpv2Emc        (Int_t i, TString axis) const;
-  const Float_t GetParameterTimeGate       (Int_t i)               const;
-  const Float_t GetParameterToCalculateEllipse(TString particle, TString param, Int_t i) const  ;     
-  const Float_t GetParameterPhotonBoundary (Int_t i)               const;
-  const Float_t GetParameterPi0Boundary    (Int_t i)               const;
+  Float_t GetParameterCalibration    (Int_t i)               const;
+  Float_t GetParameterCpv2Emc        (Int_t i, TString axis) const;
+  Float_t GetParameterTimeGate       (Int_t i)               const;
+  Float_t GetParameterToCalculateEllipse(TString particle, TString param, Int_t i) const  ;     
+  Float_t GetParameterPhotonBoundary (Int_t i)               const;
+  Float_t GetParameterPi0Boundary    (Int_t i)               const;
 
   // Get energy-dependent PID parameters
-  const Float_t GetCalibratedEnergy    (const Float_t e)                            const;
-  const Float_t GetCpv2EmcDistanceCut  (TString axis, Float_t e)                    const ;
-  const Float_t GetEllipseParameter    (TString particle, TString param, Float_t e) const;
+  Float_t GetCalibratedEnergy    (Float_t e)                 const;
+  Float_t GetCpv2EmcDistanceCut  (TString axis, Float_t e)   const ;
+  Float_t GetEllipseParameter    (TString particle, TString param, Float_t e) const;
+
+  Double_t GetThresholdChargedNeutral () const {return  fChargedNeutralThreshold;}
+  Float_t GetTOFEnergyThreshold () const {return  fTOFEnThreshold;}
+  Float_t GetDispersionEnergyThreshold () const {return  fDispEnThreshold;}
+  Int_t   GetDispersionMultiplicityThreshold () const {return  fDispMultThreshold;}
+
+  //Do bayesian PID
+  void SetBayesianPID(Bool_t set){ fBayesian = set ;}
 
   // Set PID parameters to change appropriate element of fParameters
   void SetParameterCalibration   (Int_t i, Float_t param);
@@ -67,12 +86,18 @@ public:
   void SetParameterPhotonBoundary(Int_t i, Float_t param);
   void SetParameterPi0Boundary   (Int_t i, Float_t param);
 
-  virtual void Print(Option_t * option) const {}
-  void         Print() ; 
+  void SetThresholdChargedNeutral (Double_t th) {fChargedNeutralThreshold = th;}
+  void SetTOFEnergyThreshold (Float_t th)  {fTOFEnThreshold = th;}
+  void SetDispersionEnergyThreshold (Float_t th) {fDispEnThreshold = th;}
+  void SetDispersionMultiplicityThreshold (Int_t th)  {fDispMultThreshold = th;}
+
+  //Switch to "on flyght" mode, without writing to TreeR and file  
+  void SetWriting(Bool_t toWrite = kFALSE){fWrite = toWrite;} 
+  void Print(const Option_t * = "") const ; 
 
   virtual const char * Version() const { return "pid-v1" ; }  
 
-  AliPHOSPIDv1 & operator = (const AliPHOSPIDv1 & pid) { return *this ;} 
+  AliPHOSPIDv1 & operator = (const AliPHOSPIDv1 & /*pid*/) { return *this ;} 
   
 private:
   
@@ -80,20 +105,34 @@ private:
   virtual void  Init() ;
   virtual void  InitParameters() ;
   void          MakeRecParticles(void ) ;
-  // Relative Distance CPV-EMC
-  const Float_t GetDistance     (AliPHOSEmcRecPoint * emc, AliPHOSRecPoint * cpv, Option_t * axis)const ; 
-  const Int_t   GetCPVBit       (AliPHOSEmcRecPoint * emc, AliPHOSRecPoint * cpv, Int_t EffPur, Float_t e) const;
-  const Int_t   GetPrincipalBit (TString particle, const Double_t* P, Int_t EffPur, Float_t e)const ; //Principal cut
-  const Int_t   GetHardPhotonBit(AliPHOSEmcRecPoint * emc) const;
-  const Int_t   GetHardPi0Bit   (AliPHOSEmcRecPoint * emc) const;
-  TVector3      GetMomentumDirection(AliPHOSEmcRecPoint * emc, AliPHOSRecPoint * cpv)const ;
+  void          MakePID(void) ;
+
+  //Functions to calculate the PID probability 
+  //  Double_t ChargedHadronDistProb(Double_t  x, Double_t y, Double_t * parg, Double_t * parl) ;
+  Double_t GausF   (Double_t x, Double_t y, Double_t *par) ; //gaussian probability, parameter dependence a+b/(x*x)+c/x
+  Double_t GausPol2(Double_t x, Double_t y, Double_t *par) ; //gaussian probability, parameter dependence a+b*x+c*x*x
+  Double_t LandauF(Double_t x, Double_t y, Double_t *par) ; //gaussian probability, parameter dependence  a+b/(x*x)+c/x
+  Double_t LandauPol2(Double_t x, Double_t y, Double_t *par) ; //gaussian probability, parameter dependence a+b*x+c*x*x
+ // Relative Distance CPV-EMC
+  Float_t GetDistance     (AliPHOSEmcRecPoint * emc, AliPHOSCpvRecPoint * cpv, Option_t * axis)const ; 
+  Int_t   GetCPVBit       (AliPHOSEmcRecPoint * emc, AliPHOSCpvRecPoint * cpv, Int_t EffPur, Float_t e) const;
+  Int_t   GetPrincipalBit (TString particle, const Double_t* P, Int_t EffPur, Float_t e)const ; //Principal cut
+  Int_t   GetHardPhotonBit(AliPHOSEmcRecPoint * emc) const;
+  Int_t   GetHardPi0Bit   (AliPHOSEmcRecPoint * emc) const;
+  TVector3      GetMomentumDirection(AliPHOSEmcRecPoint * emc, AliPHOSCpvRecPoint * cpv)const ;
   void          PrintRecParticles(Option_t * option) ;
-  virtual void  WriteRecParticles(Int_t event) ; 
+  virtual void  WriteRecParticles() ; 
   void          SetParameters() ; //Fills the matrix of parameters
+  void          Unload(); 
 
-private:
+  //PID population
+  void SetInitPID(const Double_t * pid) ;
+  void GetInitPID(Double_t * pid) const ;
 
+private:
+  Bool_t      fBayesian ;                 //  Do PID bayesian
   Bool_t      fDefaultInit;              //! kTRUE if the task was created by defaut ctor (only parameters are initialized)
+  Bool_t      fWrite ;                   //! To write result to file 
   Int_t       fNEvent ;                  //! current event number
   TString     fFileNamePrincipalPhoton ; //  File name of the photon principals
   TString     fFileNamePrincipalPi0 ;    //  File name of the pi0 principals
@@ -106,8 +145,44 @@ private:
   Int_t       fRecParticlesInRun ;       //! Total number of recparticles in one run
   TMatrix    *fParameters;               //! Matrix of identification Parameters
 
-
-  ClassDef( AliPHOSPIDv1,8)  // Particle identifier implementation version 1
+  //Initial pid population
+  Double_t fInitPID[AliPID::kSPECIESN] ; // Initial population to do bayesian PID
+  // pid probability function parameters
+  // ToF
+  Double_t fTphoton[3] ;       // gaussian tof response for photon
+  TFormula * fTFphoton ;       // the formula   
+  Double_t fTpiong[3] ;        // gaussian tof response for pions
+  TFormula * fTFpiong ;        // the formula
+  Double_t fTkaong[3] ;        // landau tof response for kaons
+  TFormula * fTFkaong ;        // the formula
+  Double_t fTkaonl[3] ;        // landau tof response for kaons
+  TFormula * fTFkaonl ;        // the formula
+  Double_t fThhadrong[3] ;     // gaus   tof response for heavy hadrons
+  TFormula * fTFhhadrong ;     // the formula
+  Double_t fThhadronl[3] ;     // landau   tof response for heavy hadrons
+  TFormula * fTFhhadronl ;     // the formula
+
+  //Shower dispersion
+  Double_t fDmuon[3]    ;     // gaussian ss response for muon 
+  TFormula * fDFmuon    ;     // the formula 
+  Double_t fDphoton[10] ;     // gaussian ss response for EM
+  Double_t fDpi0[10]    ;     // gaussian ss response for pi0
+  Double_t fDhadron[10] ;     // gaussian ss response for hadrons
+
+  Double_t fXelectron[10] ;   // gaussian emc-cpv distance response for electron
+  Double_t fXcharged[10]  ;   // landau emc-cpv distance response for charged part (no elect) */
+  Double_t fZelectron[10] ;   // gaussian emc-cpv distance response for electron
+  Double_t fZcharged[10]  ;   // landau emc-cpv distance response for charged part (no elect) */
+
+
+  Double_t fERecWeightPar[4] ;  // gaussian tof response for photon
+  TFormula * fERecWeight ;      // the formula   
+  Double_t fChargedNeutralThreshold ; //Threshold to differentiate between charged and neutral
+  Float_t  fTOFEnThreshold;           //Maximum energy to use TOF
+  Float_t  fDispEnThreshold;          //Minimum energy to use shower shape
+  Int_t    fDispMultThreshold ;       //Minimum multiplicity to use shower shape
+
+  ClassDef( AliPHOSPIDv1,12)  // Particle identifier implementation version 1
 
 };