]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/hfe/AliHFEpidMC.h
Possibility to keep only D mesons that have a c or b quark as a grandmother (Francesc...
[u/mrichter/AliRoot.git] / PWG3 / hfe / AliHFEpidMC.h
1 #ifndef ALIHFEPIDMC_H
2 #define ALIHFEPIDMC_H
3
4 /**************************************************************************
5 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
6 *                                                                        *
7 * Author: The ALICE Off-line Project.                                    *
8 * Contributors are mentioned in the code where appropriate.              *
9 *                                                                        *
10 * Permission to use, copy, modify and distribute this software and its   *
11 * documentation strictly for non-commercial purposes is hereby granted   *
12 * without fee, provided that the above copyright notice appears in all   *
13 * copies and that both the copyright notice and this permission notice   *
14 * appear in the supporting documentation. The authors make no claims     *
15 * about the suitability of this software for any purpose. It is          *
16 * provided "as is" without express or implied warranty.                  *
17 **************************************************************************/
18
19 /* $Id$ */ 
20
21 //
22 // Detector PID Class for Monte Carlo PID
23 // Returns PDG code of a particle
24 // For more information see the impelmentation file
25 //
26
27  #ifndef ALIHFEPIDBASE_H
28  #include "AliHFEpidBase.h"
29  #endif
30
31 class AliHFEpidQAmanager;
32
33 class AliHFEpidMC : public AliHFEpidBase{
34   public:
35     AliHFEpidMC();
36     AliHFEpidMC(const Char_t *name);
37     virtual ~AliHFEpidMC(){};
38     
39     virtual Bool_t InitializePID();
40     virtual Int_t IsSelected(const AliHFEpidObject *track, AliHFEpidQAmanager *pidqa) const;
41
42   private:
43
44   ClassDef(AliHFEpidMC, 1)    // MC electron ID class
45 };
46
47 #endif