CMS 3D CMS Logo

Public Member Functions | Private Attributes

egHLT::EgMultiCut< T > Struct Template Reference

#include <EgHLTDQMCut.h>

Inheritance diagram for egHLT::EgMultiCut< T >:
egHLT::EgHLTDQMCut< T >

List of all members.

Public Member Functions

EgHLTDQMCut< T > * clone () const
 EgMultiCut (const EgMultiCut< T > &rhs)
 EgMultiCut ()
EgMultiCut< T > & operator<< (const EgHLTDQMCut< T > *inputCut)
bool pass (const T &obj, const OffEvt &evt) const
 ~EgMultiCut ()

Private Attributes

std::vector< const EgHLTDQMCut
< T > * > 
cuts_

Detailed Description

template<class T>
struct egHLT::EgMultiCut< T >

Definition at line 114 of file EgHLTDQMCut.h.


Constructor & Destructor Documentation

template<class T>
egHLT::EgMultiCut< T >::EgMultiCut ( ) [inline]

Definition at line 119 of file EgHLTDQMCut.h.

Referenced by egHLT::EgMultiCut< T >::clone().

{}  
template<class T >
egHLT::EgMultiCut< T >::EgMultiCut ( const EgMultiCut< T > &  rhs)

Definition at line 133 of file EgHLTDQMCut.h.

References egHLT::EgMultiCut< T >::cuts_.

    {
      for(size_t cutNr=0;cutNr<rhs.cuts_.size();cutNr++){
        cuts_.push_back(rhs.cuts_[cutNr]->clone());
      }
    }
template<class T>
egHLT::EgMultiCut< T >::~EgMultiCut ( ) [inline]

Definition at line 121 of file EgHLTDQMCut.h.

References egHLT::EgMultiCut< T >::cuts_, and i.

{for(size_t i=0;i<cuts_.size();i++) delete cuts_[i];}

Member Function Documentation

template<class T>
EgHLTDQMCut<T>* egHLT::EgMultiCut< T >::clone ( void  ) const [inline, virtual]

Implements egHLT::EgHLTDQMCut< T >.

Definition at line 130 of file EgHLTDQMCut.h.

References egHLT::EgMultiCut< T >::EgMultiCut().

{return new EgMultiCut(*this);}
template<class T >
EgMultiCut< T > & egHLT::EgMultiCut< T >::operator<< ( const EgHLTDQMCut< T > *  inputCut)

Definition at line 141 of file EgHLTDQMCut.h.

References NULL.

    {
      if(typeid(*inputCut)==typeid(EgMultiCut)){
        edm::LogError("EgMultiCut") <<" Error can not currently load an EgMultiCut inside a EgMultiCut, the practical upshot is that the selection you think is being loaded isnt ";
      }else if(inputCut==NULL){
        edm::LogError("EgMultiCut") << "Error, cut being loaded is null, ignoring";
      }else cuts_.push_back(inputCut);
      return *this;
    }
template<class T >
bool egHLT::EgMultiCut< T >::pass ( const T obj,
const OffEvt evt 
) const [virtual]

Implements egHLT::EgHLTDQMCut< T >.

Definition at line 151 of file EgHLTDQMCut.h.

References i.

    {
      for(size_t i=0;i<cuts_.size();i++){
        if(!cuts_[i]->pass(obj,evt)) return false;
      }
      return true;
    
    }

Member Data Documentation

template<class T>
std::vector<const EgHLTDQMCut<T>*> egHLT::EgMultiCut< T >::cuts_ [private]