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

Public Member Functions

void endJob ()
 
virtual bool filter (Event &e, EventSetup const &c)
 
 Prescaler (ParameterSet const &)
 
virtual ~Prescaler ()
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
virtual ~EDFilter ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Static Public Member Functions

static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 

Private Attributes

int count_
 
int n_
 
int offset_
 

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
 
- Protected Member Functions inherited from edm::EDFilter
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 9 of file Prescaler.cc.

Constructor & Destructor Documentation

edm::Prescaler::Prescaler ( ParameterSet const &  ps)
explicit

Definition at line 24 of file Prescaler.cc.

24  :
25  count_(),
26  n_(ps.getParameter<int>("prescaleFactor")),
27  offset_(ps.getParameter<int>("prescaleOffset")) {
28  }
edm::Prescaler::~Prescaler ( )
virtual

Definition at line 30 of file Prescaler.cc.

30  {
31  }

Member Function Documentation

void edm::Prescaler::endJob ( void  )
virtual

Reimplemented from edm::EDFilter.

Definition at line 38 of file Prescaler.cc.

38  {
39  }
void edm::Prescaler::fillDescriptions ( ConfigurationDescriptions descriptions)
static

Definition at line 42 of file Prescaler.cc.

References edm::ConfigurationDescriptions::add(), and edm::ParameterSetDescription::add().

42  {
44  desc.add<int>("prescaleFactor");
45  desc.add<int>("prescaleOffset");
46  descriptions.add("preScaler", desc);
47  }
bool edm::Prescaler::filter ( Event e,
EventSetup const &  c 
)
virtual

Implements edm::EDFilter.

Definition at line 33 of file Prescaler.cc.

References count_, n_, and offset_.

33  {
34  ++count_;
35  return count_ % n_ == offset_ ? true : false;
36  }

Member Data Documentation

int edm::Prescaler::count_
private

Definition at line 19 of file Prescaler.cc.

Referenced by filter().

int edm::Prescaler::n_
private

Definition at line 20 of file Prescaler.cc.

Referenced by filter().

int edm::Prescaler::offset_
private

Definition at line 21 of file Prescaler.cc.

Referenced by filter().