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