]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/RESONANCES/AliRsnLoopDaughter.h
Added macro for K* task in pA + modified monitoring with new plot
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnLoopDaughter.h
CommitLineData
c865cb1d 1#ifndef ALIRSNLOOPDAUGHTER_H
2#define ALIRSNLOOPDAUGHTER_H
3
4//
b63357a0 5// Computator for single daughters.
6// Implements a simple loop on tracks from one of the entry lists
7// filled by the task AliRsnInputHandler, adding a check on their
8// definition specified in the daughter def.
c865cb1d 9//
10
11#include "AliRsnDaughter.h"
12#include "AliRsnLoop.h"
13
14class AliRsnDaughterDef;
15
16class AliRsnLoopDaughter : public AliRsnLoop {
17public:
18
19 AliRsnLoopDaughter(const char *name = "default", Int_t listID = 0, AliRsnDaughterDef *def = 0);
20 AliRsnLoopDaughter(const AliRsnLoopDaughter &copy);
61f275d1 21 AliRsnLoopDaughter &operator=(const AliRsnLoopDaughter &copy);
c865cb1d 22 ~AliRsnLoopDaughter();
61f275d1 23
b63357a0 24 Int_t GetListID() const {return fListID;}
61f275d1 25 AliRsnDaughterDef *GetDef() {return fDef;}
26 AliRsnDaughter *GetDaughter() {return &fDaughter;}
b63357a0 27
28 void SetTrueMC(Bool_t yn = kTRUE) {fTrueMC = yn;}
f34f960b 29 void SetOnlyTrue(Bool_t yn = kTRUE) {fOnlyTrue = yn;}
61f275d1 30 void SetMCRefInfo(Bool_t b = kTRUE) {fUseMCRef = b;}
c865cb1d 31 void SetListID(Int_t i) {fListID = i;}
32 void SetDef(AliRsnDaughterDef *def) {fDef = def;}
61f275d1 33
c865cb1d 34 virtual void Print(Option_t *opt = "") const;
35 virtual Bool_t Init(const char *prefix, TList *list);
36 virtual Int_t DoLoop(AliRsnEvent *main, AliRsnDaughterSelector *smain, AliRsnEvent *mix = 0, AliRsnDaughterSelector *smix = 0);
37
38protected:
39
b63357a0 40 Int_t LoopTrueMC(AliRsnEvent *rsn);
41
42 Bool_t fTrueMC; // if this flag is TRUE, scan the MC for all true resonances from MC
f34f960b 43 Bool_t fOnlyTrue; // for selecting only true particles
52e6652d 44 Bool_t fUseMCRef; // uses MC ref instead of REC
c865cb1d 45 Int_t fListID; // index of entry list to use
46 AliRsnDaughterDef *fDef; // definition for selection
47 AliRsnDaughter fDaughter; //! daughter temporary member
48
49private:
50
52e6652d 51 ClassDef(AliRsnLoopDaughter, 4)
c865cb1d 52};
53
54#endif
55