]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/RESONANCES/AliRsnCutTrue.h
Updated macros for Sigma* analysis + debug option enabled in AliRsnCutV0 (M.Venaruzzo...
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnCutTrue.h
CommitLineData
b63357a0 1#ifndef ALIRSNCUTTRUE_H
2#define ALIRSNCUTTRUE_H
3
4//
5// This cut selects the AliRsnDaughter objects pointing
6// to tracks with a well defined true particle species,
7// defined through its PDG code or species according the
8// enumeration defined in AliRsnDaughter class.
9// ---
10// Using this cut on data results in no tracks passing it.
11//
12
13#include "AliRsnDaughter.h"
14#include "AliRsnCut.h"
15
16class AliRsnCutTrue : public AliRsnCut {
61f275d1 17
b63357a0 18public:
19
20 AliRsnCutTrue(const char *name, Int_t pdg);
21 AliRsnCutTrue(const char *name, AliRsnDaughter::ESpecies species);
61f275d1 22 AliRsnCutTrue(const AliRsnCutTrue &copy);
23 AliRsnCutTrue &operator=(const AliRsnCutTrue &copy);
b63357a0 24 virtual ~AliRsnCutTrue() { }
61f275d1 25
b63357a0 26 virtual Bool_t IsSelected(TObject *obj);
61f275d1 27
b63357a0 28private:
29
30 ClassDef(AliRsnCutTrue,1) // AliRsnCutTrue class
31
32};
33
34#endif