ROOT logo
#ifndef ALIRSNCUTPHIRAA_H
#define ALIRSNCUTPHIRAA_H

//
// This cut implements all the checks done to accept a track as a Kaon
// for the PbPb analysis using 2010 runs.
// It is based on standard cuts on track quality and nsigma cuts
// with respect to the TPC and TOF signals for the PID.
//

#include "AliVTrack.h"
#include "AliRsnCut.h"
#include "AliRsnCutTrackQuality.h"
#include "AliESDtrackCuts.h"

class AliRsnCutPhiRAA : public AliRsnCut {

public:

   enum ECutMode {
      k2010 = 0,
      k2011_0,
      k2011_1,
      k2011_1_05,
      k2011_1_075
   };

   AliRsnCutPhiRAA(const char *name = "");
   AliRsnCutPhiRAA(const AliRsnCutPhiRAA &copy);
   AliRsnCutPhiRAA &operator=(const AliRsnCutPhiRAA &copy);
   virtual ~AliRsnCutPhiRAA() { }

   virtual Bool_t IsSelected(TObject *obj);

   AliRsnCutTrackQuality *CutQuality()            {return &fCutQuality;}

   void   SetMode(ECutMode mode)            {fMode = mode;}

private:

   ECutMode              fMode;          // how the cut is applied
   AliRsnCutTrackQuality fCutQuality;    // track quality cut
   AliESDtrackCuts *cut1;
   AliESDtrackCuts *cut2;
   AliESDtrackCuts *cut3;


   ClassDef(AliRsnCutPhiRAA,1)

};


#endif
 AliRsnCutPhiRAA.h:1
 AliRsnCutPhiRAA.h:2
 AliRsnCutPhiRAA.h:3
 AliRsnCutPhiRAA.h:4
 AliRsnCutPhiRAA.h:5
 AliRsnCutPhiRAA.h:6
 AliRsnCutPhiRAA.h:7
 AliRsnCutPhiRAA.h:8
 AliRsnCutPhiRAA.h:9
 AliRsnCutPhiRAA.h:10
 AliRsnCutPhiRAA.h:11
 AliRsnCutPhiRAA.h:12
 AliRsnCutPhiRAA.h:13
 AliRsnCutPhiRAA.h:14
 AliRsnCutPhiRAA.h:15
 AliRsnCutPhiRAA.h:16
 AliRsnCutPhiRAA.h:17
 AliRsnCutPhiRAA.h:18
 AliRsnCutPhiRAA.h:19
 AliRsnCutPhiRAA.h:20
 AliRsnCutPhiRAA.h:21
 AliRsnCutPhiRAA.h:22
 AliRsnCutPhiRAA.h:23
 AliRsnCutPhiRAA.h:24
 AliRsnCutPhiRAA.h:25
 AliRsnCutPhiRAA.h:26
 AliRsnCutPhiRAA.h:27
 AliRsnCutPhiRAA.h:28
 AliRsnCutPhiRAA.h:29
 AliRsnCutPhiRAA.h:30
 AliRsnCutPhiRAA.h:31
 AliRsnCutPhiRAA.h:32
 AliRsnCutPhiRAA.h:33
 AliRsnCutPhiRAA.h:34
 AliRsnCutPhiRAA.h:35
 AliRsnCutPhiRAA.h:36
 AliRsnCutPhiRAA.h:37
 AliRsnCutPhiRAA.h:38
 AliRsnCutPhiRAA.h:39
 AliRsnCutPhiRAA.h:40
 AliRsnCutPhiRAA.h:41
 AliRsnCutPhiRAA.h:42
 AliRsnCutPhiRAA.h:43
 AliRsnCutPhiRAA.h:44
 AliRsnCutPhiRAA.h:45
 AliRsnCutPhiRAA.h:46
 AliRsnCutPhiRAA.h:47
 AliRsnCutPhiRAA.h:48
 AliRsnCutPhiRAA.h:49
 AliRsnCutPhiRAA.h:50
 AliRsnCutPhiRAA.h:51
 AliRsnCutPhiRAA.h:52
 AliRsnCutPhiRAA.h:53