Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Achim Morschhauser
GeomagLogger
Commits
b291ed76
Commit
b291ed76
authored
Dec 14, 2021
by
Achim Morschhauser
Browse files
Change outputformat for multiplying calibration constants
parent
f254a8bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Obs_Calibration_Vector.cpp
View file @
b291ed76
...
...
@@ -118,8 +118,12 @@ int Obs_Calibration_Vector::multiply_scale(std::vector<double> &multiply,
return
(
-
1
);
}
std
::
cerr
<<
"Calibration constants changed! "
<<
"OLD: "
<<
this
->
scale
[
0
];
std
::
cerr
<<
"Calibration constants multiplied by "
;
for
(
auto
i
:
multiply
){
std
::
cerr
<<
i
<<
"/"
;
}
std
::
cerr
<<
std
::
endl
;
std
::
cerr
<<
"OLD: "
<<
this
->
scale
[
0
]
<<
" "
;
for
(
int
i
=
pos
;
i
<
std
::
min
(
N
,(
int
)
multiply
.
size
());
i
++
){
this
->
scale
[
i
]
*=
multiply
[
i
-
pos
];
...
...
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