]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/hfe/AliHFEsignalCuts.h
Possibility to select the Lc resonant channel in the MC analysis (Rossella)
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEsignalCuts.h
CommitLineData
3a72645a 1/**************************************************************************
2* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3* *
4* Author: The ALICE Off-line Project. *
5* Contributors are mentioned in the code where appropriate. *
6* *
7* Permission to use, copy, modify and distribute this software and its *
8* documentation strictly for non-commercial purposes is hereby granted *
9* without fee, provided that the above copyright notice appears in all *
10* copies and that both the copyright notice and this permission notice *
11* appear in the supporting documentation. The authors make no claims *
12* about the suitability of this software for any purpose. It is *
13* provided "as is" without express or implied warranty. *
14**************************************************************************/
15//
16// Signal cuts
17// Checks whether a particle (reconstructed or MC) is coming from MC Signal
18// For more information see implementation file
19//
c2690925 20#ifndef ALIHFESIGNALCUTS_H
21#define ALIHFESIGNALCUTS_H
22
3a72645a 23#ifndef ALIANALYSISCUTS_H
24#include "AliAnalysisCuts.h"
25#endif
26
27class TList;
28class AliMCEvent;
29class AliVParticle;
30class AliHFEmcQA;
31
32class AliHFEsignalCuts : public AliAnalysisCuts{
33 public:
34 AliHFEsignalCuts();
35 AliHFEsignalCuts(const Char_t *name, const Char_t *title);
36 AliHFEsignalCuts(const AliHFEsignalCuts &ref);
37 AliHFEsignalCuts &operator=(const AliHFEsignalCuts &ref);
38 virtual ~AliHFEsignalCuts();
39
40 virtual Bool_t IsSelected(TObject *o);
41 virtual Bool_t IsSelected(TList * /*l*/) { return kTRUE; };
42
43 Bool_t IsCharmElectron(const TObject * const o) const;
44 Bool_t IsBeautyElectron(const TObject * const o) const;
45 Bool_t IsGammaElectron(const TObject * const o) const;
c2690925 46 Bool_t IsNonHFElectron(const TObject * const o) const;
11ff28c5 47 Bool_t IsJpsiElectron(const TObject * const o) const;
48 Bool_t IsB2JpsiElectron(const TObject * const o) const;
49 Bool_t IsKe3Electron(const TObject * const o) const;
3a72645a 50
51 //void SetMCEvent(AliMCEvent *mc) { fMC = mc; }
52 void SetMCEvent(AliMCEvent *mc);
53
54 protected:
55 Int_t GetMotherPDG(const AliVParticle * const track) const;
56 Int_t GetTrackPDG(const AliVParticle * const track) const;
57 Int_t GetElecSource(const AliVParticle * const track) const ;
58
59 private:
60 AliMCEvent *fMC; //! MC event
61 AliHFEmcQA *fMCQA; //! MC QA
62
63 ClassDef(AliHFEsignalCuts, 2)
64};
65#endif
66