]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG3/vertexingHF/AliCFVertexingHF2Prong.h
Fix
[u/mrichter/AliRoot.git] / PWG3 / vertexingHF / AliCFVertexingHF2Prong.h
CommitLineData
379592af 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
27de2dfb 19/* $Id$ */
20
379592af 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
33class AliAODMCParticle;
34class TClonesArray;
35class AliCFVertexingHF;
36class AliESDtrack;
37class TDatabasePDG;
38
39class AliCFVertexingHF2Prong : public AliCFVertexingHF{
40 public:
41
f2703bd2 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);
379592af 52
379592af 53 protected:
54
55
56 private:
f2703bd2 57 AliCFVertexingHF2Prong(const AliCFVertexingHF2Prong& c);
58 AliCFVertexingHF2Prong& operator= (const AliCFVertexingHF2Prong& other);
59
60 ClassDef(AliCFVertexingHF2Prong, 1);
379592af 61
62};
63
64#endif