#include "CondFormats/RunInfo/interface/MixingModuleConfig.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include <sstream>
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const MixingModuleConfig &c) |
std::ostream & | operator<< (std::ostream &os, const MixingInputConfig &c) |
std::ostream& operator<< | ( | std::ostream & | os, |
const MixingModuleConfig & | c | ||
) |
Definition at line 11 of file MixingModuleConfig.cc.
References MixingModuleConfig::bunchSpace(), and MixingModuleConfig::config().
{ std::stringstream ss; os <<c.bunchSpace()<<"\n"<<c.config(); return os; }
std::ostream& operator<< | ( | std::ostream & | os, |
const MixingInputConfig & | c | ||
) |
Definition at line 16 of file MixingModuleConfig.cc.
References MixingInputConfig::type().
{ std::stringstream ss; os <<c.type(); return os; }