Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ApplicationCore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container 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
ChimeraTK Mirror
ApplicationCore
Commits
0f88c5ff
Commit
0f88c5ff
authored
3 years ago
by
Martin Christoph Hierholzer
Browse files
Options
Downloads
Patches
Plain Diff
TestFacility: throw exception if attempting to set default value after start of application
parent
e9d6578e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/TestFacility.h
+6
-0
6 additions, 0 deletions
include/TestFacility.h
with
6 additions
and
0 deletions
include/TestFacility.h
+
6
−
0
View file @
0f88c5ff
...
...
@@ -229,6 +229,9 @@ namespace ChimeraTK {
/** Set default value for scalar process variable. */
template
<
typename
T
>
void
setScalarDefault
(
const
ChimeraTK
::
RegisterPath
&
name
,
const
T
&
value
)
{
if
(
Application
::
getInstance
().
testFacilityRunApplicationCalled
)
{
throw
ChimeraTK
::
logic_error
(
"TestFacility::setScalarDefault() called after runApplication()."
);
}
std
::
vector
<
T
>
vv
;
vv
.
push_back
(
value
);
setArrayDefault
(
name
,
vv
);
...
...
@@ -237,6 +240,9 @@ namespace ChimeraTK {
/** Set default value for array process variable. */
template
<
typename
T
>
void
setArrayDefault
(
const
ChimeraTK
::
RegisterPath
&
name
,
const
std
::
vector
<
T
>&
value
)
{
if
(
Application
::
getInstance
().
testFacilityRunApplicationCalled
)
{
throw
ChimeraTK
::
logic_error
(
"TestFacility::setArrayDefault() called after runApplication()."
);
}
// check if PV exists
auto
pv
=
pvManager
->
getProcessArray
<
T
>
(
name
);
if
(
pv
==
nullptr
)
{
...
...
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