Skip to content
Snippets Groups Projects
Commit d94d1509 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

removed some annoying debug output

parent 8212fd99
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,6 @@ namespace ChimeraTK{
}
void CSAdapterEqFct::init(){
std::cout << "this is eqfct init of " << name() << std::endl;
}
int CSAdapterEqFct::fct_code(){
......
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment