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

Public Member Functions

 IsolationProducer (const edm::ParameterSet &)
 
 ~IsolationProducer ()
 
- 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 Member Functions

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

Private Attributes

Alg alg_
 
edm::InputTag elements_
 
edm::InputTag src_
 

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 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 52 of file IsolationProducerNew.h.

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

Definition at line 60 of file IsolationProducerNew.h.

60  {
61  }

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 64 of file IsolationProducerNew.h.

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

64  {
65  using namespace edm;
66  using namespace std;
69  evt.getByLabel(src_, src);
71 
72  Setup::init(alg_, es);
73 
75  auto_ptr<OutputCollection> isolations(new OutputCollection);
76  if(src->size()!= 0) {
77  typename OutputCollection::Filler filler(*isolations);
78  vector<double> iso(master.size(),-1);
79  size_t i = 0;
80  for( typename C1::const_iterator lep = src->begin(); lep != src->end(); ++ lep )
81  iso[master.index(i++)] = alg_(*lep, *elements);
82  filler.insert(master.get(), iso.begin(), iso.end());
83  filler.fill();
84  }
85  evt.put( isolations );
86  }
Master< F > master(const F &f)
Definition: FunctClone.h:68
int i
Definition: DBlmapReader.cc:9
std::vector< ProtoJet > OutputCollection
Definition: JetRecoTypes.h:63
int init
Definition: HydjetWrapper.h:63
list elements
Definition: asciidump.py:414
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

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 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::InputTag reco::modulesNew::IsolationProducer< C1, C2, Alg, OutputCollection, Setup >::elements_
private

Definition at line 47 of file IsolationProducerNew.h.

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

Definition at line 47 of file IsolationProducerNew.h.