Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#include "DataFormats/Provenance/interface/RunLumiEntryInfo.h"
#include <ostream>

/*----------------------------------------------------------------------

----------------------------------------------------------------------*/

namespace edm {
  RunLumiEntryInfo::RunLumiEntryInfo() : branchID_() {}

  RunLumiEntryInfo::~RunLumiEntryInfo() {}

  void RunLumiEntryInfo::write(std::ostream& os) const { os << "branch ID = " << branchID() << '\n'; }

  bool operator==(RunLumiEntryInfo const& a, RunLumiEntryInfo const& b) { return a.branchID() == b.branchID(); }
}  // namespace edm