]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/RESONANCES/AliRsnAction.cxx
Added AliRsnCutEventUtils class: interface to /Users/bellini/alisoft/aliroot/last_tru...
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnAction.cxx
1 //
2 // *** Class AliRsnAction ***
3 //
4 //  Base class for Action
5 //
6 // authors: Martin Vala (martin.vala@cern.ch)
7 //          Jan Musinsky (jan.musinsky@cern.ch)
8 //
9
10 #include <TObjArray.h>
11
12 #include "AliRsnAction.h"
13
14 ClassImp(AliRsnAction)
15
16 //__________________________________________________________________________________________________
17 AliRsnAction::AliRsnAction(const char *name,const char *title) : TNamed(name,title)
18 {
19 //
20 // Default constructor
21 //
22
23 }
24
25 //__________________________________________________________________________________________________
26 AliRsnAction::AliRsnAction(const AliRsnAction &copy) : TNamed(copy)
27 {
28 //
29 // Copy constructor
30 //
31 }
32
33 //__________________________________________________________________________________________________
34 AliRsnAction &AliRsnAction::operator=(const AliRsnAction &copy)
35 {
36 //
37 // Assignment constructor
38 //
39    TNamed::operator=(copy);
40    if (this == &copy)
41       return *this;
42
43    return (*this);
44 }
45
46 //__________________________________________________________________________________________________
47 AliRsnAction::~AliRsnAction()
48 {
49 //
50 // Destructor
51 //
52 }
53
54 //__________________________________________________________________________________________________
55 Bool_t AliRsnAction::InitAction(TList */*outList*/,TObjArray */*objects*/)
56 {
57 //
58 // Init of Action
59 //
60
61    return kTRUE;
62
63 }
64
65 //__________________________________________________________________________________________________
66 Bool_t AliRsnAction::ExecAction(TObjArray */*objects*/)
67 {
68 //
69 // Execute of action
70 //
71
72    return kTRUE;
73
74 }