#include "DataFormats/SiStripCommon/interface/SiStripConstants.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "boost/cstdint.hpp"
#include <vector>
#include <string>
#include <ostream>
#include <sstream>
Go to the source code of this file.
Classes | |
class | SiStripPartition |
Container class for database partition parameters. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &, const SiStripPartition &) |
Debug printout for SiStripPartition class. |
std::ostream& operator<< | ( | std::ostream & | , | |
const SiStripPartition & | ||||
) |
Debug printout for SiStripPartition class.
Definition at line 843 of file SiStripPartition.cc.
References SiStripPartition::print(), and ss.
00843 { 00844 std::stringstream ss; 00845 params.print(ss); 00846 os << ss.str(); 00847 return os; 00848 }