]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliAnalysisTaskJets.h
add OCDB for truncated mean (Xianguo)
[u/mrichter/AliRoot.git] / JETAN / AliAnalysisTaskJets.h
1 //
2 // Taks for jet finding in ALICE 
3 //
4 #ifndef ALIANALYSISTASKJETS_H
5 #define ALIANALYSISTASKJETS_H
6  
7 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
8  * See cxx source for full Copyright notice                               */
9  
10 #include "AliAnalysisTaskSE.h"
11
12
13 class AliJetFinder;
14 class AliESDEvent;
15 class AliAODEvent;
16 class AliJetHistos;
17 class AliAODExtension;
18 class TTree;
19 class TChain;
20 class TString;
21
22
23
24 class AliAnalysisTaskJets : public AliAnalysisTaskSE
25 {
26  public:
27     AliAnalysisTaskJets();
28     AliAnalysisTaskJets(const char* name);
29     AliAnalysisTaskJets(const char* name, TChain* chain);
30     virtual ~AliAnalysisTaskJets() {;}
31     // Implementation of interface methods
32     virtual void UserCreateOutputObjects();
33     virtual void Init();
34     virtual void LocalInit() {Init();}
35     virtual void UserExec(Option_t *option);
36     virtual void SetConfigFile(const char *c) {fConfigFile = c;}
37     virtual void SetJetFinder(AliJetFinder *finder) {fJetFinder = finder;}
38     virtual void SetNonStdBranch(const char *c){fNonStdBranch = c;}
39     virtual const char* GetNonStdBranch(){return fNonStdBranch.Data();}
40     virtual void SetNonStdOutputFile(const char *c){fNonStdFile = c;}
41     virtual void SetBookAODBackground(Bool_t b){fUseAODBackground = b;}
42     virtual void Terminate(Option_t *option);
43     virtual void ReadAODFromOutput() {fReadAODFromOutput = kTRUE;}
44     virtual void SetFilterPt(Float_t f){fFilterPt = f;}
45     
46  private:
47   AliAnalysisTaskJets(const AliAnalysisTaskJets &det);
48   AliAnalysisTaskJets &operator=(const AliAnalysisTaskJets &det);
49     
50  private:
51   TString       fConfigFile;        // the name of the ConfigFile
52   TString       fNonStdBranch;      // the name of the non-std branch name
53   TString       fNonStdFile;        // The optional name of the output file the non-std brnach is written to
54   AliJetFinder* fJetFinder;         //  Pointer to the jet finder 
55   AliJetHistos* fHistos;            //  Histogram manager class
56   AliAODExtension* fAODExtension;   //  AOD extension we in case we write a non-sdt brnach to a separate file and the aod is standard
57   TList*        fListOfHistos;      //  Output list of histograms
58   TChain*       fChain;             //  Chain 
59   Int_t         fOpt;               //  Detector configuration used
60   Bool_t        fReadAODFromOutput; //  Force reading of the AOD from the output
61   Bool_t        fUseAODBackground;  // decide wether we book the backround branch or not 
62   Float_t       fFilterPt;          // use this as a switch for writing the AOD, minium p_T of leading jet   
63   ClassDef(AliAnalysisTaskJets, 7); // Analysis task for standard jet analysis
64 };
65  
66 #endif