]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/RESONANCES/AliRsnAction.cxx
Added optimal cuts on vertex position for pPb analyses
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnAction.cxx
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#include <TObjArray.h>
11
12#include "AliRsnAction.h"
13
14ClassImp(AliRsnAction)
15
16//__________________________________________________________________________________________________
17AliRsnAction::AliRsnAction(const char *name,const char *title) : TNamed(name,title)
18{
19//
20// Default constructor
21//
22
23}
24
25//__________________________________________________________________________________________________
26AliRsnAction::AliRsnAction(const AliRsnAction &copy) : TNamed(copy)
27{
28//
29// Copy constructor
30//
31}
32
33//__________________________________________________________________________________________________
34AliRsnAction &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//__________________________________________________________________________________________________
47AliRsnAction::~AliRsnAction()
48{
49//
50// Destructor
51//
52}
53
54//__________________________________________________________________________________________________
55Bool_t AliRsnAction::InitAction(TList */*outList*/,TObjArray */*objects*/)
56{
57//
58// Init of Action
59//
60
61 return kTRUE;
62
63}
64
65//__________________________________________________________________________________________________
66Bool_t AliRsnAction::ExecAction(TObjArray */*objects*/)
67{
68//
69// Execute of action
70//
71
72 return kTRUE;
73
74}