]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWGHF/hfe/AliAnalysisTaskHFEpidQA.h
Split: removed dirs now in AliPhysics
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliAnalysisTaskHFEpidQA.h
diff --git a/PWGHF/hfe/AliAnalysisTaskHFEpidQA.h b/PWGHF/hfe/AliAnalysisTaskHFEpidQA.h
deleted file mode 100644 (file)
index 4854f8a..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-/**************************************************************************
-* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
-*                                                                        *
-* Author: The ALICE Off-line Project.                                    *
-* Contributors are mentioned in the code where appropriate.              *
-*                                                                        *
-* Permission to use, copy, modify and distribute this software and its   *
-* documentation strictly for non-commercial purposes is hereby granted   *
-* without fee, provided that the above copyright notice appears in all   *
-* copies and that both the copyright notice and this permission notice   *
-* appear in the supporting documentation. The authors make no claims     *
-* about the suitability of this software for any purpose. It is          *
-* provided "as is" without express or implied warranty.                  *
-**************************************************************************/
-//
-// Task for PID QA
-// Using AliHFEpidQA and AliHFEMCpidQA
-// More information can be found in the source file
-//
-#ifndef ALIANALYSISTASKHFEPIDQA_H
-#define ALIANALYSISTASKHFEPIDQA_H
-
-#ifndef ALIANALYSISTASKSE_H
-#include "AliAnalysisTaskSE.h"
-#endif
-
-class TH1;
-class TList;
-class TFile;
-
-class AliLog;
-class AliMCEvent;
-
-class AliHFEpidQA;
-
-class AliAnalysisTaskHFEpidQA : public AliAnalysisTaskSE{
-  public:
-    AliAnalysisTaskHFEpidQA();
-    AliAnalysisTaskHFEpidQA(const Char_t *name);
-    ~AliAnalysisTaskHFEpidQA();
-
-    virtual void UserCreateOutputObjects();
-    virtual void UserExec(Option_t *);
-    virtual void Terminate(Option_t *);
-    virtual Bool_t UserNotify();
-
-    Bool_t HasV0pidQA() const { return TestBit(kV0pidQA); };
-    Bool_t HasRecalculateTRDpid() const { return TestBit(kRecalculateTRDpid); };
-    void SetV0pidQA(Bool_t v0pidQA = kTRUE) { SetBit(kV0pidQA, v0pidQA); };
-    void SetRecalculateTRDpid(Bool_t recal = kTRUE) { SetBit(kRecalculateTRDpid, recal); };
-    void SetTRDTotalChargeInSlice0() { fTRDTotalChargeInSlice0 = kTRUE; }
-
-    void SetNNref(TFile *f) { fNNref = f; };
-
-    void SetQAPbPb() { fIsQAPbPb = kTRUE; };
-    void SetQAPP() { fIsQAPbPb = kFALSE; };
-    void SetQAPPMultiBin() { fIsQAppMultiBin = kFALSE; };
-    Bool_t IsQAPbPb() const { return fIsQAPbPb; };
-    Bool_t IsQAPP() const { return !fIsQAPbPb; };
-    Bool_t IsQAPPMultiBin() const { return fIsQAppMultiBin; };
-
-
-  private:
-    enum{
-      kV0pidQA = BIT(22),
-      kRecalculateTRDpid = BIT(23)
-    };
-    AliAnalysisTaskHFEpidQA(const AliAnalysisTaskHFEpidQA &ref);
-    AliAnalysisTaskHFEpidQA &operator=(const AliAnalysisTaskHFEpidQA &ref);
-    AliHFEpidQA *fPIDqa;    //! The heart of the analysis  
-    TList *fOutput;         //! Container for output histos
-    TH1 *fEvents;           //! Number of Events
-    TFile  *fNNref;         //  reference file for NN
-    Bool_t fTRDTotalChargeInSlice0;   // Fix for Foreware/Backward compatibility
-    Bool_t             fIsQAPbPb;        // Analysis Type: pp or PbPb
-    Bool_t             fIsQAppMultiBin;  // pp multiplicity bin analysis
-
-    ClassDef(AliAnalysisTaskHFEpidQA, 1)
-};
-
-#endif
-