AliPhysics  2aaea23 (2aaea23)
AliEmcalJetUtility.cxx
Go to the documentation of this file.
1 #include "AliEmcalJetUtility.h"
2 
3 ClassImp(AliEmcalJetUtility)
4 
5 //______________________________________________________________________________
7 TNamed(),
8  fJetTask(0),
9  fInit(kFALSE)
10 {
11  // Dummy constructor.
12 
13 }
14 
15 //______________________________________________________________________________
17  TNamed(name, name),
18  fJetTask(0),
19  fInit(kFALSE)
20 {
21  // Default constructor.
22 }
23 
24 //______________________________________________________________________________
26  TNamed(other),
27  fJetTask(other.fJetTask),
28  fInit(other.fInit)
29 {
30  // Copy constructor.
31 }
32 
33 //______________________________________________________________________________
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 }
AliEmcalJetUtility & operator=(const AliEmcalJetUtility &jet)
AliEmcalJetTask * fJetTask