![]() |
![]() |
#include "CalibTracker/SiStripCommon/interface/SiStripFedIdListReader.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <algorithm>
#include <sstream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const SiStripFedIdListReader &in) |
std::ostream& operator<< | ( | std::ostream & | , |
const SiStripFedIdListReader & | |||
) |
Definition at line 82 of file SiStripFedIdListReader.cc.
References SiStripFedIdListReader::fedIds().
{ std::vector<uint16_t> fed_ids = in.fedIds(); std::stringstream ss; ss << "[SiStripFedIdListReader::" << __func__ << "]" << " Found " << fed_ids.size() << " valid FED ids with values: "; std::vector<uint16_t>::const_iterator iter = fed_ids.begin(); for ( ; iter != fed_ids.end(); ++iter ) { ss << *iter << " "; } os << ss.str(); return os; }