BOSS
7.0.4
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
v
Enumerations
_
e
f
g
h
i
l
m
o
p
r
s
t
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
w
x
Files
File List
File Members
All
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
!
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
w
z
Enumerations
d
e
g
h
p
r
s
t
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
Reconstruction/MdcPatRec/TrkBase/TrkBase-00-01-12/TrkBase/TrkVisitor.h
Go to the documentation of this file.
1
//--------------------------------------------------------------------------
2
// File and Version Information:
3
//
4
// Description: TrkVisitor is an implementation of the Visitor pattern
5
// for use in calculating various things for different types of
6
// trajectories. (See the book _Design Patterns_ or one of the
7
// authors for a definition of the Visitor pattern.) It is the
8
// abstract base class for visitors such as MomVisitor (the
9
// momentum visitor) and others.
10
//
11
// Environment:
12
// Software developed for the BaBar Detector at the SLAC B-Factory.
13
//
14
// Author(s): Justin Albert, Steve Schaffner
15
//
16
//------------------------------------------------------------------------
17
18
#ifndef TRKVISITOR_H
19
#define TRKVISITOR_H
20
21
class
HelixTraj
;
22
class
TrkCircleTraj
;
23
class
NeutTraj
;
24
class
TrkDifLineTraj
;
25
26
// Class interface //
27
class
TrkVisitor
{
28
29
public
:
30
31
TrkVisitor
();
32
virtual
~TrkVisitor
();
33
34
//********************************
35
//The visitor functions:
36
//********************************
37
38
virtual
void
trkVisitHelixTraj
(
const
HelixTraj
*) = 0;
39
virtual
void
trkVisitCircleTraj
(
const
TrkCircleTraj
*) = 0;
40
virtual
void
trkVisitNeutTraj
(
const
NeutTraj
*) = 0;
41
virtual
void
trkVisitLineTraj
(
const
TrkDifLineTraj
*) = 0;
42
43
44
};
45
46
#endif
HelixTraj
Definition:
InstallArea/include/TrkBase/TrkBase/HelixTraj.h:27
NeutTraj
Definition:
InstallArea/include/TrkBase/TrkBase/NeutTraj.h:26
TrkCircleTraj
Definition:
InstallArea/include/TrkFitter/TrkFitter/TrkCircleTraj.h:28
TrkDifLineTraj
Definition:
InstallArea/include/TrkFitter/TrkFitter/TrkDifLineTraj.h:26
TrkVisitor
Definition:
InstallArea/include/TrkBase/TrkBase/TrkVisitor.h:27
TrkVisitor::trkVisitCircleTraj
virtual void trkVisitCircleTraj(const TrkCircleTraj *)=0
TrkVisitor::trkVisitNeutTraj
virtual void trkVisitNeutTraj(const NeutTraj *)=0
TrkVisitor::~TrkVisitor
virtual ~TrkVisitor()
TrkVisitor::trkVisitLineTraj
virtual void trkVisitLineTraj(const TrkDifLineTraj *)=0
TrkVisitor::TrkVisitor
TrkVisitor()
TrkVisitor::trkVisitHelixTraj
virtual void trkVisitHelixTraj(const HelixTraj *)=0
source
Reconstruction
MdcPatRec
TrkBase
TrkBase-00-01-12
TrkBase
TrkVisitor.h
Generated by
1.9.6