#include <ProcessMatch.h>
Public Member Functions | |
bool | operator() (edm::BranchDescription const &branchDescription) |
ProcessMatch (std::string const &processName) | |
Private Attributes | |
std::string | processName_ |
This is intended to be used with the class GetterOfProducts. See comments in the file GetterOfProducts.h for a description.
Definition at line 19 of file ProcessMatch.h.
edm::ProcessMatch::ProcessMatch | ( | std::string const & | processName | ) | [inline] |
Definition at line 22 of file ProcessMatch.h.
: processName_(processName) { }
bool edm::ProcessMatch::operator() | ( | edm::BranchDescription const & | branchDescription | ) | [inline] |
Definition at line 24 of file ProcessMatch.h.
References edm::BranchDescription::processName(), and processName_.
{ return branchDescription.processName() == processName_ || processName_ == "*"; }
std::string edm::ProcessMatch::processName_ [private] |
Definition at line 29 of file ProcessMatch.h.
Referenced by operator()().