CMS 3D CMS Logo

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