CMS 3D CMS Logo

Public Member Functions | Private Attributes

edm::AndHelper< A, B > Class Template Reference

#include <Selector.h>

List of all members.

Public Member Functions

 AndHelper (A const &a, B const &b)
bool match (ConstBranchDescription const &p) const

Private Attributes

a_
B b_

Detailed Description

template<class A, class B>
class edm::AndHelper< A, B >

Definition at line 184 of file Selector.h.


Constructor & Destructor Documentation

template<class A, class B>
edm::AndHelper< A, B >::AndHelper ( A const &  a,
B const &  b 
) [inline]

Definition at line 187 of file Selector.h.

: a_(a), b_(b) { }

Member Function Documentation

template<class A, class B>
bool edm::AndHelper< A, B >::match ( ConstBranchDescription const &  p) const [inline]

Definition at line 188 of file Selector.h.

References edm::AndHelper< A, B >::a_, and edm::AndHelper< A, B >::b_.

{ return a_.match(p) && b_.match(p); }  

Member Data Documentation

template<class A, class B>
A edm::AndHelper< A, B >::a_ [private]

Definition at line 190 of file Selector.h.

Referenced by edm::AndHelper< A, B >::match().

template<class A, class B>
B edm::AndHelper< A, B >::b_ [private]

Definition at line 191 of file Selector.h.

Referenced by edm::AndHelper< A, B >::match().