Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CEPCSW
Manage
Activity
Members
Labels
Plan
Issues
7
Issue boards
Milestones
Wiki
Code
Merge requests
14
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
cepc
CEPCSW
Merge requests
!201
Draft: Acts Track fitting
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Acts Track fitting
zhangyz/CEPCSW:ACTSfitting
into
master
Overview
0
Commits
15
Pipelines
2
Changes
91
Closed
Yizhou Zhang
requested to merge
zhangyz/CEPCSW:ACTSfitting
into
master
6 months ago
Overview
0
Commits
15
Pipelines
2
Changes
91
Expand
what's new:
Create new package "ActsHelper" to wrap the local event data model using by acts.
Create new service "RecActsSvc" to store the data across the acts algorithms.
The tracking algorithm is splited into different steps.
Adding track fitting algorithm.
Adding TPC geometry in ACTS format.
0
0
Merge request reports
Compare
master
version 1
6df4000e
6 months ago
master (base)
and
latest version
latest version
98307c94
15 commits,
6 months ago
version 1
6df4000e
14 commits,
6 months ago
91 files
+
9427
−
1286
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
91
Search (e.g. *.vue) (Ctrl+P)
Reconstruction/RecActsTracking/ActsHelper/include/ActsHelper/Algorithms/TrackFitting/RefittingCalibrator.hpp
0 → 100644
+
35
−
0
Options
#pragma once
#include
"Acts/EventData/MultiTrajectory.hpp"
#include
"Acts/EventData/SourceLink.hpp"
#include
"Acts/EventData/VectorMultiTrajectory.hpp"
#include
"Acts/Geometry/GeometryContext.hpp"
#include
"Acts/Geometry/GeometryIdentifier.hpp"
#include
"Acts/Surfaces/Surface.hpp"
#include
"Acts/Utilities/CalibrationContext.hpp"
namespace
Acts
{
class
ConstVectorMultiTrajectory
;
class
VectorMultiTrajectory
;
}
// namespace Acts
namespace
ActsHelper
{
struct
RefittingCalibrator
{
using
Proxy
=
Acts
::
VectorMultiTrajectory
::
TrackStateProxy
;
using
ConstProxy
=
Acts
::
ConstVectorMultiTrajectory
::
ConstTrackStateProxy
;
struct
RefittingSourceLink
{
ConstProxy
state
;
Acts
::
GeometryIdentifier
geometryId
()
const
{
return
state
.
referenceSurface
().
geometryId
();
}
};
void
calibrate
(
const
Acts
::
GeometryContext
&
gctx
,
const
Acts
::
CalibrationContext
&
cctx
,
const
Acts
::
SourceLink
&
sourceLink
,
Proxy
trackState
)
const
;
};
}
// namespace ActsHelper
Loading