]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGJE/EMCALJetTasks/AliJetEmbeddingTask.h
RelVal: small error message fix
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / AliJetEmbeddingTask.h
CommitLineData
44629b14 1#ifndef ALIJETEMBEDDINGTASK_H
2#define ALIJETEMBEDDINGTASK_H
3
4// $Id$
5
762e8424 6#include "AliJetModelBaseTask.h"
44629b14 7
762e8424 8class AliJetEmbeddingTask : public AliJetModelBaseTask {
44629b14 9 public:
10 AliJetEmbeddingTask();
11 AliJetEmbeddingTask(const char *name);
12 virtual ~AliJetEmbeddingTask();
13
4d3b366f 14 void SetMasslessParticles(Bool_t b) { fMassless = b ; }
15
44629b14 16 protected:
ffe32451 17 void Run();
44629b14 18
4d3b366f 19 Bool_t fMassless; //make particles massless
20
44629b14 21 private:
22 AliJetEmbeddingTask(const AliJetEmbeddingTask&); // not implemented
23 AliJetEmbeddingTask &operator=(const AliJetEmbeddingTask&); // not implemented
24
762e8424 25 ClassDef(AliJetEmbeddingTask, 2) // Jet embedding task
44629b14 26};
27#endif