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
ObjectMultiplicityCounter< T > Class Template Reference

Matcher of number of reconstructed objects in the event to probe. More...

Inheritance diagram for ObjectMultiplicityCounter< T >:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 ObjectMultiplicityCounter (const edm::ParameterSet &iConfig)
 
virtual void produce (edm::Event &iEvent, const edm::EventSetup &iSetup)
 
virtual ~ObjectMultiplicityCounter ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- 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 ()
 

Private Attributes

StringCutObjectSelector< T, true > objCut_
 
edm::InputTag objects_
 
edm::InputTag probes_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

template<typename T>
class ObjectMultiplicityCounter< T >

Matcher of number of reconstructed objects in the event to probe.

Author
Kalanand Mishra

Definition at line 27 of file ObjectMultiplicityCounter.cc.

Constructor & Destructor Documentation

template<typename T >
ObjectMultiplicityCounter< T >::ObjectMultiplicityCounter ( const edm::ParameterSet iConfig)
explicit

Definition at line 41 of file ObjectMultiplicityCounter.cc.

41  :
42  probes_(iConfig.getParameter<edm::InputTag>("probes")),
43  objects_(iConfig.getParameter<edm::InputTag>("objects")),
44  objCut_(iConfig.existsAs<std::string>("objectSelection") ? iConfig.getParameter<std::string>("objectSelection") : "", true)
45 {
46  produces<edm::ValueMap<float> >();
47 }
T getParameter(std::string const &) const
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:187
StringCutObjectSelector< T, true > objCut_
template<typename T >
ObjectMultiplicityCounter< T >::~ObjectMultiplicityCounter ( )
virtual

Definition at line 51 of file ObjectMultiplicityCounter.cc.

52 {
53 }

Member Function Documentation

template<typename T >
void ObjectMultiplicityCounter< T >::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 57 of file ObjectMultiplicityCounter.cc.

References prof2calltree::count, edm::Event::getByLabel(), dbtoconf::object, edm::Event::put(), and makeHLTPrescaleTable::values.

57  {
58  using namespace edm;
59 
60  // read input
62  Handle<View<T> > objects;
63  iEvent.getByLabel(probes_, probes);
64  iEvent.getByLabel(objects_, objects);
65 
66  // fill
67  float count = 0.0;
68  typename View<T>::const_iterator object, endobjects = objects->end();
69  for (object = objects->begin(); object != endobjects; ++object) {
70  if ( !(objCut_(*object)) ) continue;
71  count += 1.0;
72  }
73 
74  // prepare vector for output
75  std::vector<float> values(probes->size(), count);
76 
77  // convert into ValueMap and store
78  std::auto_ptr<ValueMap<float> > valMap(new ValueMap<float>());
79  ValueMap<float>::Filler filler(*valMap);
80  filler.insert(probes, values.begin(), values.end());
81  filler.fill();
82  iEvent.put(valMap);
83 }
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
StringCutObjectSelector< T, true > objCut_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
list object
Definition: dbtoconf.py:77

Member Data Documentation

template<typename T >
StringCutObjectSelector<T,true> ObjectMultiplicityCounter< T >::objCut_
private

Definition at line 37 of file ObjectMultiplicityCounter.cc.

template<typename T >
edm::InputTag ObjectMultiplicityCounter< T >::objects_
private

Definition at line 36 of file ObjectMultiplicityCounter.cc.

template<typename T >
edm::InputTag ObjectMultiplicityCounter< T >::probes_
private

Definition at line 35 of file ObjectMultiplicityCounter.cc.