]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/RESONANCES/AliRsnLoopEvent.h
Coverity fix
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnLoopEvent.h
CommitLineData
c865cb1d 1#ifndef ALIRSNLOOPEVENT_H
2#define ALIRSNLOOPEVENT_H
3
4//
5// Class for computations on events
6//
7
8#include "AliRsnLoop.h"
9
10class AliRsnLoopEvent : public AliRsnLoop {
11public:
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
22private:
23
24 ClassDef(AliRsnLoopEvent, 1)
25};
26
27#endif
28