00001 /************************************************************************** 00002 * Copyright(c) 1998-2008, ALICE Experiment at CERN, All rights reserved. * 00003 * * 00004 * Author: The ALICE Off-line Project. * 00005 * Contributors are mentioned in the code where appropriate. * 00006 * * 00007 * Permission to use, copy, modify and distribute this software and its * 00008 * documentation strictly for non-commercial purposes is hereby granted * 00009 * without fee, provided that the above copyright notice appears in all * 00010 * copies and that both the copyright notice and this permission notice * 00011 * appear in the supporting documentation. The authors make no claims * 00012 * about the suitability of this software for any purpose. It is * 00013 * provided "as is" without express or implied warranty. * 00014 **************************************************************************/ 00015 00016 00017 //------------------------------------------------------------------------- 00018 // base class for ESD and AOD vertices 00019 // Author: A. Dainese 00020 //------------------------------------------------------------------------- 00021 00022 #include "VVertex.h" 00023 00024 ClassImp(VVertex) 00025 00026 VVertex::VVertex(const VVertex& vVert) : 00027 TNamed(vVert) { } // Copy constructor 00028 00029 VVertex& VVertex::operator=(const VVertex& vVert) 00030 { if (this!=&vVert) { 00031 TNamed::operator=(vVert); 00032 } 00033 00034 return *this; 00035 }
1.5.9