13 m_SuperMasterTableId(0),
14 m_HltMasterTableId(0),
20 m_JobOptionVector.push_back(jo);
26 cout <<
indent <<
"=============================================" << endl;
27 cout <<
indent <<
"JobOptionTable" << endl;
28 cout <<
indent <<
" Super MasterTable Id = " << m_SuperMasterTableId << endl;
29 cout <<
indent <<
" HLT MasterTable Id = " << m_HltMasterTableId << endl;
30 cout <<
indent <<
" Number of parameters = " << m_JobOptionVector.size() << endl;
31 cout <<
indent <<
"=============================================" << endl;
33 for(
unsigned int i=0;
i < m_JobOptionVector.size();
i++)
34 m_JobOptionVector[
i].
print();
42 of <<
"=============================================" << endl;
43 of <<
"JobOptionTable" << endl;
44 of <<
" Super MasterTable Id = " << m_SuperMasterTableId << endl;
45 of <<
" HLT MasterTable Id = " << m_HltMasterTableId << endl;
46 of <<
" Number of parameters = " << m_JobOptionVector.size() << endl;
47 of <<
"=============================================" << endl;
48 for(
unsigned int i=0;
i < m_JobOptionVector.size();
i++) {
49 of << m_JobOptionVector[
i] << endl;
59 if(
cmp>0)
return false;
60 if(
cmp<0)
return true;
61 return jo1.
name().compare(jo2.
name()) < 0;
68 std::sort(m_JobOptionVector.begin(), m_JobOptionVector.end(), JOLessThan());