]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDvertex.cxx
unload TPC clusters
[u/mrichter/AliRoot.git] / STEER / AliESDvertex.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 //                                                                     //
20 //       Prototype ESD class                                           //
21 //                                                                     //
22 /////////////////////////////////////////////////////////////////////////
23
24 #include "Riostream.h"
25
26 #include "AliESDvertex.h"
27
28 ClassImp(AliESDvertex)
29
30 //_______________________________________________________________________
31 AliESDvertex::AliESDvertex():
32   fNPrimary(0),
33   fCoordinates(3),
34   fErrorMatrix(6),
35   fPrimaryTracks(0),
36   fEffectiveMass(0),
37   fEffectiveMassError(0)
38 {
39   cout << "ESDvertex def ctor" << endl;
40 }
41
42 //_______________________________________________________________________
43 AliESDvertex::AliESDvertex(const AliESDvertex &esdv):
44   TObject(esdv),
45   fNPrimary(0),
46   fCoordinates(0),
47   fErrorMatrix(0),
48   fPrimaryTracks(0),
49   fEffectiveMass(0),
50   fEffectiveMassError(0)
51 {
52 }
53
54