]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/hfe/AliHFEpairs.cxx
0e71983d7c10ea69dcc2ce81ea257f0b894eb233
[u/mrichter/AliRoot.git] / PWG3 / hfe / AliHFEpairs.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 //  Container class to store pair characteristics
17 //  for secondary vertex analysis
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 "AliHFEpairs.h"
26
27 ClassImp(AliHFEpairs)
28
29 //_______________________________________________________________________________________________
30 AliHFEpairs::AliHFEpairs():
31   fTrkLabel(0)
32   ,fPairCode(0)
33   ,fInvmass(0)
34   ,fKFChi2(0)
35   ,fOpenangle(0)
36   ,fCosOpenangle(0)
37   ,fSignedLxy(0)
38   ,fKFIP(0)
39
40   //
41   // Default constructor
42   //
43 }
44
45 //_______________________________________________________________________________________________
46 AliHFEpairs::AliHFEpairs(const AliHFEpairs &p):
47   TObject(p)
48   ,fTrkLabel(p.fTrkLabel)
49   ,fPairCode(p.fPairCode)
50   ,fInvmass(p.fInvmass)
51   ,fKFChi2(p.fKFChi2)
52   ,fOpenangle(p.fOpenangle)
53   ,fCosOpenangle(p.fCosOpenangle)
54   ,fSignedLxy(p.fSignedLxy)
55   ,fKFIP(p.fKFIP)
56
57   //
58   // Copy constructor
59   //
60 }
61
62 //_______________________________________________________________________________________________
63 AliHFEpairs&
64 AliHFEpairs::operator=(const AliHFEpairs &)
65 {
66   //
67   // Assignment operator
68   //
69
70   AliInfo("Not yet implemented.");
71   return *this;
72 }
73
74 //_______________________________________________________________________________________________
75 AliHFEpairs::~AliHFEpairs()
76 {
77   //
78   // Destructor
79   //
80
81   //cout << "Analysis Done." << endl;
82 }