LDMX Software
ProductTag.cxx
2
3std::ostream& operator<<(std::ostream& s, const framework::ProductTag& pt) {
4 return s << "{ name = " << pt.name() << ", pass = " << pt.passname()
5 << ", type = " << pt.type() << "}";
6}
Class defining the identity of a data product in the event.
Defines the identity of a product and can be used for searches.
Definition ProductTag.h:23
const std::string & type() const
Get the product type name.
Definition ProductTag.h:52
const std::string & name() const
Get the product name.
Definition ProductTag.h:42
const std::string & passname() const
Get the product pass name.
Definition ProductTag.h:47