File indexing completed on 2024-04-06 12:05:05
0001 #include "DataFormats/Provenance/interface/RunLumiEntryInfo.h"
0002 #include <ostream>
0003
0004
0005
0006
0007
0008 namespace edm {
0009 RunLumiEntryInfo::RunLumiEntryInfo() : branchID_() {}
0010
0011 RunLumiEntryInfo::~RunLumiEntryInfo() {}
0012
0013 void RunLumiEntryInfo::write(std::ostream& os) const { os << "branch ID = " << branchID() << '\n'; }
0014
0015 bool operator==(RunLumiEntryInfo const& a, RunLumiEntryInfo const& b) { return a.branchID() == b.branchID(); }
0016 }