00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "StCalibrationVertex.h"
00027 #include "StTrack.h"
00028 #if !defined(ST_NO_NAMESPACES)
00029 using std::copy;
00030 #endif
00031
00032 ClassImp(StCalibrationVertex)
00033
00034 static const char rcsid[] = "$Id: StCalibrationVertex.cxx,v 2.4 2009/11/23 16:34:05 fisyak Exp $";
00035
00036 StCalibrationVertex::StCalibrationVertex()
00037 {
00038 mType = kOtherVtxId;
00039 }
00040
00041 StCalibrationVertex::~StCalibrationVertex() {};
00042
00043 StVertexId
00044 StCalibrationVertex::type() const { return mType; }
00045
00046 unsigned int
00047 StCalibrationVertex::numberOfDaughters() const { return 0; }
00048
00049 StTrack*
00050 StCalibrationVertex::daughter(unsigned int) { return 0; }
00051
00052 const StTrack*
00053 StCalibrationVertex::daughter(unsigned int) const { return 0; }
00054
00055 StPtrVecTrack
00056 StCalibrationVertex::daughters(StTrackFilter&)
00057 {
00058 StPtrVecTrack vec;
00059 return vec;
00060 }
00061
00062 void
00063 StCalibrationVertex::addDaughter(StTrack*) { }
00064
00065 void
00066 StCalibrationVertex::removeDaughter(StTrack*) { }
00067
00068 void
00069 StCalibrationVertex::setType(StVertexId val) { mType = val; }