BOSS 7.0.9
BESIII Offline Software System
Loading...
Searching...
No Matches
TrkMomVisitor.cxx
Go to the documentation of this file.
1//--------------------------------------------------------------------------
2// File and Version Information:
3//
4// Description:
5//
6//
7// Environment:
8// Software developed for the BaBar Detector at the SLAC B-Factory.
9//
10// Author(s): Justin Albert, Steve Schaffner
11//
12//------------------------------------------------------------------------
14#include "TrkBase/TrkSimpTraj.h"
15
16
17//------------------------------------------------------------------------
19//------------------------------------------------------------------------
20}
21
22//------------------------------------------------------------------------
24//------------------------------------------------------------------------
25// accept this puppy
26
27 theTraj.visitAccept(this);
28}
29
30//------------------------------------------------------------------------
31void
33//------------------------------------------------------------------------
34// set the "array"
35
36 _ht = theTraj;
37 _ct = 0;
38 _nt = 0;
39 _lt = 0;
40}
41
42//------------------------------------------------------------------------
43void
45//------------------------------------------------------------------------
46// set the "array"
47
48 _ht = 0;
49 _ct = theTraj;
50 _nt = 0;
51 _lt = 0;
52}
53
54//------------------------------------------------------------------------
55void
57//------------------------------------------------------------------------
58// set the "array"
59
60 _ht = 0;
61 _ct = 0;
62 _nt = theTraj;
63 _lt = 0;
64}
65
66//------------------------------------------------------------------------
67void
69//------------------------------------------------------------------------
70// set the "array"
71
72 _ht = 0;
73 _ct = 0;
74 _nt = 0;
75 _lt = theTraj;
76}
77
78
79
virtual void trkVisitNeutTraj(const NeutTraj *)
virtual void trkVisitLineTraj(const TrkDifLineTraj *)
TrkMomVisitor(const TrkSimpTraj &)
virtual ~TrkMomVisitor()
virtual void trkVisitHelixTraj(const HelixTraj *)
virtual void trkVisitCircleTraj(const TrkCircleTraj *)
virtual void visitAccept(TrkVisitor *vis) const =0