Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ControlSystemAdapter-DoocsAdapter
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
ControlSystemAdapter-DoocsAdapter
Commits
d94d1509
Commit
d94d1509
authored
6 years ago
by
Martin Christoph Hierholzer
Browse files
Options
Downloads
Patches
Plain Diff
removed some annoying debug output
parent
8212fd99
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/CSAdapterEqFct.cc
+0
-1
0 additions, 1 deletion
src/CSAdapterEqFct.cc
src/eq_create.cc
+3
-5
3 additions, 5 deletions
src/eq_create.cc
with
3 additions
and
6 deletions
src/CSAdapterEqFct.cc
+
0
−
1
View file @
d94d1509
...
...
@@ -32,7 +32,6 @@ namespace ChimeraTK{
}
void
CSAdapterEqFct
::
init
(){
std
::
cout
<<
"this is eqfct init of "
<<
name
()
<<
std
::
endl
;
}
int
CSAdapterEqFct
::
fct_code
(){
...
...
This diff is collapsed.
Click to expand it.
src/eq_create.cc
+
3
−
5
View file @
d94d1509
...
...
@@ -24,17 +24,15 @@ void eq_init_prolog() {
auto
pvNames
=
ChimeraTK
::
getAllVariableNames
(
doocsAdapter
.
getControlSystemPVManager
()
);
auto
xmlFileName
=
ChimeraTK
::
ApplicationBase
::
getInstance
().
getName
()
+
XML_CONFIG_SUFFIX
;
struct
stat
buffer
;
if
(
stat
(
xmlFileName
.
c_str
(),
&
buffer
)
==
0
){
if
(
stat
(
xmlFileName
.
c_str
(),
&
buffer
)
==
0
){
ChimeraTK
::
VariableMapper
::
getInstance
().
prepareOutput
(
xmlFileName
,
pvNames
);
}
else
{
std
::
cerr
<<
"WARNING: No XML file for the Doocs variable config found. Trying direct import."
<<
std
::
endl
;
ChimeraTK
::
VariableMapper
::
getInstance
().
directImport
(
pvNames
);
}
// print the mapping for debug purposes
ChimeraTK
::
VariableMapper
::
getInstance
().
print
();
// activate the advanced archiver to have histories
set_arch_mode
(
1
);
}
...
...
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