CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RunLumiEntryInfo.cc
Go to the documentation of this file.
2 #include <ostream>
3 
4 /*----------------------------------------------------------------------
5 
6 ----------------------------------------------------------------------*/
7 
8 namespace edm {
10  branchID_(),
11  productStatus_(productstatus::uninitialized())
12  {}
13 
15 
16  void
17  RunLumiEntryInfo::write(std::ostream& os) const {
18  os << "branch ID = " << branchID() << '\n';
19  os << "product status = " << productStatus() << '\n';
20  }
21 
22  bool
24  return
25  a.branchID() == b.branchID()
26  && a.productStatus() == b.productStatus();
27  }
28 }
ProductStatus uninitialized()
Definition: ProductStatus.h:30
void write(std::ostream &os) const
bool operator==(debugging_allocator< X > const &, debugging_allocator< Y > const &)
BranchID const & branchID() const
double b
Definition: hdecay.h:120
ProductStatus const & productStatus() const
double a
Definition: hdecay.h:121