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 Attributes
HLTDynamicPrescaler Class Reference
Inheritance diagram for HLTDynamicPrescaler:
edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

bool filter (edm::Event &event, edm::EventSetup const &setup)
 
 HLTDynamicPrescaler (edm::ParameterSet const &configuration)
 
 ~HLTDynamicPrescaler ()
 
- 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 Attributes

unsigned int m_count
 
unsigned int m_scale
 

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 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

Definition at line 7 of file HLTDynamicPrescaler.cc.

Constructor & Destructor Documentation

HLTDynamicPrescaler::HLTDynamicPrescaler ( edm::ParameterSet const &  configuration)
explicit

Definition at line 19 of file HLTDynamicPrescaler.cc.

19  :
20  m_count(0),
21  m_scale(1) {
22 }
HLTDynamicPrescaler::~HLTDynamicPrescaler ( )

Definition at line 24 of file HLTDynamicPrescaler.cc.

24  {
25 }

Member Function Documentation

bool HLTDynamicPrescaler::filter ( edm::Event event,
edm::EventSetup const &  setup 
)
virtual

Implements edm::EDFilter.

Definition at line 27 of file HLTDynamicPrescaler.cc.

References m_count, and m_scale.

27  {
28  ++m_count;
29 
30  if (m_count % m_scale)
31  return false;
32 
33  if (m_count == m_scale * 10)
34  m_scale = m_count;
35 
36  return true;
37 }

Member Data Documentation

unsigned int HLTDynamicPrescaler::m_count
private

Definition at line 15 of file HLTDynamicPrescaler.cc.

Referenced by filter().

unsigned int HLTDynamicPrescaler::m_scale
private

Definition at line 16 of file HLTDynamicPrescaler.cc.

Referenced by filter().