]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/hfe/AliHFEpairs.cxx
Fix for correctly getting the CDB path when running with plugin (Diego)
[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 /* $Id$ */
17
18 //
19 //  Container class to store pair characteristics
20 //  for secondary vertex analysis
21 //  from example, qusi-invariant mass, signed Lxy are stored
22 //
23 // Authors:
24 //   MinJung Kweon <minjung@physi.uni-heidelberg.de>
25 //
26
27 #include "AliLog.h"
28 #include "AliHFEpairs.h"
29
30 ClassImp(AliHFEpairs)
31
32 //_______________________________________________________________________________________________
33 AliHFEpairs::AliHFEpairs():
34   fTrkLabel(0)
35   ,fPairCode(0)
36   ,fInvmass(0)
37   ,fKFChi2(0)
38   ,fOpenangle(0)
39   ,fCosOpenangle(0)
40   ,fSignedLxy(0)
41   ,fSignedLxy2(0)
42   ,fKFIP(0)
43   ,fKFIP2(0)
44
45   //
46   // Default constructor
47   //
48 }
49
50 //_______________________________________________________________________________________________
51 AliHFEpairs::AliHFEpairs(const AliHFEpairs &p):
52   TObject(p)
53   ,fTrkLabel(p.fTrkLabel)
54   ,fPairCode(p.fPairCode)
55   ,fInvmass(p.fInvmass)
56   ,fKFChi2(p.fKFChi2)
57   ,fOpenangle(p.fOpenangle)
58   ,fCosOpenangle(p.fCosOpenangle)
59   ,fSignedLxy(p.fSignedLxy)
60   ,fSignedLxy2(p.fSignedLxy2)
61   ,fKFIP(p.fKFIP)
62   ,fKFIP2(p.fKFIP2)
63
64   //
65   // Copy constructor
66   //
67 }
68
69 //_______________________________________________________________________________________________
70 AliHFEpairs&
71 AliHFEpairs::operator=(const AliHFEpairs &)
72 {
73   //
74   // Assignment operator
75   //
76
77   AliInfo("Not yet implemented.");
78   return *this;
79 }
80
81 //_______________________________________________________________________________________________
82 AliHFEpairs::~AliHFEpairs()
83 {
84   //
85   // Destructor
86   //
87
88   //cout << "Analysis Done." << endl;
89 }