00001 #include "DataFormats/Provenance/interface/RunLumiEntryInfo.h" 00002 #include <ostream> 00003 00004 /*---------------------------------------------------------------------- 00005 00006 ----------------------------------------------------------------------*/ 00007 00008 namespace edm { 00009 RunLumiEntryInfo::RunLumiEntryInfo() : 00010 branchID_() 00011 {} 00012 00013 RunLumiEntryInfo::~RunLumiEntryInfo() {} 00014 00015 void 00016 RunLumiEntryInfo::write(std::ostream& os) const { 00017 os << "branch ID = " << branchID() << '\n'; 00018 } 00019 00020 bool 00021 operator==(RunLumiEntryInfo const& a, RunLumiEntryInfo const& b) { 00022 return a.branchID() == b.branchID(); 00023 } 00024 }