]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/RESONANCES/AliRsnAction.h
updated macros for Sigma* analysis (M- Venaruzzo)
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnAction.h
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 #ifndef ALIRSNACTION_H
11 #define ALIRSNACTION_H
12
13 #include <TNamed.h>
14
15 class AliRsnAction : public TNamed {
16 public:
17    AliRsnAction(const char *name="noName",const char *title="No Title");
18    AliRsnAction(const AliRsnAction &copy);
19    AliRsnAction &operator=(const AliRsnAction &copy);
20    virtual ~AliRsnAction();
21
22    virtual Bool_t InitAction(TList *outList=0,TObjArray *objects=0);
23    virtual Bool_t ExecAction(TObjArray *objects=0);
24
25 protected:
26
27    ClassDef(AliRsnAction, 1)
28 };
29
30 #endif