9 m_jobOptionsPath =
"jobOptions.txt";
10 m_messageSvcType =
"MessageSvc";
14 m_pythonSetupFile =
"ESController/ESControllerPythonSetup.py";
17 std::string tmp_string = objname;
21 m_jobOptionsPath = tmp_string.substr( 0, tmp_string.find(
";" ) );
23 if ( tmp_string.substr( 0, tmp_string.find(
";" ) ) !=
"" )
25 m_jobOptionsPath = tmp_string.substr( 0, tmp_string.find(
";" ) );
30 tmp_string = tmp_string.substr( tmp_string.find(
";" ) + 1, tmp_string.size() );
31 if ( tmp_string.substr( 0, tmp_string.find(
";" ) ) !=
"" )
32 { m_messageSvcType = tmp_string.substr( 0, tmp_string.find(
";" ) ); }
35 tmp_string = tmp_string.substr( tmp_string.find(
";" ) + 1, tmp_string.size() );
36 if ( tmp_string.substr( 0, tmp_string.find(
";" ) ) !=
"" )
37 { m_evtSel = tmp_string.substr( 0, tmp_string.find(
";" ) ); }
40 tmp_string = tmp_string.substr( tmp_string.find(
";" ) + 1, tmp_string.size() );
41 if ( tmp_string.substr( 0, tmp_string.find(
";" ) ) !=
"" )
42 { m_dllName = tmp_string.substr( 0, tmp_string.find(
";" ) ); }
45 tmp_string = tmp_string.substr( tmp_string.find(
";" ) + 1, tmp_string.size() );
46 if ( tmp_string.substr( 0, tmp_string.find(
";" ) ) !=
"" )
47 { m_factoryName = tmp_string.substr( 0, tmp_string.find(
";" ) ); }
50 tmp_string = tmp_string.substr( tmp_string.find(
";" ) + 1, tmp_string.size() );
51 if ( tmp_string.substr( 0, tmp_string.find(
";" ) ) !=
"" )
52 { m_pythonSetupFile = tmp_string.substr( 0, tmp_string.find(
";" ) ); }
57 " -> jobOptions Path = " << m_jobOptionsPath );
59 " -> MessageSvcType = " << m_messageSvcType );
60 EFPSC_DBG1(
"efpsc::Config::Config",
" -> Event Selector = " << m_evtSel );
61 EFPSC_DBG1(
"efpsc::Config::Config",
" -> ApplicationMgr DLL name = " << m_dllName );
62 EFPSC_DBG1(
"efpsc::Config::Config",
" -> ApplicationMgr Factory name = " << m_factoryName );
64 " -> Basic Python setup file = " << m_pythonSetupFile );