]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/EMCAL/AliEmcalSetupTask.h
add TPC-only track cuts support
[u/mrichter/AliRoot.git] / PWG / EMCAL / AliEmcalSetupTask.h
CommitLineData
6ea93b32 1#ifndef ALIEMCALSETUPTASK_H
2#define ALIEMCALSETUPTASK_H
3
4// $Id$
5
6class TClonesArray;
7class AliESDEvent;
8class AliESDtrack;
9class AliESDtrackCuts;
10
11#include "AliAnalysisTaskSE.h"
12
13class AliEmcalSetupTask : public AliAnalysisTaskSE {
14 public:
15 AliEmcalSetupTask();
16 AliEmcalSetupTask(const char *name);
17 virtual ~AliEmcalSetupTask();
18
810787c3 19 void SetGeoPath(const char *n) { fGeoPath = n; }
20 void SetOadbPath(const char *n) { fOadbPath = n; }
21 void SetOcdbPath(const char *n) { fOcdbPath = n; }
22 void SetObjs(const char *n) { fObjs = n; }
6ea93b32 23
24 protected:
810787c3 25 void ConnectInputData(Option_t *option = "");
26 void UserExec(Option_t *option);
27 void Setup(Int_t runno);
28 void Terminate(Option_t *option);
29
012dab22 30 TString fOcdbPath; // path to ocdb (def=uselocal)
6ea93b32 31 TString fOadbPath; // path to oadb
277be17b 32 TString fGeoPath; // path to geometry
e8481053 33 TString fObjs; // string of objects for alignment to apply
6ea93b32 34 Bool_t fIsInit; //!=true then already initialized
810787c3 35 TString fLocalOcdb; //!directory path to local ocdb
36 TString fLocalOcdbStor; //!storage path to local ocdb
6ea93b32 37
38 private:
39 AliEmcalSetupTask(const AliEmcalSetupTask&); // not implemented
40 AliEmcalSetupTask &operator=(const AliEmcalSetupTask&); // not implemented
41
810787c3 42 ClassDef(AliEmcalSetupTask, 5); // Class to setup geometry for EMCal
6ea93b32 43};
44
45#endif