EIC Software
Reference for
EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
BeastMagneticField
delphes_EIC
Doxygen_Assist
east
eic-smear
EicRoot
blob
master
base
cbmbase
cbmdata
dbase
eic
ayk
base
cad
calorimetry
detectors
event
field
htc
eichtcLinkDef.h
EicHtcTask.cxx
EicHtcTask.h
geant.cxx
geant.h
htclib.h
KalmanFilter.cxx
KalmanFilter.h
KalmanNode.cxx
KalmanNode.h
MediaBank.cxx
MediaBank.h
MediaLayer.cxx
MediaLayer.h
MediaSlice.cxx
MediaSlice.h
MediaSliceArray.cxx
MediaSliceArray.h
misc.cxx
misc.h
runge-kutta.cxx
runge-kutta.h
RungeKuttaRequest.cxx
RungeKuttaRequest.h
SensitiveVolume.cxx
SensitiveVolume.h
TrKalmanFilter.cxx
TrKalmanFilter.h
TrKalmanNode.cxx
TrKalmanNode.h
TrKalmanNodeLocation.cxx
TrKalmanNodeLocation.h
htree
infrastructure
jana
proto
tracking
eventdisplay
examples
fairtools
field
gconfig
geane
genfit
GenfitTools
geobase
geometry
input
littrack
parbase
passive
pCDR-2018
pid
pnddata
PndTools
rich
trackbase
eicsmear-jetexample
eicsmeardetectors
EicToyModel
estarlight
Fun4All-lmon
fun4all_coresoftware
fun4all_eic_qa
fun4all_eic_tutorials
fun4all_eicdetectors
fun4all_eicmacros
fun4all_g4jleic
fun4all_GenFit
fun4all_macros
fun4all_tutorials
g4exampledetector
g4lblvtx
online_distribution
PEPSI
doxygen_mainpage.h
File Members
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
TrKalmanNode.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file TrKalmanNode.h
1
//
2
// AYK (ayk@bnl.gov)
3
//
4
// Forward detector tracking application of the Kalman filter stuff;
5
// ported from HERMES/OLYMPUS sources; cleaned up 2014/10/17;
6
//
7
8
#include <
EicTrackingDigiHit.h
>
9
10
#include <
KalmanFilter.h
>
11
#include <
TrKalmanNodeLocation.h
>
12
13
class
SensitiveVolume
;
14
class
EicTrackingDigiHit
;
15
struct
t_particle_group
;
16
17
#ifndef _TR_KALMAN_NODE_
18
#define _TR_KALMAN_NODE_
19
20
enum
MfieldMode
{
WithField
,
NoField
};
21
22
class
TrKalmanNode
:
public
KalmanNode
{
23
// NB: in particular want TrKalmanFilter class to be able to use
24
// protected members of KalmanNode class;
25
friend
class
TrKalmanFilter
;
26
27
public
:
28
TrKalmanNode
():
mInversedMomentum
(0.0),
mHit
(0),
mLocation
(0),
mActive
(
true
),
mSensitiveVolume
(0) {};
29
30
// No validity check?;
31
void
SetMomentum
(
double
value
) {
mInversedMomentum
= 1./
value
; };
32
double
GetInversedMomentum
()
const
{
return
mInversedMomentum
; };
33
void
UpdateInversedMomentum
(
double
value
) {
mInversedMomentum
+=
value
; };
34
35
int
SetMeasurementNoise
(
KfMatrix
*W) {
V
->
CopyFrom
(W);
return
0; };
36
void
InflateMeasurementNoise
(
double
scale);
37
38
// Get magnetic field on an XY-plane of this node (orthogonal to KF Z axis);
39
int
GetMagneticField
(
double
xy[2], TVector3 &B);
40
41
// Assign hit pointer for this node;
42
void
SetHit
(
EicTrackingDigiHit
*hit) {
mHit
= hit; };
43
bool
HasHit
()
const
{
return
mHit
; };
44
45
double
GetZ
()
const
{
return
mZ
; };
46
47
void
SetLocation
(
TrKalmanNodeLocation
*location) {
mLocation
= location; };
48
TrKalmanNodeLocation
*
GetLocation
()
const
{
return
mLocation
; };
49
50
void
SetActiveFlag
(
bool
flag) {
mActive
= flag; };
51
bool
IsActive
()
const
{
return
mActive
; };
52
53
void
SetSensitiveVolume
(
SensitiveVolume
*sv) {
mSensitiveVolume
= sv; };
54
SensitiveVolume
*
GetSensitiveVolume
()
const
{
return
mSensitiveVolume
; };
55
56
//private:
57
// Inversed momentum;
58
double
mInversedMomentum
;
59
60
EicTrackingDigiHit
*
mHit
;
61
62
TrKalmanNodeLocation
*
mLocation
;
63
64
SensitiveVolume
*
mSensitiveVolume
;
65
66
// If 'true', this node will be included in the linked list in kf->BuildNodeList();
67
bool
mActive
;
68
69
TrKalmanNode
*
GetPrev
(
KalmanFilter::Direction
fb) {
70
return
static_cast <
TrKalmanNode
*> (
KalmanNode::GetPrev
(fb));
71
};
72
TrKalmanNode
*
GetNext
(
KalmanFilter::Direction
fb) {
73
return
static_cast <
TrKalmanNode
*> (
KalmanNode::GetNext
(fb));
74
};
75
76
int
PerformRungeKuttaStep
(
KalmanFilter::Direction
fb,
double
pout[],
double
rkd[5][5]);
77
};
78
79
#endif
EicRoot
blob
master
eic
htc
TrKalmanNode.h
Built by
Jin Huang
. updated:
Mon Jan 22 2024 12:43:35
using
1.8.2 with
EIC GitHub integration