Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!57877
further tests of ActsTrkEvent
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
further tests of ActsTrkEvent
wolter/athena:tests-ActsTrkEvent
into
master
Overview
29
Commits
7
Pipelines
4
Changes
5
Merged
Marcin Wolter
requested to merge
wolter/athena:tests-ActsTrkEvent
into
master
2 years ago
Overview
15
Commits
7
Pipelines
4
Changes
5
Expand
Here new functionalities and tests are added to MultiTrajectory.
Edited
2 years ago
by
Marcin Wolter
0
0
Merge request reports
Compare
master
version 6
215d22d8
2 years ago
version 5
5c328cb7
2 years ago
version 4
910aeb12
2 years ago
version 3
1455e1e2
2 years ago
version 2
83280279
2 years ago
version 1
0f603c29
2 years ago
master (base)
and
latest version
latest version
87e731ec
7 commits,
2 years ago
version 6
215d22d8
6 commits,
2 years ago
version 5
5c328cb7
5 commits,
2 years ago
version 4
910aeb12
4 commits,
2 years ago
version 3
1455e1e2
3 commits,
2 years ago
version 2
83280279
2 commits,
2 years ago
version 1
0f603c29
1 commit,
2 years ago
5 files
+
405
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
Tracking/Acts/ActsTrkEvent/ActsTrkEvent/MultiTrajectory.h
+
28
−
5
Options
@@ -95,18 +95,41 @@ namespace ActsTrk {
* @param index
* @return TrackStateProxy::Parameters
*/
typename
ConstTrackStateProxy
::
Parameters
parameters_impl
(
IndexType
index
)
const
;
ATH_MEMBER_REQUIRES
(
RWState
==
IsReadWrite
,
typename
TrackStateProxy
::
Parameters
)
parameters_impl
(
IndexType
index
);
typename
ConstTrackStateProxy
::
Parameters
parameters_impl
(
IndexType
index
)
const
{
return
trackParameters
().
at
(
index
)
->
paramsEigen
();
};
ATH_MEMBER_REQUIRES
(
RWState
==
IsReadWrite
,
typename
TrackStateProxy
::
Parameters
)
parameters_impl
(
IndexType
index
){
return
trackParameters
().
at
(
index
)
->
paramsEigen
();
}
/**
* @brief obtain covariances for a state at given index
*
* @param index
* @return TrackStateProxy::Covariance
*/
typename
ConstTrackStateProxy
::
Covariance
covariance_impl
(
IndexType
index
)
const
;
ATH_MEMBER_REQUIRES
(
RWState
==
IsReadWrite
,
typename
TrackStateProxy
::
Covariance
)
covariance_impl
(
IndexType
index
);
*/
typename
ConstTrackStateProxy
::
Covariance
covariance_impl
(
IndexType
index
)
const
{
return
trackMeasurements
().
at
(
index
)
->
covMatrixEigen
();
};
ATH_MEMBER_REQUIRES
(
RWState
==
IsReadWrite
,
typename
TrackStateProxy
::
Covariance
)
covariance_impl
(
IndexType
index
)
{
return
trackMeasurements
().
at
(
index
)
->
covMatrixEigen
();
}
/**
* @brief obtain jacobian for a state at given index
*
* @param index
* @return TrackStateProxy::Covariance
*/
inline
typename
ConstTrackStateProxy
::
Covariance
jacobian_impl
(
IndexType
index
)
const
{
return
trackJacobians
().
at
(
index
)
->
jacEigen
();
};
ATH_MEMBER_REQUIRES
(
RWState
==
IsReadWrite
,
typename
TrackStateProxy
::
Covariance
)
jacobian_impl
(
IndexType
index
)
{
return
trackJacobians
().
at
(
index
)
->
jacEigen
();
}
/**
* @brief size of the MTJ
*
Loading