CMS 3D CMS Logo

List of all members | Public Member Functions
edm::IterWithDict< T > Class Template Reference

#include <IterWithDict.h>

Inheritance diagram for edm::IterWithDict< T >:
edm::IterWithDictBase

Public Member Functions

 IterWithDict ()
 
 IterWithDict (TList *list)
 
Toperator* () const
 
IterWithDict< T > & operator++ ()
 
- Public Member Functions inherited from edm::IterWithDictBase
 IterWithDictBase ()
 
 IterWithDictBase (TList *)
 
bool operator!= (IterWithDictBase const &) const
 

Additional Inherited Members

- Protected Member Functions inherited from edm::IterWithDictBase
void advance ()
 
TIter const & iter () const
 

Detailed Description

template<typename T>
class edm::IterWithDict< T >

Definition at line 28 of file IterWithDict.h.

Constructor & Destructor Documentation

template<typename T>
edm::IterWithDict< T >::IterWithDict ( )
inline

Definition at line 30 of file IterWithDict.h.

template<typename T>
edm::IterWithDict< T >::IterWithDict ( TList *  list)
inlineexplicit

Definition at line 31 of file IterWithDict.h.

How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run

Member Function Documentation

template<typename T>
T* edm::IterWithDict< T >::operator* ( void  ) const
inline

Definition at line 36 of file IterWithDict.h.

References edm::IterWithDictBase::iter().

36  {
37  return static_cast<T*>(*iter());
38  }
TIter const & iter() const
Definition: IterWithDict.cc:18
long double T
template<typename T>
IterWithDict<T>& edm::IterWithDict< T >::operator++ ( void  )
inline

Definition at line 32 of file IterWithDict.h.

References edm::IterWithDictBase::advance().

32  {
33  advance();
34  return *this;
35  }