#include <EgHLTDQMCut.h>
Public Member Functions | |
EgHLTDQMCut< T > * | clone () const |
EgHLTDQMUserVarCut (int(T::*cutCodeFunc)(const Key &) const, const Key &key, int cutsNotToMask=~0x0) | |
bool | pass (const T &obj, const OffEvt &evt) const |
~EgHLTDQMUserVarCut () | |
Private Attributes | |
int(T::* | cutCodeFunc_ )(const Key &) const |
int | cutsNotToMask_ |
const Key | key_ |
Definition at line 72 of file EgHLTDQMCut.h.
egHLT::EgHLTDQMUserVarCut< T, Key >::EgHLTDQMUserVarCut | ( | int(T::*)(const Key &) const | cutCodeFunc, |
const Key & | key, | ||
int | cutsNotToMask = ~0x0 |
||
) | [inline] |
Definition at line 80 of file EgHLTDQMCut.h.
Referenced by egHLT::EgHLTDQMUserVarCut< T, Key >::clone().
:cutCodeFunc_(cutCodeFunc),key_(key),cutsNotToMask_(cutsNotToMask){}
egHLT::EgHLTDQMUserVarCut< T, Key >::~EgHLTDQMUserVarCut | ( | ) | [inline] |
Definition at line 81 of file EgHLTDQMCut.h.
{}
EgHLTDQMCut<T>* egHLT::EgHLTDQMUserVarCut< T, Key >::clone | ( | void | ) | const [inline, virtual] |
Implements egHLT::EgHLTDQMCut< T >.
Definition at line 84 of file EgHLTDQMCut.h.
References egHLT::EgHLTDQMUserVarCut< T, Key >::EgHLTDQMUserVarCut().
{return new EgHLTDQMUserVarCut(*this);} //default copy constructor is fine
bool egHLT::EgHLTDQMUserVarCut< T, Key >::pass | ( | const T & | obj, |
const OffEvt & | evt | ||
) | const [virtual] |
Implements egHLT::EgHLTDQMCut< T >.
Definition at line 88 of file EgHLTDQMCut.h.
{ if(((obj.*cutCodeFunc_)(key_) & cutsNotToMask_)==0) return true; else return false; }
int(T::* egHLT::EgHLTDQMUserVarCut< T, Key >::cutCodeFunc_)(const Key &) const [private] |
Definition at line 75 of file EgHLTDQMCut.h.
int egHLT::EgHLTDQMUserVarCut< T, Key >::cutsNotToMask_ [private] |
Definition at line 77 of file EgHLTDQMCut.h.
const Key egHLT::EgHLTDQMUserVarCut< T, Key >::key_ [private] |
Definition at line 76 of file EgHLTDQMCut.h.