Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Computing
cbmroot
Commits
cd4729c3
Commit
cd4729c3
authored
1 year ago
by
Sergei Zharko
Browse files
Options
Downloads
Patches
Plain Diff
[bugfix] CA: parameter configuration fix
parent
d0197b5f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1305
[bugfix] CA: parameter configuration fix
Pipeline
#23895
passed
1 year ago
Stage: documentation
Stage: deploy
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
macro/L1/configs/ca_params_sts.yaml
+1
-1
1 addition, 1 deletion
macro/L1/configs/ca_params_sts.yaml
reco/L1/L1Algo/L1ConfigRW.cxx
+1
-1
1 addition, 1 deletion
reco/L1/L1Algo/L1ConfigRW.cxx
with
2 additions
and
2 deletions
macro/L1/configs/ca_params_sts.yaml
+
1
−
1
View file @
cd4729c3
...
@@ -48,7 +48,7 @@ ca:
...
@@ -48,7 +48,7 @@ ca:
# Developement flags
# Developement flags
dev
:
dev
:
ignore_hit_search_areas
:
tru
e
ignore_hit_search_areas
:
fals
e
use_of_original_field
:
false
use_of_original_field
:
false
match_doublets_via_mc
:
false
match_doublets_via_mc
:
false
match_triplets_via_mc
:
false
match_triplets_via_mc
:
false
...
...
This diff is collapsed.
Click to expand it.
reco/L1/L1Algo/L1ConfigRW.cxx
+
1
−
1
View file @
cd4729c3
...
@@ -315,7 +315,7 @@ L1CAIteration L1ConfigRW::ReadSingleCAIteration(const YAML::Node& node, const L1
...
@@ -315,7 +315,7 @@ L1CAIteration L1ConfigRW::ReadSingleCAIteration(const YAML::Node& node, const L1
iter
.
SetPrimaryFlag
(
node
[
"is_primary"
].
as
<
bool
>
(
defaultIter
.
GetPrimaryFlag
()));
iter
.
SetPrimaryFlag
(
node
[
"is_primary"
].
as
<
bool
>
(
defaultIter
.
GetPrimaryFlag
()));
iter
.
SetElectronFlag
(
node
[
"is_electron"
].
as
<
bool
>
(
defaultIter
.
GetElectronFlag
()));
iter
.
SetElectronFlag
(
node
[
"is_electron"
].
as
<
bool
>
(
defaultIter
.
GetElectronFlag
()));
iter
.
SetTrackFromTripletsFlag
(
node
[
"is_track_from_triplets"
].
as
<
bool
>
(
defaultIter
.
GetTrackFromTripletsFlag
()));
iter
.
SetTrackFromTripletsFlag
(
node
[
"is_track_from_triplets"
].
as
<
bool
>
(
defaultIter
.
GetTrackFromTripletsFlag
()));
iter
.
SetExtendTracksFlag
(
node
[
"i
f
_extend_tracks"
].
as
<
bool
>
(
defaultIter
.
GetExtendTracksFlag
()));
iter
.
SetExtendTracksFlag
(
node
[
"i
s
_extend_tracks"
].
as
<
bool
>
(
defaultIter
.
GetExtendTracksFlag
()));
iter
.
SetJumpedFlag
(
node
[
"is_jumped"
].
as
<
bool
>
(
defaultIter
.
GetJumpedFlag
()));
iter
.
SetJumpedFlag
(
node
[
"is_jumped"
].
as
<
bool
>
(
defaultIter
.
GetJumpedFlag
()));
iter
.
SetMinNhits
(
node
[
"min_n_hits"
].
as
<
int
>
(
defaultIter
.
GetMinNhits
()));
iter
.
SetMinNhits
(
node
[
"min_n_hits"
].
as
<
int
>
(
defaultIter
.
GetMinNhits
()));
iter
.
SetMinNhitsStation0
(
node
[
"min_n_hits_station_0"
].
as
<
int
>
(
defaultIter
.
GetMinNhitsStation0
()));
iter
.
SetMinNhitsStation0
(
node
[
"min_n_hits_station_0"
].
as
<
int
>
(
defaultIter
.
GetMinNhitsStation0
()));
...
...
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