]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/RESONANCES/AliRsnLoopEvent.h
Coverity fix
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnLoopEvent.h
1 #ifndef ALIRSNLOOPEVENT_H
2 #define ALIRSNLOOPEVENT_H
3
4 //
5 // Class for computations on events
6 //
7
8 #include "AliRsnLoop.h"
9
10 class AliRsnLoopEvent : public AliRsnLoop {
11 public:
12
13    AliRsnLoopEvent(const char *name = "default");
14    AliRsnLoopEvent(const AliRsnLoopEvent &copy);
15    AliRsnLoopEvent& operator=(const AliRsnLoopEvent&);
16    ~AliRsnLoopEvent();
17    
18    virtual void       Print(Option_t *opt = "") const;
19    virtual Bool_t     Init(const char *prefix, TList *list);
20    virtual Int_t      DoLoop(AliRsnEvent *main, AliRsnDaughterSelector *smain = 0, AliRsnEvent *mix = 0, AliRsnDaughterSelector *smix = 0);
21
22 private:
23
24    ClassDef(AliRsnLoopEvent, 1)
25 };
26
27 #endif
28