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