Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
5af4e592
Commit
5af4e592
authored
Nov 01, 2017
by
Morag Williams
Browse files
Damping factor default 1.0
parent
a91a753a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/algorithms/Prealignment.cpp
View file @
5af4e592
...
...
@@ -7,7 +7,7 @@ Prealignment::Prealignment(Configuration config, std::vector<Detector*> detector
:
Algorithm
(
std
::
move
(
config
),
std
::
move
(
detectors
))
{
LOG
(
INFO
)
<<
"Starting prealignment of detectors"
;
max_correlation_rms
=
m_config
.
get
<
double
>
(
"max_correlation_rms"
,
6.0
);
damping_factor
=
m_config
.
get
<
double
>
(
"damping_factor"
,
0.8
);
damping_factor
=
m_config
.
get
<
double
>
(
"damping_factor"
,
1.0
);
LOG
(
DEBUG
)
<<
"Setting max_correlation_rms to : "
<<
max_correlation_rms
;
LOG
(
DEBUG
)
<<
"Setting damping_factor to : "
<<
damping_factor
;
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment