ROOT logo
/**************************************************************************
 * Copyright(c) 1998-2008, ALICE Experiment at CERN, All rights reserved. *
 *                                                                        *
 * Author: The ALICE Off-line Project.                                    *
 * Contributors are mentioned in the code where appropriate.              *
 *                                                                        *
 * Permission to use, copy, modify and distribute this software and its   *
 * documentation strictly for non-commercial purposes is hereby granted   *
 * without fee, provided that the above copyright notice appears in all   *
 * copies and that both the copyright notice and this permission notice   *
 * appear in the supporting documentation. The authors make no claims     *
 * about the suitability of this software for any purpose. It is          *
 * provided "as is" without express or implied warranty.                  *
 **************************************************************************/


//-------------------------------------------------------------------------
//     base class for ESD and AOD vertices
//     Author: A. Dainese
//-------------------------------------------------------------------------

#include "AliVVertex.h"
#include "AliVTrack.h"

ClassImp(AliVVertex)

AliVVertex::AliVVertex(const AliVVertex& vVert) :
  TNamed(vVert) { } // Copy constructor

AliVVertex& AliVVertex::operator=(const AliVVertex& vVert)
{ 
    // Copy constructor
    if (this!=&vVert) { 
	TNamed::operator=(vVert); 
    }
  
  return *this; 
}

Int_t AliVVertex::GetBC() const 
{
  // get BCID
  return AliVTrack::kTOFBCNA;
}
 AliVVertex.cxx:1
 AliVVertex.cxx:2
 AliVVertex.cxx:3
 AliVVertex.cxx:4
 AliVVertex.cxx:5
 AliVVertex.cxx:6
 AliVVertex.cxx:7
 AliVVertex.cxx:8
 AliVVertex.cxx:9
 AliVVertex.cxx:10
 AliVVertex.cxx:11
 AliVVertex.cxx:12
 AliVVertex.cxx:13
 AliVVertex.cxx:14
 AliVVertex.cxx:15
 AliVVertex.cxx:16
 AliVVertex.cxx:17
 AliVVertex.cxx:18
 AliVVertex.cxx:19
 AliVVertex.cxx:20
 AliVVertex.cxx:21
 AliVVertex.cxx:22
 AliVVertex.cxx:23
 AliVVertex.cxx:24
 AliVVertex.cxx:25
 AliVVertex.cxx:26
 AliVVertex.cxx:27
 AliVVertex.cxx:28
 AliVVertex.cxx:29
 AliVVertex.cxx:30
 AliVVertex.cxx:31
 AliVVertex.cxx:32
 AliVVertex.cxx:33
 AliVVertex.cxx:34
 AliVVertex.cxx:35
 AliVVertex.cxx:36
 AliVVertex.cxx:37
 AliVVertex.cxx:38
 AliVVertex.cxx:39
 AliVVertex.cxx:40
 AliVVertex.cxx:41
 AliVVertex.cxx:42
 AliVVertex.cxx:43
 AliVVertex.cxx:44