]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ANALYSIS/AliD0toKpi.h
Made more robust
[u/mrichter/AliRoot.git] / ANALYSIS / AliD0toKpi.h
CommitLineData
3a9a3487 1#ifndef AliD0toKpi_H
2#define AliD0toKpi_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//-------------------------------------------------------------------------
7// Class AliD0toKpi
8// Reconstructed D0 -> K^- pi^+ class
9//
10// Origin: A. Dainese andrea.dainese@pd.infn.it
11//-------------------------------------------------------------------------
12
13#include <TMath.h>
3a9a3487 14
15//----------------------------------------------------------------------------
16// Some constants (masses + parameterized TOF PID)
17//
18// particle masses
19const Double_t kMD0 = 1.8645; // D0 mass
20const Double_t kMK = 0.49368; // K+ mass
21const Double_t kMPi = 0.13957; // Pi+ mass
22
23// --- TOF tagging probabilities ---
24// central HIJING
25// B = 0.4 T
26// tracking errors in TPC included
27// With TRD
28//
29// *** Pb-Pb dNch/dy=6000 ***
30//
31// PIONS
32const Int_t kPiBins_PbPb = 10;
33const Double_t kPiBinWidth_PbPb = 0.250;
34const Double_t kPiTagPi_PbPb[kPiBins_PbPb] = {0.211421,0.652184,0.624421,0.614727,0.610777,0.628015,0.631520,0.630324,0.637551,0.575235};
35const Double_t kPiTagNid_PbPb[kPiBins_PbPb] = {0.788579,0.347816,0.375579,0.385273,0.389223,0.371985,0.368480,0.369676,0.362449,0.424765};
36// KAONS
37const Int_t kKBins_PbPb = 10;
38const Double_t kKBinWidth_PbPb = 0.250;
39const Double_t kKTagK_PbPb[kKBins_PbPb] = {0.000000,0.101255,0.397662,0.467586,0.517008,0.555023,0.584185,0.519029,0.464117,0.247308};
40const Double_t kKTagPi_PbPb[kKBins_PbPb] = {0.102049,0.289930,0.101930,0.057771,0.040286,0.028567,0.053108,0.094369,0.066302,0.247308};
41const Double_t kKTagNid_PbPb[kKBins_PbPb] = {0.897951,0.608815,0.500408,0.474643,0.442705,0.416410,0.362707,0.386603,0.469580,0.505383};
42// PROTONS
43const Int_t kPBins_PbPb = 9;
44const Double_t kPBinWidth_PbPb = 0.500;
45const Double_t kPTagP_PbPb[kPBins_PbPb] = {0.017940,0.350681,0.535286,0.583264,0.562935,0.560524,0.545992,0.598060,0.351245};
46const Double_t kPTagPi_PbPb[kPBins_PbPb] = {0.195955,0.094949,0.039962,0.026039,0.007556,0.016986,0.030333,0.000000,0.000000};
47const Double_t kPTagNid_PbPb[kPBins_PbPb] = {0.786105,0.554370,0.424751,0.390697,0.429508,0.422491,0.423675,0.401940,0.648755};
48//
49// pp PYTHIA
50//
51// *** cuts for pp ***
52//
53// PIONS
54const Int_t kPiBins_pp = 10;
55const Double_t kPiBinWidth_pp = 0.250;
56const Double_t kPiTagPi_pp[kPiBins_pp] = {0.194528,0.447097,0.603364,0.646413,0.647125,0.669157,0.688139,0.682564,0.689910,0.665710};
57const Double_t kPiTagNid_pp[kPiBins_pp] = {0.805472,0.552903,0.396636,0.353587,0.352875,0.330843,0.311861,0.317436,0.310090,0.334290};
58// KAONS
59const Int_t kKBins_pp = 10;
60const Double_t kKBinWidth_pp = 0.250;
61const Double_t kKTagK_pp[kKBins_pp] = {0.000000,0.173393,0.439690,0.519423,0.587025,0.605372,0.586021,0.650139,0.444444,0.299363};
62const Double_t kKTagPi_pp[kKBins_pp] = {0.000000,0.001495,0.000000,-0.000000,-0.000000,0.000000,0.032258,0.060572,0.101449,0.242038};
63const Double_t kKTagNid_pp[kKBins_pp] = {1.000000,0.825112,0.560310,0.480577,0.412975,0.394628,0.381720,0.289289,0.454106,0.458599};
64// PROTONS
65const Int_t kPBins_pp = 9;
66const Double_t kPBinWidth_pp = 0.500;
67const Double_t kPTagP_pp[kPBins_pp] = {0.029404,0.438640,0.613710,0.665152,0.634961,0.657711,0.703704,0.685714,0.235294};
68const Double_t kPTagPi_pp[kPBins_pp] = {0.000000,0.000000,0.000000,-0.000000,0.000000,0.000000,-0.000000,0.014286,-0.000000};
69const Double_t kPTagNid_pp[kPBins_pp] = {0.970596,0.561360,0.386290,0.334848,0.365039,0.342289,0.296296,0.300000,0.764706};
70
71
72
73
74//-----------------------------------------------------------------------------
75class AliD0toKpi : public TObject {
76 public:
77 //
78 AliD0toKpi();
79 AliD0toKpi(Int_t ev,Int_t trkNum[2],
80 Double_t v1[3],Double_t v2[3],Double_t dca,
81 Double_t mom[6],Double_t d0[2]);
82 virtual ~AliD0toKpi();
83 AliD0toKpi(const AliD0toKpi& d0toKpi);
84
85 Double_t Alpha() const { return (Ql(0)-Ql(1))/(Ql(0)+Ql(1)); }
86 void ApplyPID(TString pidScheme="TOFparam_PbPb");
87 Double_t ChildrenRelAngle() const;
88 void ComputeWgts();
89 void CorrectWgt4BR(Double_t factor);
90 Double_t CosPointing() const;
91 Double_t CosPointingXY() const;
92 void CosThetaStar(Double_t&,Double_t&) const;
93 Double_t Ct() const {return Length()*kMD0/P();}
94 Double_t Energy() const { return TMath::Sqrt(P()*P()+kMD0*kMD0); }
95 Double_t Eta() const;
96 Double_t EtaChild(Int_t child) const;
97 Int_t EventNo() const {return TMath::Abs(fEvent);}
98 Double_t GetDCA() const { return 10000.*fDCA; }
99 Int_t GetTrkNum(Int_t child) const { return fTrkNum[child]; }
100 Double_t Getd0Child(Int_t child) const { return fd0[child]; }
101 Int_t GetPdgChild(Int_t child) const { return fPdg[child]; }
102 Int_t GetPdgMum(Int_t child) const {return fMum[child]; }
103 void GetWgts(Double_t&,Double_t&,TString sample) const;
104 void GetPrimaryVtx(Double_t vtx[3]) const
105 { vtx[0]=fV1x; vtx[1]=fV1y; vtx[2]=fV1z; return; }
106 void GetSecondaryVtx(Double_t vtx[3]) const
107 { vtx[0]=fV2x; vtx[1]=fV2y; vtx[2]=fV2z; return; }
108
109 void InvMass(Double_t&,Double_t&) const;
110 Bool_t IsSignal() const { if(fSignal) return kTRUE; return kFALSE; }
111 Double_t Length() const
112 { return TMath::Sqrt((fV1x-fV2x)*(fV1x-fV2x)
113 +(fV1y-fV2y)*(fV1y-fV2y)+(fV1z-fV2z)*(fV1z-fV2z)); }
114 Double_t P() const { return TMath::Sqrt(Pt()*Pt()+Pz()*Pz()); }
115 Double_t PChild(Int_t child) const { return TMath::Sqrt(fPx[child]*fPx[child]+fPy[child]*fPy[child]+fPz[child]*fPz[child]); }
116 Double_t ProdImpParams() const { return fd0[0]*fd0[1]; }
117 Double_t Pt() const { return TMath::Sqrt(Px()*Px()+Py()*Py()); }
118 Double_t PtChild(Int_t child) const { return TMath::Sqrt(fPx[child]*fPx[child]+fPy[child]*fPy[child]); }
119 Double_t Px() const { return (fPx[0]+fPx[1]); }
120 Double_t Py() const { return (fPy[0]+fPy[1]); }
121 Double_t Pz() const { return (fPz[0]+fPz[1]); }
122 Double_t Ql(Int_t child) const;
123 Double_t Qt() const;
124 Double_t Rapidity() const { return 0.5*TMath::Log((Energy()+Pz())/(Energy()-Pz()+1.e-13)); }
125 Bool_t Select(const Double_t* cuts,Int_t&,Int_t&) const;
126 void SetPrimaryVtx(Double_t vtx[3])
127 { fV1x=vtx[0]; fV1y=vtx[1]; fV1z=vtx[2]; return; }
128 void SetSignal() { fSignal = kTRUE; return; }
129 void SetTOFmasses(Double_t mass[2])
130 { fTOFmass[0]=mass[0]; fTOFmass[1]=mass[1]; return; }
131 void SetPIDresponse(Double_t resp0[5],Double_t resp1[5]);
132 void SetPdgCodes(Int_t pdg[2]) {fPdg[0]=pdg[0];fPdg[1]=pdg[1];return;}
133 void SetMumPdgCodes(Int_t mum[2]) {fMum[0]=mum[0];fMum[1]=mum[1];return;}
134
135 void DrawPIDinTOF(TString pidScheme="TOFparam_PbPb") const;
136 Double_t LinearInterpolation(Double_t p,Int_t nBins,Double_t Bin,
137 const Double_t *values) const;
138 // void SetPtWgts4pp();
139 //
140 private:
141 //
142 Bool_t fSignal; // TRUE if signal, FALSE if background (for simulation)
143 Int_t fEvent; // number of the event this D0 comes from
144 // -1 if the D0 comes from ev. mixing
145
146 Int_t fTrkNum[2]; // numbers of the two decay tracks
147
148 Double_t fV1x; //
149 Double_t fV1y; // position of the primary vertex of the event
150 Double_t fV1z; //
151 Double_t fV2x; //
152 Double_t fV2y; // position of the reconstructed secondary vertex
153 Double_t fV2z; //
154 Double_t fDCA; // DCA of the two tracks
155
156 Double_t fPx[2]; //
157 Double_t fPy[2]; // momenta of the two tracks
158 Double_t fPz[2]; // at the reconstructed vertex
159
160 Double_t fd0[2]; // impact parameters in the bending plane
161
162 Int_t fPdg[2]; // PDG codes of the two tracks (for sim.)
163 Int_t fMum[2]; // PDG codes of the mothers (for sim.)
164
165 Double_t fTagPi[2]; // probability to be tagged as pion
166 Double_t fTagKa[2]; // probability to be tagged as kaon
167 Double_t fTagPr[2]; // probability to be tagged as proton
168 Double_t fTagNid[2]; // probability to be tagged as "non-identified"
169
170 Double_t fPIDrespEl[2]; // det. response to be electron
171 Double_t fPIDrespMu[2]; // det. response to be muon
172 Double_t fPIDrespPi[2]; // det. response to be pion
173 Double_t fPIDrespKa[2]; // det. response to be kaon
174 Double_t fPIDrespPr[2]; // det. response to be proton
175 Double_t fTOFmass[2]; // mass estimated by the TOF (-1000. if track not reached TOF)
176
177 Double_t fWgtAD0,fWgtAD0bar; //
178 Double_t fWgtBD0,fWgtBD0bar; // weights for the 3 samples
179 Double_t fWgtCD0,fWgtCD0bar; // A: (K,Pi)+(K,?) B: (?,Pi) C: (?,?)
180 Double_t fWgtDD0,fWgtDD0bar; // D: all other pairs
181
182 ClassDef(AliD0toKpi,1) // Reconstructed D0 candidate class
183};
184
185#endif
186
187
188
189
190
191
192
193