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 &p) 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 159 of file Selector.h.

Constructor & Destructor Documentation

edm::MatchAllSelector::MatchAllSelector ( )
inline

Definition at line 162 of file Selector.h.

Referenced by clone().

163  { }

Member Function Documentation

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

Implements edm::SelectorBase.

Definition at line 170 of file Selector.h.

References MatchAllSelector().

171  {
172  return new MatchAllSelector;
173  }
virtual bool edm::MatchAllSelector::doMatch ( ConstBranchDescription const &  p) const
inlinevirtual

Implements edm::SelectorBase.

Definition at line 165 of file Selector.h.

166  {
167  return true;
168  }