]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGGA/EMCALTasks/AliEmcalTenderTask.h
fixing the trunk compilaton error by adding the correct files
[u/mrichter/AliRoot.git] / PWGGA / EMCALTasks / AliEmcalTenderTask.h
CommitLineData
e82e282c 1#ifndef ALIEMCALTENDERTASK_H
2#define ALIEMCAKTENDERTASK_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id: AliEmcalTenderTask.h $ */
7
8
e82e282c 9#ifndef ALIANALYSISTASKSE_H
10#include "AliAnalysisTaskSE.h"
11#endif
12
13class AliEMCALTenderSupply;
14
15class AliEmcalTenderTask : public AliAnalysisTaskSE {
16
17protected:
18 AliEMCALTenderSupply *fEMCALTender;
19
20private:
21 AliEmcalTenderTask(const AliEmcalTenderTask &other);
22 AliEmcalTenderTask& operator=(const AliEmcalTenderTask &other);
23
24public:
25 AliEmcalTenderTask();
26 AliEmcalTenderTask(const char *name);
27 virtual ~AliEmcalTenderTask();
28
29 void SetEMCALTenderSupply(AliEMCALTenderSupply *supply);
30
31 // Run control
32 virtual void ConnectInputData(Option_t *option);
33 virtual void UserCreateOutputObjects();
34 virtual void UserExec(Option_t *option);
35
36 ClassDef(AliEmcalTenderTask,1)
37};
38#endif