]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/hfe/AliHFEsecVtxs.cxx
possibility to set externally the reference value for the Ntrk-Vtx correction (J...
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEsecVtxs.cxx
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// Authors:
21// MinJung Kweon <minjung@physi.uni-heidelberg.de>
22//
23
24#include "AliLog.h"
25#include "AliHFEsecVtxs.h"
26
27ClassImp(AliHFEsecVtxs)
28
29//_______________________________________________________________________________________________
30AliHFEsecVtxs::AliHFEsecVtxs():
31 fTrkLabel1(0)
32 ,fTrkLabel2(0)
faee3b18 33 ,fMCCode(0)
02524e30 34 ,fInvmass(0)
35 ,fKFChi2(0)
36 ,fSignedLxy(0)
faee3b18 37 ,fSignedLxy2(0)
02524e30 38 ,fKFIP(0)
faee3b18 39 ,fKFIP2(0)
02524e30 40{
41 //
42 // Default constructor
43 //
44}
45
46//_______________________________________________________________________________________________
47AliHFEsecVtxs::AliHFEsecVtxs(const AliHFEsecVtxs &p):
48 TObject(p)
49 ,fTrkLabel1(p.fTrkLabel1)
50 ,fTrkLabel2(p.fTrkLabel2)
faee3b18 51 ,fMCCode(p.fMCCode)
02524e30 52 ,fInvmass(p.fInvmass)
53 ,fKFChi2(p.fKFChi2)
54 ,fSignedLxy(p.fSignedLxy)
faee3b18 55 ,fSignedLxy2(p.fSignedLxy2)
02524e30 56 ,fKFIP(p.fKFIP)
faee3b18 57 ,fKFIP2(p.fKFIP2)
02524e30 58{
59 //
60 // Copy constructor
61 //
62}
63
64//_______________________________________________________________________________________________
65AliHFEsecVtxs&
66AliHFEsecVtxs::operator=(const AliHFEsecVtxs &)
67{
68 // Assignment operator
69 AliInfo("Not yet implemented.");
70 return *this;
71}
72
73//_______________________________________________________________________________________________
74AliHFEsecVtxs::~AliHFEsecVtxs()
75{
76 // Destructor
77 //cout << "Analysis Done." << endl;
78}