]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/EMCALJetTasks/AliEmcalJetUtility.cxx
Reorganization of the EMCal jet finder task: the manin task only performs the basic...
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / AliEmcalJetUtility.cxx
1 #include "AliEmcalJetUtility.h"
2
3 ClassImp(AliEmcalJetUtility)
4
5 //______________________________________________________________________________
6 AliEmcalJetUtility::AliEmcalJetUtility() :
7 TNamed(),
8   fJetTask(0),
9   fInit(kFALSE)
10 {
11   // Dummy constructor.
12
13 }
14
15 //______________________________________________________________________________
16 AliEmcalJetUtility::AliEmcalJetUtility(const char* name) :
17   TNamed(name, name),
18   fJetTask(0),
19   fInit(kFALSE)
20 {
21   // Default constructor.
22 }
23
24 //______________________________________________________________________________
25 AliEmcalJetUtility::AliEmcalJetUtility(const AliEmcalJetUtility &other) :
26   TNamed(other),
27   fJetTask(other.fJetTask),
28   fInit(other.fInit)
29 {
30   // Copy constructor.
31 }
32
33 //______________________________________________________________________________
34 AliEmcalJetUtility& AliEmcalJetUtility::operator=(const AliEmcalJetUtility &other)
35 {
36   // Assignment
37   if (&other == this) return *this;
38   TNamed::operator=(other);
39   fJetTask = other.fJetTask;
40   fInit = other.fInit;
41   return *this;
42 }