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
reco::modulesNew::IsolationProducer< C1, C2, Alg, OutputCollection, Setup > Class Template Reference

#include <IsolationProducerNew.h>

Inheritance diagram for reco::modulesNew::IsolationProducer< C1, C2, Alg, OutputCollection, Setup >:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 IsolationProducer (const edm::ParameterSet &)
 
 ~IsolationProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- 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 (const std::string &iProcessName, std::vector< const char * > &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 ()
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &)
 

Private Attributes

Alg alg_
 
edm::EDGetTokenT< C2 > elementsToken_
 
edm::EDGetTokenT< C1 > srcToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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::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<typename C1, typename C2, typename Alg, typename OutputCollection = edm::ValueMap<float>, typename Setup = typename helper::IsolationAlgorithmSetup<Alg>::type>
class reco::modulesNew::IsolationProducer< C1, C2, Alg, OutputCollection, Setup >

Definition at line 40 of file IsolationProducerNew.h.

Constructor & Destructor Documentation

template<typename C1 , typename C2 , typename Alg , typename OutputCollection , typename Setup >
IsolationProducer< C1, C2, Alg, OutputCollection, Setup >::IsolationProducer ( const edm::ParameterSet cfg)

Definition at line 53 of file IsolationProducerNew.h.

53  :
54  srcToken_( consumes<C1>( cfg.template getParameter<edm::InputTag>( "src" ) ) ),
55  elementsToken_( consumes<C2>( cfg.template getParameter<edm::InputTag>( "elements" ) ) ),
56  alg_( reco::modules::make<Alg>( cfg ) ) {
57  produces<OutputCollection>();
58  }
template<typename C1 , typename C2 , typename Alg , typename OutputCollection , typename Setup >
IsolationProducer< C1, C2, Alg, OutputCollection, Setup >::~IsolationProducer ( )

Definition at line 61 of file IsolationProducerNew.h.

61  {
62  }

Member Function Documentation

template<typename C1 , typename C2 , typename Alg , typename OutputCollection , typename Setup >
void IsolationProducer< C1, C2, Alg, OutputCollection, Setup >::produce ( edm::Event evt,
const edm::EventSetup es 
)
privatevirtual

Implements edm::EDProducer.

Definition at line 65 of file IsolationProducerNew.h.

References bookConverter::elements, helper::MasterCollection< C1 >::get(), edm::Event::getByToken(), i, helper::MasterCollection< C1 >::index(), init, autoMagneticFieldProducer_cfi::master, edm::Event::put(), helper::MasterCollection< C1 >::size(), and alcazmumu_cfi::src.

65  {
66  using namespace edm;
67  using namespace std;
70  evt.getByToken( srcToken_, src );
72 
73  Setup::init(alg_, es);
74 
76  auto_ptr<OutputCollection> isolations(new OutputCollection);
77  if(src->size()!= 0) {
78  typename OutputCollection::Filler filler(*isolations);
79  vector<double> iso(master.size(),-1);
80  size_t i = 0;
81  for( typename C1::const_iterator lep = src->begin(); lep != src->end(); ++ lep )
82  iso[master.index(i++)] = alg_(*lep, *elements);
83  filler.insert(master.get(), iso.begin(), iso.end());
84  filler.fill();
85  }
86  evt.put( isolations );
87  }
int i
Definition: DBlmapReader.cc:9
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
int init
Definition: HydjetWrapper.h:67
dictionary elements
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120

Member Data Documentation

template<typename C1 , typename C2 , typename Alg , typename OutputCollection = edm::ValueMap<float>, typename Setup = typename helper::IsolationAlgorithmSetup<Alg>::type>
Alg reco::modulesNew::IsolationProducer< C1, C2, Alg, OutputCollection, Setup >::alg_
private

Definition at line 49 of file IsolationProducerNew.h.

template<typename C1 , typename C2 , typename Alg , typename OutputCollection = edm::ValueMap<float>, typename Setup = typename helper::IsolationAlgorithmSetup<Alg>::type>
edm::EDGetTokenT<C2> reco::modulesNew::IsolationProducer< C1, C2, Alg, OutputCollection, Setup >::elementsToken_
private

Definition at line 48 of file IsolationProducerNew.h.

template<typename C1 , typename C2 , typename Alg , typename OutputCollection = edm::ValueMap<float>, typename Setup = typename helper::IsolationAlgorithmSetup<Alg>::type>
edm::EDGetTokenT<C1> reco::modulesNew::IsolationProducer< C1, C2, Alg, OutputCollection, Setup >::srcToken_
private

Definition at line 47 of file IsolationProducerNew.h.