]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/vertexingHF/AliCFVertexingHF2Prong.h
Update (Rossella)
[u/mrichter/AliRoot.git] / PWG3 / vertexingHF / AliCFVertexingHF2Prong.h
1 #ifndef ALICFVERTEXINGHF2PRONG_H
2 #define ALICFVERTEXINGHF2PRONG_H
3
4 /**************************************************************************
5  * Copyright(c) 1998-2009, 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 // Class for HF corrections as a function of many variables and step 
23 // Author : C. Zampolli, CERN
24 // D. Caffarri, Univ & INFN Padova caffarri@pd.infn.it
25 // Base class for HF Unfolding - agrelli@uu.nl
26 //-----------------------------------------------------------------------
27
28
29 #include "AliCFVertexingHF.h"
30 #include "AliAODRecoDecayHF.h"
31 #include "AliAODRecoDecayHF2Prong.h"
32
33 class AliAODMCParticle;
34 class TClonesArray;
35 class AliCFVertexingHF;
36 class AliESDtrack;
37 class TDatabasePDG;
38
39 class AliCFVertexingHF2Prong : public AliCFVertexingHF{
40         public:
41                 
42         AliCFVertexingHF2Prong(){};
43         AliCFVertexingHF2Prong(TClonesArray *mcArray, UShort_t originDselection);
44         
45         //  virtual ~AliCFVertexingHF2Prong(){};
46         
47         Bool_t GetGeneratedValuesFromMCParticle(Double_t* /*vectorMC*/);
48         Bool_t GetRecoValuesFromCandidate(Double_t* /*vectorReco*/ ) const;
49         Bool_t CheckMCChannelDecay()const;
50         
51         Bool_t SetRecoCandidateParam(AliAODRecoDecayHF *recoCand);
52         
53  protected:
54   
55   
56  private:       
57         AliCFVertexingHF2Prong(const AliCFVertexingHF2Prong& c);
58         AliCFVertexingHF2Prong& operator= (const AliCFVertexingHF2Prong& other);
59         
60         ClassDef(AliCFVertexingHF2Prong, 1);
61   
62 };
63
64 #endif