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