StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StCalibrationVertex.cxx
1 /***************************************************************************
2  *
3  * $Id: StCalibrationVertex.cxx,v 2.4 2009/11/23 16:34:05 fisyak Exp $
4  *
5  * Author: Thomas Ullrich, Nov 2001
6  ***************************************************************************
7  *
8  * Description:
9  *
10  ***************************************************************************
11  *
12  * $Log: StCalibrationVertex.cxx,v $
13  * Revision 2.4 2009/11/23 16:34:05 fisyak
14  * Cleanup, remove dependence on dst tables, clean up software monitors
15  *
16  * Revision 2.3 2004/11/04 15:43:22 ullrich
17  * Added set funyion for type.
18  *
19  * Revision 2.2 2004/07/15 16:36:23 ullrich
20  * Removed all clone() declerations and definitions. Use StObject::clone() only.
21  *
22  * Revision 2.1 2001/11/10 23:52:13 ullrich
23  * Initial Revision.
24  *
25  **************************************************************************/
26 #include "StCalibrationVertex.h"
27 #include "StTrack.h"
28 #if !defined(ST_NO_NAMESPACES)
29 using std::copy;
30 #endif
31 
32 ClassImp(StCalibrationVertex)
33 
34 static const char rcsid[] = "$Id: StCalibrationVertex.cxx,v 2.4 2009/11/23 16:34:05 fisyak Exp $";
35 
37 {
38  mType = kOtherVtxId;
39 }
40 
41 StCalibrationVertex::~StCalibrationVertex() {/* noop */};
42 
43 StVertexId
44 StCalibrationVertex::type() const { return mType; }
45 
46 unsigned int
47 StCalibrationVertex::numberOfDaughters() const { return 0; }
48 
49 StTrack*
50 StCalibrationVertex::daughter(unsigned int) { return 0; }
51 
52 const StTrack*
53 StCalibrationVertex::daughter(unsigned int) const { return 0; }
54 
55 StPtrVecTrack
56 StCalibrationVertex::daughters(StTrackFilter&)
57 {
58  StPtrVecTrack vec;
59  return vec;
60 }
61 
62 void
63 StCalibrationVertex::addDaughter(StTrack*) { /* noop */ }
64 
65 void
66 StCalibrationVertex::removeDaughter(StTrack*) { /* noop */ }
67 
68 void
69 StCalibrationVertex::setType(StVertexId val) { mType = val; }