]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGHF/hfe/AliHFEpidMC.cxx
Moving the signal function (synchronizing GSI svn and Aliroot ))
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEpidMC.cxx
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 // Class for TRD PID
17 // Implements the abstract base class AliHFEpidBase
18 // Make PID does the PID decision
19 // Class further contains TRD specific cuts and QA histograms
20 //
21 // Authors:
22 //   Markus Fasel <M.Fasel@gsi.de>
23 //
24 #include <TParticle.h>
25
26 #include "AliAODMCParticle.h"
27 #include "AliMCParticle.h"
28 //#include "AliVParticle.h"
29
30 #include "AliHFEpidMC.h"
31 #include "AliHFEtools.h"
32
33 ClassImp(AliHFEpidMC)
34
35 //___________________________________________________________________
36 AliHFEpidMC::AliHFEpidMC():
37   AliHFEpidBase()
38 {
39   //
40   // Default constructor
41   //
42 }
43
44 //___________________________________________________________________
45 AliHFEpidMC::AliHFEpidMC(const Char_t *name):
46   AliHFEpidBase(name)
47 {
48   //
49   // Standard constructor
50   //
51 }
52
53 //___________________________________________________________________
54 Bool_t AliHFEpidMC::InitializePID(Int_t /*run*/){
55   // 
56   // Implementation of the framework function InitializePID
57   // Not yet anything to implement in case of MC PID
58   //
59   return kTRUE;
60 }
61
62 //___________________________________________________________________
63 Int_t AliHFEpidMC::IsSelected(const AliHFEpidObject *track, AliHFEpidQAmanager * /*pidqa*/) const {
64   //
65   // returns MC PDG Code
66   // Functionality implemented in the base class
67   // (necessary for PID QA)
68   //
69   return track->GetAbInitioPID();
70 }