]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliAnalysisTaskJets.h
Removing TClonesArray deletions (C.Cheshkov)
[u/mrichter/AliRoot.git] / JETAN / AliAnalysisTaskJets.h
index 6d94463f634c70efd279a999fee2749fe1d4283b..84b4625058c56c00024ae1a1dba3aff58d1f03df 100644 (file)
@@ -5,11 +5,16 @@
  * See cxx source for full Copyright notice                               */
  
 #include "AliAnalysisTaskSE.h"
+
+
 class AliJetFinder;
 class AliESDEvent;
-class TTree;
 class AliAODEvent;
 class AliJetHistos;
+class AliAODExtension;
+class TTree;
+class TChain;
+class TString;
 
 
 
@@ -18,27 +23,41 @@ class AliAnalysisTaskJets : public AliAnalysisTaskSE
  public:
     AliAnalysisTaskJets();
     AliAnalysisTaskJets(const char* name);
+    AliAnalysisTaskJets(const char* name, TChain* chain);
     virtual ~AliAnalysisTaskJets() {;}
     // Implementation of interface methods
     virtual void UserCreateOutputObjects();
     virtual void Init();
     virtual void LocalInit() {Init();}
     virtual void UserExec(Option_t *option);
-    virtual void SetConfigFile(const char *c){fConfigFile = c;}
-    void         SetJetFinder(AliJetFinder *finder) {fJetFinder = finder;}
+    virtual void SetConfigFile(const char *c) {fConfigFile = c;}
+    virtual void SetJetFinder(AliJetFinder *finder) {fJetFinder = finder;}
     virtual void SetNonStdBranch(const char *c){fNonStdBranch = c;}
+    virtual const char* GetNonStdBranch(){return fNonStdBranch.Data();}
+    virtual void SetNonStdOutputFile(const char *c){fNonStdFile = c;}
+    virtual void SetBookAODBackground(Bool_t b){fUseAODBackground = b;}
     virtual void Terminate(Option_t *option);
+    virtual void ReadAODFromOutput() {fReadAODFromOutput = kTRUE;}
+    virtual void SetFilterPt(Float_t f){fFilterPt = f;}
+    
  private:
   AliAnalysisTaskJets(const AliAnalysisTaskJets &det);
   AliAnalysisTaskJets &operator=(const AliAnalysisTaskJets &det);
     
  private:
-  TString       fConfigFile;      // the name of the ConfigFile
-  TString       fNonStdBranch;    // the name of the non-std branch name
-  AliJetFinder* fJetFinder;    //  Pointer to the jet finder 
-  AliJetHistos* fHistos;       //  Histogram manager class
-  TList*        fListOfHistos; //  Output list of histograms
-  ClassDef(AliAnalysisTaskJets, 3); // Analysis task for standard jet analysis
+  TString       fConfigFile;        // the name of the ConfigFile
+  TString       fNonStdBranch;      // the name of the non-std branch name
+  TString       fNonStdFile;        // The optional name of the output file the non-std brnach is written to
+  AliJetFinder* fJetFinder;         //  Pointer to the jet finder 
+  AliJetHistos* fHistos;            //  Histogram manager class
+  AliAODExtension* fAODExtension;   //  AOD extension we in case we write a non-sdt brnach to a separate file and the aod is standard
+  TList*        fListOfHistos;      //  Output list of histograms
+  TChain*       fChain;             //  Chain 
+  Int_t         fOpt;               //  Detector configuration used
+  Bool_t        fReadAODFromOutput; //  Force reading of the AOD from the output
+  Bool_t        fUseAODBackground;  // decide wether we book the backround branch or not 
+  Float_t       fFilterPt;          // use this as a switch for writing the AOD, minium p_T of leading jet   
+  ClassDef(AliAnalysisTaskJets, 7); // Analysis task for standard jet analysis
 };
  
 #endif