Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
4341646f
Commit
4341646f
authored
Oct 06, 2017
by
Simon Spannagel
Browse files
Add some more file reading to Analysis.C
parent
80b2bd68
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/core/Analysis.C
View file @
4341646f
...
...
@@ -41,11 +41,13 @@ Analysis::Analysis(std::string config_file_name){
m_parameters
->
masked
[
m
]
=
true
;
}
// FIXME Loading of additional values:
// Load alignment parameters
if
(
!
m_parameters
->
readConditions
())
throw
ConfigFileUnavailableError
(
"conditions"
);
std
::
string
conditionsFile
=
global_config
.
get
<
std
::
string
>
(
"conditionsFile"
);
m_parameters
->
conditionsFile
=
conditionsFile
;
if
(
!
m_parameters
->
readConditions
())
throw
ConfigFileUnavailableError
(
conditionsFile
);
// Load mask file for the dut (if specified)
m_parameters
->
dutMaskFile
=
global_config
.
get
<
std
::
string
>
(
"dutMaskFile"
,
"defaultMask.dat"
);
m_parameters
->
readDutMask
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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