#include <boost/cstdint.hpp>
#include <fstream>
#include <ostream>
#include <vector>
Go to the source code of this file.
Definition at line 82 of file SiStripFedIdListReader.cc.
References SiStripFedIdListReader::fedIds().
83 std::vector<uint16_t> fed_ids =
in.fedIds();
85 ss <<
"[SiStripFedIdListReader::" << __func__ <<
"]" 86 <<
" Found " << fed_ids.size() <<
" valid FED ids with values: ";
87 std::vector<uint16_t>::const_iterator iter = fed_ids.begin();
88 for ( ; iter != fed_ids.end(); ++iter ) { ss << *iter <<
" "; }