test
CMS 3D CMS Logo

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

#include <HLTCountNumberOfObject.h>

Inheritance diagram for HLTCountNumberOfObject< OColl >:
HLTFilter edm::global::EDFilter<> edm::global::EDFilterBase 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 (edm::Event const &) const
 
const std::string * moduleLabel () const
 
int path (edm::Event const &) const
 
const std::string * pathName (edm::Event const &) const
 
std::pair< int, int > pmid (edm::Event const &) const
 
bool saveTags () const
 
virtual ~HLTFilter ()
 
- Public Member Functions inherited from edm::global::EDFilter<>
 EDFilter ()=default
 
- Public Member Functions inherited from edm::global::EDFilterBase
 EDFilterBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDFilterBase ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 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
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from HLTFilter
static void makeHLTFilterDescription (edm::ParameterSetDescription &desc)
 
- Static Public Member Functions inherited from edm::global::EDFilterBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Member Functions

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

Private Attributes

int maxN_
 
int minN_
 
edm::InputTag src_
 
edm::EDGetTokenT< OColl > srcToken_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDFilterBase
typedef EDFilterBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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 27 of file HLTCountNumberOfObject.h.

Constructor & Destructor Documentation

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

Definition at line 29 of file HLTCountNumberOfObject.h.

References HLTCountNumberOfObject< OColl >::src_, and HLTCountNumberOfObject< OColl >::srcToken_.

29  : HLTFilter(iConfig),
30  src_(iConfig.getParameter<edm::InputTag>("src")),
31  minN_(iConfig.getParameter<int>("MinN")),
32  maxN_(iConfig.getParameter<int>("MaxN"))
33  {
34  srcToken_ = consumes<OColl>(src_);
35  }
T getParameter(std::string const &) const
edm::EDGetTokenT< OColl > srcToken_
HLTFilter(const edm::ParameterSet &config)
Definition: HLTFilter.cc:20
template<class OColl >
HLTCountNumberOfObject< OColl >::~HLTCountNumberOfObject ( )
inline

Definition at line 37 of file HLTCountNumberOfObject.h.

37 { }

Member Function Documentation

template<class OColl >
static void HLTCountNumberOfObject< OColl >::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
inlinestatic

Definition at line 39 of file HLTCountNumberOfObject.h.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), defaultModuleLabel(), HLT_25ns10e33_v2_cff::InputTag, and HLTFilter::makeHLTFilterDescription().

40  {
43  desc.add<edm::InputTag>("src",edm::InputTag(""));
44  desc.add<int>("MinN",0);
45  desc.add<int>("MaxN",99999);
47  }
std::string defaultModuleLabel()
ParameterDescriptionBase * add(U const &iLabel, T const &value)
static void makeHLTFilterDescription(edm::ParameterSetDescription &desc)
Definition: HLTFilter.cc:29
void add(std::string const &label, ParameterSetDescription const &psetDescription)
template<class OColl >
virtual bool HLTCountNumberOfObject< OColl >::hltFilter ( edm::Event iEvent,
const edm::EventSetup ,
trigger::TriggerFilterObjectWithRefs filterproduct 
) const
inlineoverrideprivatevirtual

Implements HLTFilter.

Definition at line 50 of file HLTCountNumberOfObject.h.

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

51  {
52  edm::Handle<OColl> oHandle;
53  iEvent.getByToken(srcToken_, oHandle);
54  int s=oHandle->size();
55  bool answer=true;
56  if (minN_!=-1) answer = answer && (s>=minN_);
57  if (maxN_!=-1) answer = answer && (s<=maxN_);
58  LogDebug("HLTCountNumberOfObject")<<module(iEvent)<<" sees: "<<s<<" objects. Filtere answer is: "<<(answer?"true":"false");
59 
60  return answer;
61  }
#define LogDebug(id)
edm::EDGetTokenT< OColl > srcToken_
answer
Definition: submit.py:44
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
int module(edm::Event const &) const
Definition: HLTFilter.cc:53

Member Data Documentation

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

Definition at line 65 of file HLTCountNumberOfObject.h.

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

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

Definition at line 65 of file HLTCountNumberOfObject.h.

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

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