Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eicd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
EIC
eicd
Commits
4d60454b
Commit
4d60454b
authored
3 years ago
by
Sylvester Joosten
Browse files
Options
Downloads
Patches
Plain Diff
Fix rdf issues
parent
f634cf61
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!69
Fix rdf issues
Pipeline
#27572
failed
3 years ago
Stage: config
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
eic_data.yaml
+8
-3
8 additions, 3 deletions
eic_data.yaml
with
8 additions
and
3 deletions
eic_data.yaml
+
8
−
3
View file @
4d60454b
...
...
@@ -218,7 +218,7 @@ components:
ExtraCode
:
declaration
:
"
CovXY()
:
xx{0},
yy{0},
xy{0}
{}
\n
CovXY(double
vx,
double
vy,
double
vxy)
\n
CovXY(double
vx,
double
vy,
double
vxy
=
0
)
\n
:
xx{static_cast<float>(vx)},
yy{static_cast<float>(vy)},
xy{static_cast<float>(vxy)}
{}
\n
float
operator()(unsigned
i,
unsigned
j)
const
{
\n
//
diagonal
\n
...
...
@@ -252,6 +252,8 @@ components:
CovXYZ(double
vx,
double
vy,
double
vz,
double
vxy,
double
vxz,
double
vyz)
\n
:
xx{static_cast<float>(vx)},
yy{static_cast<float>(vy)},
zz{static_cast<float>(vz)},
\n
xy{static_cast<float>(vxy)},
xz{static_cast<float>(vxz)},
yz{static_cast<float>(vyz)}
{}
\n
CovXYZ(double
vx,
double
vy,
double
vz)
\n
:
CovXYZ(vx,
vy,
vz,
0,
0,
0)
{}
\n
float
operator()(unsigned
i,
unsigned
j)
const
{
\n
//
diagonal
\n
if
(i
==
j)
{
\n
...
...
@@ -529,11 +531,14 @@ datatypes:
Members
:
-
int32_t type // Type of track parameters (-1/seed, 0/head, ...)
-
eic::VectorXY loc // 2D location on surface
-
eic::CovXY covLoc // Covariance on loc
-
float theta // Track polar angle [rad]
-
float phi // Track azimuthal angle [rad]
-
float qOverP // [e/GeV]
-
eic::CovXYZ covMomentum // Covariance on theta, phi and qOverP
-
float time // Track time [ns]
-
std::array<float, 21> covMatrix // Lower triangle of the track parameter covariance matrix, flattened similar to CovXYZ
-
float timeError // Error on the time
-
float charge // Particle charge
OneToOneRelations
:
-
eic::Trajectory trajectory // Trajectory associated with these track parameters
...
...
@@ -545,7 +550,7 @@ datatypes:
-
float chi2 // Total chi2 (sum) of the track fit
-
int32_t ndf // Numbers of degrees of freedom of the track fit
-
eic::VectorXYZ momentum // Track 3-momentum at the vertex [GeV]
-
eic::CovXYZ
m
omentum
Error
// Covariance matrix on the momentum
-
eic::CovXYZ
covM
omentum
// Covariance matrix on the momentum
-
float time // Track time at the vertex [ns]
-
float timeError // Error on the track vertex time
-
float charge // Particle charge
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment