CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
HLTCountNumberOfObject< OColl > Class Template Reference

#include <HLTCountNumberOfObject.h>

Inheritance diagram for HLTCountNumberOfObject< OColl >:
HLTFilter edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 HLTCountNumberOfObject (const edm::ParameterSet &iConfig)
 
 ~HLTCountNumberOfObject ()
 
- Public Member Functions inherited from HLTFilter
 HLTFilter (const edm::ParameterSet &config)
 
int module () const
 
const std::string * moduleLabel () const
 
int path () const
 
const std::string * pathName () const
 
std::pair< int, int > pmid () const
 
bool saveTags () const
 
virtual ~HLTFilter ()
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
virtual ~EDFilter ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual bool hltFilter (edm::Event &iEvent, const edm::EventSetup &, trigger::TriggerFilterObjectWithRefs &filterproduct)
 

Private Attributes

int maxN_
 
int minN_
 
edm::InputTag src_
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
typedef WorkerT< EDFilterWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from HLTFilter
static void makeHLTFilterDescription (edm::ParameterSetDescription &desc)
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDFilter
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

template<class OColl>
class HLTCountNumberOfObject< OColl >

Description: templated EDFilter to count the number of object in a given collection, using View

Author
Jean-Roch Vlimant

Definition at line 26 of file HLTCountNumberOfObject.h.

Constructor & Destructor Documentation

template<class OColl >
HLTCountNumberOfObject< OColl >::HLTCountNumberOfObject ( const edm::ParameterSet iConfig)
inlineexplicit

Definition at line 28 of file HLTCountNumberOfObject.h.

28  : HLTFilter(iConfig),
29  src_(iConfig.getParameter<edm::InputTag>("src")),
30  minN_(iConfig.getParameter<int>("MinN")),
31  maxN_(iConfig.getParameter<int>("MaxN"))
32  { }
T getParameter(std::string const &) const
HLTFilter(const edm::ParameterSet &config)
Definition: HLTFilter.cc:18
template<class OColl >
HLTCountNumberOfObject< OColl >::~HLTCountNumberOfObject ( )
inline

Definition at line 34 of file HLTCountNumberOfObject.h.

34 { }

Member Function Documentation

template<class OColl >
virtual bool HLTCountNumberOfObject< OColl >::hltFilter ( edm::Event iEvent,
const edm::EventSetup ,
trigger::TriggerFilterObjectWithRefs filterproduct 
)
inlineprivatevirtual

Implements HLTFilter.

Definition at line 37 of file HLTCountNumberOfObject.h.

References submit::answer, edm::Event::getByLabel(), LogDebug, HLTCountNumberOfObject< OColl >::maxN_, HLTCountNumberOfObject< OColl >::minN_, HLTFilter::module(), alignCSCRings::s, and HLTCountNumberOfObject< OColl >::src_.

38  {
39  edm::Handle<OColl> oHandle;
40  iEvent.getByLabel(src_, oHandle);
41  int s=oHandle->size();
42  bool answer=true;
43  if (minN_!=-1) answer = answer && (s>=minN_);
44  if (maxN_!=-1) answer = answer && (s<=maxN_);
45  LogDebug("HLTCountNumberOfObject")<<module()<<" sees: "<<s<<" objects. Filtere answer is: "<<(answer?"true":"false");
46 
47  return answer;
48  }
#define LogDebug(id)
answer
Definition: submit.py:44
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
int module() const
Definition: HLTFilter.cc:56

Member Data Documentation

template<class OColl >
int HLTCountNumberOfObject< OColl >::maxN_
private

Definition at line 51 of file HLTCountNumberOfObject.h.

Referenced by HLTCountNumberOfObject< OColl >::hltFilter().

template<class OColl >
int HLTCountNumberOfObject< OColl >::minN_
private

Definition at line 51 of file HLTCountNumberOfObject.h.

Referenced by HLTCountNumberOfObject< OColl >::hltFilter().

template<class OColl >
edm::InputTag HLTCountNumberOfObject< OColl >::src_
private

Definition at line 50 of file HLTCountNumberOfObject.h.

Referenced by HLTCountNumberOfObject< OColl >::hltFilter().