]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALPID.h
correct previous non intended commit, but leaving some new things
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALPID.h
index b4fcf06563ccb28fdefd34ba568a592057eef46b..80455b36f887b10bf61a72771fbefaa2afc8ecb0 100644 (file)
@@ -1,73 +1,41 @@
-#ifndef AliEMCALPID_H
-#define AliEMCALPID_H
+#ifndef ALIEMCALPID_H
+#define ALIEMCALPID_H
 
 /* $Id$ */
-/* History of cvs commits:
- *
- * $Log$
- * Revision 1.13  2007/07/11 13:43:29  hristov
- * New class AliESDEvent, backward compatibility with the old AliESD (Christian)
- *
- * Revision 1.12  2007/02/20 20:17:43  hristov
- * Corrected array size, removed warnings (icc)
- *
- * Revision 1.11  2006/12/19 08:49:35  gustavo
- * New PID class for EMCAL, bayesian analysis done with ESD data, PID information filled when calling AliEMCALPID in AliEMCALReconstructor::FillESD()
- *
- *
- */
 
 ///////////////////////////////////////////////////////////////////////////////
 // Class AliEMCALPID
+// Compute PID weights for all the clusters
 ///////////////////////////////////////////////////////////////////////////////
 
-#include "TTask.h"
-#include "TArrayD.h"
-#include "AliESDEvent.h"
-#include "AliPID.h" 
+//Root includes
+class TArrayD ;
 
-class AliEMCALPID : public TTask {
+//AliRoot includes
+class AliESDEvent ;
+#include "AliEMCALPIDUtils.h" 
+
+class AliEMCALPID : public AliEMCALPIDUtils {
 
 public:
   
   AliEMCALPID();
-  virtual ~AliEMCALPID() { }
-  
-  void     RunPID(AliESDEvent *esd);
-  void     ComputePID(Double_t energy, Double_t lambda0); // give the PID of a cluster
-  TArrayD  DistLambda0(Double_t energy, Int_t nature); // compute lambda0 distributions
-  
-  Double_t GetPID(Int_t idx) const {if (idx>=0&&idx<3) return fPID[idx]; else return 0.;}
-  Double_t GetPIDFinal(Int_t idx) const {if (idx>=0&&idx<AliPID::kSPECIESN) return fPIDFinal[idx]; else return 0.;}
-  Double_t GetPIDWeight(Int_t idx) const {if (idx>=0&&idx<3) return fPIDWeight[idx]; else return 0.;}
+  AliEMCALPID(Bool_t reconstructor);
+  //virtual ~AliEMCALPID() { }
   
-  void     SetPID(Double_t val, Int_t idx) {if (idx>=0&&idx<3) fPID[idx] = val;}
-  void     SetPIDFinal(Double_t val, Int_t idx) {if (idx>=0&&idx<AliPID::kSPECIESN) fPIDFinal[idx] = val;}
-  void     SetPIDWeight(Double_t val, Int_t idx) {if (idx>=0&&idx<3) fPIDWeight[idx] = val;}
-  void     SetPrintInfo(Bool_t yesno) {fPrintInfo = yesno;}
-   void     SetReconstructor(Bool_t yesno) {fReconstructor = yesno;}
+  void    RunPID(AliESDEvent *esd);
+  void    InitParameters();
+  void    SetReconstructor(Bool_t yesno) {fReconstructor = yesno;}
+       
  private:
   
-  Double_t Polynomial(Double_t x, Double_t *params);
-  
-  Bool_t   fPrintInfo;          // flag to decide if details about PID must be printed
-  
-  Double_t fGamma[6][6];        // Parameter to Compute PID
-  Double_t fHadron[6][6];                // Parameter to Compute PID
-  Double_t fPiZero5to10[6][6];  // Parameter to Compute PID
-  Double_t fPiZero10to60[6][6]; // Parameter to Compute PID
+  Bool_t   fReconstructor;                // Fill esdcalocluster when called from EMCALReconstructor
   
-  Float_t fPID[3];
-  
-  Float_t fPIDFinal[AliPID::kSPECIESN+1];  // final PID format
-  Float_t fPIDWeight[3];                 // order: gamma, pi0, hadrons,
-  Double_t fProbGamma;                 // probility to be a Gamma
-  Double_t fProbPiZero;                        // probility to be a PiO
-  Double_t fProbHadron;                        // probility to be a Hadron
-  Bool_t    fReconstructor;               //Fill esdcalocluster when called from EMCALReconstructor
-  
-  ClassDef(AliEMCALPID, 0)
+  ClassDef(AliEMCALPID, 5)
+
 };
 
+
 #endif // ALIEMCALPID_H
 
+