]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliAnalysisTaskJets.h
Example of CAF raw-data reconstruction. The simplest usage is rec.sh <run#>.
[u/mrichter/AliRoot.git] / JETAN / AliAnalysisTaskJets.h
index c4f8c8aec159dcf257a0fba8b4639dfd9b243ff8..607cb2145ab0a128321c0b610c9266ccd76987dc 100644 (file)
@@ -31,22 +31,25 @@ class AliAnalysisTaskJets : public AliAnalysisTaskSE
     virtual void SetNonStdBranch(const char *c){fNonStdBranch = c;}
     virtual void SetNonStdOutputFile(const char *c){fNonStdFile = c;}
     virtual void Terminate(Option_t *option);
+    virtual void ReadAODFromOutput() {fReadAODFromOutput = kTRUE;}
 
+    
  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
-  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
-
+  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
+  
   ClassDef(AliAnalysisTaskJets, 4); // Analysis task for standard jet analysis
 };