18 m_pass_through(pass_through)
30 m_rerun_prescale[targetName] = ps;
34 std::pair<bool, float>
36 std::unordered_map<std::string, float>::const_iterator
i = m_rerun_prescale.find(targetName);
37 bool found = (
i!=m_rerun_prescale.end());
38 float ps =
found ?
i->second : 0;
39 return std::make_pair(
found,ps);
42 std::pair<bool, float>
44 std::unordered_map<std::string, float>::const_iterator
i = m_stream_prescale.find(
streamName);
45 bool found =
i!=m_stream_prescale.end();
46 float ps =
found ?
i->second : 0;
47 return std::make_pair(
found,ps);
55 o <<
"Prescale: " << setw(4) <<
c.prescale()
56 <<
", pass-through: " << setw(4) <<
c.pass_through()