]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliVertex.cxx
changes to be compliant with Eff C++ rules
[u/mrichter/AliRoot.git] / STEER / AliVertex.cxx
CommitLineData
8a553be2 1/**************************************************************************
2 * Copyright(c) 2006-2008, 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//-----------------------------------------------------------------
17// Implementation of the base Vertex class
18// This class contains the Secondary Vertex
19// of a set of tracks
20// And it is the base class for primary vertices
21// Origin: F.Prino, Torino, prino@to.infn.it
22//-----------------------------------------------------------------
23
24#include "AliVertex.h"
25
26
27ClassImp(AliVertex)
28
29//--------------------------------------------------------------------------
fe12e09c 30AliVertex::AliVertex() :
31 TNamed(),
32 fSigma(0),
33 fNContributors(0)
34{
8a553be2 35//
36// Default Constructor, set everything to 0
37//
38 for(Int_t k=0;k<3;k++) fPosition[k] = 0;
8a553be2 39}
40
41//--------------------------------------------------------------------------
42AliVertex::AliVertex(Double_t position[3],Double_t dispersion,
fe12e09c 43 Int_t nContributors):
44 TNamed(),
45 fSigma(dispersion),
46 fNContributors(nContributors)
47{
8a553be2 48 //
49 // Standard Constructor
50 //
51
52 for(Int_t k=0;k<3;k++) fPosition[k] = position[k];
8a553be2 53 SetName("BaseVertex");
54
55}
56
2d57349e 57//--------------------------------------------------------------------------
fe12e09c 58AliVertex::AliVertex(const AliVertex &source):
59 TNamed(source),
60 fSigma(source.GetDispersion()),
61 fNContributors(source.GetNContributors())
62{
2d57349e 63 //
64 // Copy constructor
65 //
66 for(Int_t i=0;i<3;i++)fPosition[i] = source.fPosition[i];
2d57349e 67}
68
69//--------------------------------------------------------------------------
70AliVertex &AliVertex::operator=(const AliVertex &source){
71 //
72 // assignment operator
73 //
74 if(&source == this) return *this;
75 this->SetName(source.GetName());
76 this->SetTitle(source.GetTitle());
77 for(Int_t i=0;i<3;i++)fPosition[i] = source.fPosition[i];
78 fSigma = source.GetDispersion();
79 fNContributors = source.GetNContributors();
80 return *this;
81}
82
8a553be2 83
84//--------------------------------------------------------------------------
85AliVertex::~AliVertex() {
86//
87// Default Destructor
88//
89
90}
91//--------------------------------------------------------------------------
92void AliVertex::GetXYZ(Double_t position[3]) const {
93//
94// Return position of the vertex in global frame
95//
96 position[0] = fPosition[0];
97 position[1] = fPosition[1];
98 position[2] = fPosition[2];
99
100 return;
101}
102//--------------------------------------------------------------------------
103void AliVertex::Print(Option_t* /*option*/) const {
104//
105// Print out information on all data members
106//
107 printf("Vertex position:\n");
108 printf(" x = %f\n",fPosition[0]);
109 printf(" y = %f\n",fPosition[1]);
110 printf(" z = %f\n",fPosition[2]);
111 printf(" Dispersion = %f\n",fSigma);
112 printf(" # tracks = %d\n",fNContributors);
113
114 return;
115}
116
117
118
119