#include <boost/cstdint.hpp>
#include <fstream>
#include <ostream>
#include <vector>
Go to the source code of this file.
Classes | |
class | SiStripFedIdListReader |
More... |
|
Functions | |
std::ostream & | operator<< (std::ostream &, const SiStripFedIdListReader &) |
std::ostream& operator<< | ( | std::ostream & | , | |
const SiStripFedIdListReader & | ||||
) |
Definition at line 81 of file SiStripFedIdListReader.cc.
References SiStripFedIdListReader::fedIds(), iter, and ss.
00081 { 00082 std::vector<uint16_t> fed_ids = in.fedIds(); 00083 std::stringstream ss; 00084 ss << "[SiStripFedIdListReader::" << __func__ << "]" 00085 << " Found " << fed_ids.size() << " valid FED ids with values: "; 00086 std::vector<uint16_t>::const_iterator iter = fed_ids.begin(); 00087 for ( ; iter != fed_ids.end(); ++iter ) { ss << *iter << " "; } 00088 os << ss.str(); 00089 return os; 00090 }