CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
edm::MatchAllSelector Class Reference

#include <Selector.h>

Inheritance diagram for edm::MatchAllSelector:
edm::SelectorBase

Public Member Functions

virtual MatchAllSelectorclone () const
 
virtual bool doMatch (ConstBranchDescription const &) const
 
 MatchAllSelector ()
 
- Public Member Functions inherited from edm::SelectorBase
bool match (ConstBranchDescription const &p) const
 
virtual ~SelectorBase ()
 

Detailed Description

Class MatchAllSelector. Dummy selector whose match function always returns true.

Definition at line 146 of file Selector.h.

Constructor & Destructor Documentation

edm::MatchAllSelector::MatchAllSelector ( )
inline

Definition at line 148 of file Selector.h.

Referenced by clone().

148  {
149  }

Member Function Documentation

virtual MatchAllSelector* edm::MatchAllSelector::clone ( void  ) const
inlinevirtual

Implements edm::SelectorBase.

Definition at line 155 of file Selector.h.

References MatchAllSelector().

155  {
156  return new MatchAllSelector;
157  }
virtual bool edm::MatchAllSelector::doMatch ( ConstBranchDescription const &  ) const
inlinevirtual

Implements edm::SelectorBase.

Definition at line 151 of file Selector.h.

151  {
152  return true;
153  }