]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliVertexer.cxx
Bug corrected
[u/mrichter/AliRoot.git] / STEER / AliVertexer.cxx
CommitLineData
2257f27e 1#include <AliESDVertex.h>
2#include <AliVertexer.h>
3
4ClassImp(AliVertexer)
5
6//////////////////////////////////////////////////////////////////////
7// Base class for primary vertex reconstruction //
8// AliESDVertexer is a class for full 3D primary vertex finding //
9// derived classes: AliITSVertexer //
10// //
11//////////////////////////////////////////////////////////////////////
12
13//______________________________________________________________________
14AliVertexer::AliVertexer() {
15 // Default Constructor
16
17 fCurrentVertex = 0;
18 SetDebug();
19 SetFirstEvent(0);
20 SetLastEvent(0);
21}
22
23
24//______________________________________________________________________
25AliVertexer::AliVertexer(const AliVertexer &vtxr) : TObject(vtxr) {
26 // Copy constructor
27 // Copies are not allowed. The method is protected to avoid misuse.
28 Error("AliVertexer","Copy constructor not allowed\n");
29}
30
31//______________________________________________________________________
32AliVertexer& AliVertexer::operator=(const AliVertexer& /* vtxr */){
33 // Assignment operator
34 // Assignment is not allowed. The method is protected to avoid misuse.
35 Error("= operator","Assignment operator not allowed\n");
36 return *this;
37}
38
39//______________________________________________________________________
40AliVertexer::~AliVertexer() {
41 // Default Destructor
42 // The objects pointed by the following pointers are not owned
43 // by this class and are not deleted
44
45 fCurrentVertex = 0;
46}