]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDcascade.h
Raw data simulation, one file per DDL, mini header replaced by data header (T.Kuhr)
[u/mrichter/AliRoot.git] / STEER / AliESDcascade.h
CommitLineData
e23730c7 1#ifndef ALIESDCASCADE_H
2#define ALIESDCASCADE_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7//-------------------------------------------------------------------------
8// ESD Cascade Vertex Class
9//
10// Origin: Christian Kuhn, IReS, Strasbourg, christian.kuhn@ires.in2p3.fr
11//-------------------------------------------------------------------------
12
13#include <TObject.h>
14#include <TPDGCode.h>
15
16class AliESDtrack;
17class AliESDv0;
18
19#define kXiMinus 3312
20#define kXiPlusBar -3312
21#define kOmegaMinus 3334
22#define kOmegaPlusBar -3334
23
24class AliESDcascade : public TObject {
25public:
26 AliESDcascade();
27
28 Double_t ChangeMassHypothesis(Double_t &v0q, Int_t code=kXiMinus);
29
30 Int_t GetPdgCode() const {return fPdgCode;}
31 Double_t GetEffMass() const {return fEffMass;}
32 Double_t GetChi2() const {return fChi2;}
33 void GetPxPyPz(Double_t &px, Double_t &py, Double_t &pz) const;
34 void GetXYZ(Double_t &x, Double_t &y, Double_t &z) const;
35 Double_t GetD(Double_t x0=0.,Double_t y0=0.,Double_t z0=0.) const;
36
37 void GetNPxPyPz(Double_t &px, Double_t &py, Double_t &pz) const {
38 px=fV0mom[0][0]; py=fV0mom[0][1]; pz=fV0mom[0][2];
39 }
40 Int_t GetNindex() const {return fV0idx[0];}
41 void GetPPxPyPz(Double_t &px, Double_t &py, Double_t &pz) const {
42 px=fV0mom[1][0]; py=fV0mom[1][1]; pz=fV0mom[1][2];
43 }
44 Int_t GetPindex() const {return fV0idx[1];}
45 void GetBPxPyPz(Double_t &px, Double_t &py, Double_t &pz) const {
46 px=fBachMom[0]; py=fBachMom[1]; pz=fBachMom[2];
47 }
48 Int_t GetBindex() const {return fBachIdx;}
49
50protected:
51 Int_t fPdgCode; // reconstructed cascade type (PDG code)
52 Double_t fEffMass; // reconstructed cascade effective mass
53 Double_t fChi2; // chi2 value
54 Double_t fPos[3]; // cascade vertex position (global)
55 Double_t fPosCov[6]; // covariance matrix of the vertex position
56
57 Int_t fV0idx[2]; // indeices of the V0 daughter tracks
58 Double_t fV0mom[2][3]; // V0 daughters' momenta (global)
59 Double_t fV0momCov[6]; // covariance matrix of the V0 momentum.
60
61 Int_t fBachIdx; // label of the bachelor track
62 Double_t fBachMom[3]; // bachelor momentum (global)
63 Double_t fBachMomCov[6]; // covariance matrix of the bachelor momentum.
64
65 ClassDef(AliESDcascade,1) // reconstructed cascade vertex
66};
67
68#endif
69
70