]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGGA/EMCALJetTasks/AliJetEmbeddingTask.h
renamed init into execonce
[u/mrichter/AliRoot.git] / PWGGA / EMCALJetTasks / AliJetEmbeddingTask.h
CommitLineData
44629b14 1#ifndef ALIJETEMBEDDINGTASK_H
2#define ALIJETEMBEDDINGTASK_H
3
4// $Id$
5
6class TClonesArray;
7class AliEMCALGeometry;
8
762e8424 9#include "AliJetModelBaseTask.h"
44629b14 10
762e8424 11class AliJetEmbeddingTask : public AliJetModelBaseTask {
44629b14 12 public:
13 AliJetEmbeddingTask();
14 AliJetEmbeddingTask(const char *name);
15 virtual ~AliJetEmbeddingTask();
16
ffe32451 17 void UserExec(Option_t* /*option*/);
44629b14 18
19 protected:
ffe32451 20 void Run();
44629b14 21
22 private:
23 AliJetEmbeddingTask(const AliJetEmbeddingTask&); // not implemented
24 AliJetEmbeddingTask &operator=(const AliJetEmbeddingTask&); // not implemented
25
762e8424 26 ClassDef(AliJetEmbeddingTask, 2) // Jet embedding task
44629b14 27};
28#endif