]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/GammaConv/AliAODConversionMother.h
Merging gsi train and aliroot trunk
[u/mrichter/AliRoot.git] / PWG4 / GammaConv / AliAODConversionMother.h
CommitLineData
2eedd4ed 1#ifndef ALIAODCONVERSIONMOTHER_H
2#define ALIAODCONVERSIONMOTHER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6////////////////////////////////////////////////
7//---------------------------------------------
8// Class reconstructing the mother particle of conversion gammas
9//---------------------------------------------
10////////////////////////////////////////////////
11
12//Author Daniel Lohner (Daniel.Lohner@cern.ch)
13
14#include "TLorentzVector.h"
15#include "AliAODConversionParticle.h"
16#include "AliAODConversionPhoton.h"
17#include "AliKFConversionMother.h"
18#include "AliKFParticle.h"
19
20class AliAODConversionMother : public AliAODConversionParticle{
21
22 public:
23
24 //Default Constructor
25 AliAODConversionMother();
26
27 // Constructor for ESD to AOD Conversion
28 AliAODConversionMother(AliKFConversionMother *kf);
29
30 //Constructor Decay Mother Particle
31 AliAODConversionMother(AliAODConversionPhoton *y1,AliAODConversionPhoton *y2);
32
33 //Destructor
34 virtual ~AliAODConversionMother();
35
36 ///Set the Chi2 of reconstructed conversion gamma
37 void SetChi2(Float_t chi2) {fChi2 = chi2;}
38
39 //Get the Chi2 of particle
40 Float_t Chi2() const {return fChi2;}
41
42 ///Set track or MC labels
43 void SetLabel1(Int_t label){fLabel[0] = label;}
44 void SetLabel2(Int_t label){fLabel[1] = label;}
45 void SetLabels(Int_t label1, Int_t label2){fLabel[0] = label1; fLabel[1] = label2;}
46
47 Int_t GetLabel(Int_t i) const {return fLabel[i];}
48 Int_t GetLabel1() const {return fLabel[0];}
49 Int_t GetLabel2() const {return fLabel[1];}
50
51 Double_t GetOpeningAngle() const { return fOpeningAngle;}
52
53 Double_t GetAlpha() const { return fAlpha;}
54
55 void SetWeight(Double_t weight) {fWeight=weight;}
56 Double_t GetWeight() const {return fWeight;}
57
58private:
59 Int_t fLabel[2]; // Labels of the decay photons
60 Float_t fChi2; // Chi sq of reconstructed mother
61 Double_t fOpeningAngle;
62 Double_t fAlpha;
63 Double_t fWeight; // Weight for BG Calculation
64
65 ClassDef(AliAODConversionMother,1)
66};
67
68#endif