ROOT logo
#ifndef ALIRSNLOOPEVENT_H
#define ALIRSNLOOPEVENT_H

//
// Computator for events.
// The simplest loop,
// which is filled once per event.
//

#include "AliRsnLoop.h"

class AliRsnLoopEvent : public AliRsnLoop {
public:

   AliRsnLoopEvent(const char *name = "default");
   AliRsnLoopEvent(const AliRsnLoopEvent &copy);
   AliRsnLoopEvent &operator=(const AliRsnLoopEvent &copy);
   ~AliRsnLoopEvent();

   virtual void       Print(Option_t *opt = "") const;
   virtual Bool_t     Init(const char *prefix, TList *list);
   virtual Int_t      DoLoop(AliRsnEvent *main, AliRsnDaughterSelector *smain = 0, AliRsnEvent *mix = 0, AliRsnDaughterSelector *smix = 0);

private:

   ClassDef(AliRsnLoopEvent, 1)
};

#endif

 AliRsnLoopEvent.h:1
 AliRsnLoopEvent.h:2
 AliRsnLoopEvent.h:3
 AliRsnLoopEvent.h:4
 AliRsnLoopEvent.h:5
 AliRsnLoopEvent.h:6
 AliRsnLoopEvent.h:7
 AliRsnLoopEvent.h:8
 AliRsnLoopEvent.h:9
 AliRsnLoopEvent.h:10
 AliRsnLoopEvent.h:11
 AliRsnLoopEvent.h:12
 AliRsnLoopEvent.h:13
 AliRsnLoopEvent.h:14
 AliRsnLoopEvent.h:15
 AliRsnLoopEvent.h:16
 AliRsnLoopEvent.h:17
 AliRsnLoopEvent.h:18
 AliRsnLoopEvent.h:19
 AliRsnLoopEvent.h:20
 AliRsnLoopEvent.h:21
 AliRsnLoopEvent.h:22
 AliRsnLoopEvent.h:23
 AliRsnLoopEvent.h:24
 AliRsnLoopEvent.h:25
 AliRsnLoopEvent.h:26
 AliRsnLoopEvent.h:27
 AliRsnLoopEvent.h:28
 AliRsnLoopEvent.h:29
 AliRsnLoopEvent.h:30