]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGHF/hfe/AliHFEsecVtxs.cxx
Bug fix
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEsecVtxs.cxx
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
27 ClassImp(AliHFEsecVtxs)
28
29 //_______________________________________________________________________________________________
30 AliHFEsecVtxs::AliHFEsecVtxs():
31   fTrkLabel1(0)
32   ,fTrkLabel2(0)
33   ,fMCCode(0)
34   ,fInvmass(0)
35   ,fKFChi2(0)
36   ,fSignedLxy(0)
37   ,fSignedLxy2(0)
38   ,fKFIP(0)
39   ,fKFIP2(0)
40
41   //
42   // Default constructor
43   //
44 }
45
46 //_______________________________________________________________________________________________
47 AliHFEsecVtxs::AliHFEsecVtxs(const AliHFEsecVtxs &p):
48   TObject(p)
49   ,fTrkLabel1(p.fTrkLabel1)
50   ,fTrkLabel2(p.fTrkLabel2)
51   ,fMCCode(p.fMCCode)
52   ,fInvmass(p.fInvmass)
53   ,fKFChi2(p.fKFChi2)
54   ,fSignedLxy(p.fSignedLxy)
55   ,fSignedLxy2(p.fSignedLxy2)
56   ,fKFIP(p.fKFIP)
57   ,fKFIP2(p.fKFIP2)
58
59   //
60   // Copy constructor
61   //
62 }
63
64 //_______________________________________________________________________________________________
65 AliHFEsecVtxs&
66 AliHFEsecVtxs::operator=(const AliHFEsecVtxs &)
67 {
68   // Assignment operator
69   AliInfo("Not yet implemented.");
70   return *this;
71 }
72
73 //_______________________________________________________________________________________________
74 AliHFEsecVtxs::~AliHFEsecVtxs()
75 {
76   // Destructor
77   //cout << "Analysis Done." << endl;
78 }