]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/hfe/AliHFEsecVtxs.h
Updates for TRD HFE analysis
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEsecVtxs.h
CommitLineData
02524e30 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15//
16// Secondary vertexing container to store secondary vertex characteristics of
17// 2 or 3 particle sec vertex
18// from example, qusi-invariant mass, signed Lxy are stored
19//
20
c2690925 21#ifndef ALIHFESECVTXS_H
22#define ALIHFESECVTXS_H
23
02524e30 24#ifndef ROOT_TObject
25#include <TObject.h>
26#endif
27
28//________________________________________________________________
29class AliHFEsecVtxs : public TObject {
30
31 public:
32 AliHFEsecVtxs();
33 AliHFEsecVtxs(const AliHFEsecVtxs &p); // copy constructor
34 AliHFEsecVtxs &operator=(const AliHFEsecVtxs &); // assignment operator
35 virtual ~AliHFEsecVtxs();
36
37 Int_t GetTrkLabel1() const {return fTrkLabel1;}
38 Int_t GetTrkLabel2() const {return fTrkLabel2;}
faee3b18 39 Int_t GetMCCode() const {return fMCCode;}
02524e30 40 Double_t GetInvmass() const {return fInvmass;}
41 Double_t GetKFChi2() const {return fKFChi2;}
42 Double_t GetSignedLxy() const {return fSignedLxy;}
faee3b18 43 Double_t GetSignedLxy2() const {return fSignedLxy2;}
02524e30 44 Double_t GetKFIP() const {return fKFIP;}
faee3b18 45 Double_t GetKFIP2() const {return fKFIP2;}
02524e30 46
47 void SetTrkLabel1(Int_t label) {fTrkLabel1 = label;}
48 void SetTrkLabel2(Int_t label) {fTrkLabel2 = label;}
49 void SetInvmass(Double_t invmass) {fInvmass = invmass;}
50 void SetKFChi2(Double_t kfchi2) {fKFChi2 = kfchi2;}
51 void SetSignedLxy(Double_t signedlxy) {fSignedLxy = signedlxy;}
faee3b18 52 void SetSignedLxy2(Double_t signedlxy2) {fSignedLxy2 = signedlxy2;}
02524e30 53 void SetKFIP(Double_t kfip) {fKFIP = kfip;}
faee3b18 54 void SetKFIP2(Double_t kfip2) {fKFIP2 = kfip2;}
55 void SetMCCode(Int_t mccode) {fMCCode = mccode;}
02524e30 56
57 protected:
58 Int_t fTrkLabel1; // track 1 label associated to secvtx
59 Int_t fTrkLabel2; // track 2 label associated to secvtx
faee3b18 60 Int_t fMCCode; // track mc code
02524e30 61 Double_t fInvmass; // secvtx invariant mass
62 Double_t fKFChi2; // secvtx chi2
63 Double_t fSignedLxy; // secvtx signed Lxy
faee3b18 64 Double_t fSignedLxy2; // recalculated secvtx signed Lxy
65 Double_t fKFIP; // secvtx impact parameter
66 Double_t fKFIP2; // recalculated secvtx impact parameter
02524e30 67
68 private:
69
faee3b18 70 ClassDef(AliHFEsecVtxs,1);
02524e30 71};
72
73#endif