CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
EgammaPhotonTkIsolationProducer Class Reference

#include <EgammaPhotonTkIsolationProducer.h>

Inheritance diagram for EgammaPhotonTkIsolationProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 EgammaPhotonTkIsolationProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~EgammaPhotonTkIsolationProducer () override
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

edm::InputTag beamspotProducer_
 
edm::ParameterSet conf_
 
double drb_
 
double extRadius_
 
double intRadiusBarrel_
 
double intRadiusEndcap_
 
double maxVtxDist_
 
edm::InputTag photonProducer_
 
double ptMin_
 
double stripBarrel_
 
double stripEndcap_
 
edm::InputTag trackProducer_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
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)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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 20 of file EgammaPhotonTkIsolationProducer.h.

Constructor & Destructor Documentation

EgammaPhotonTkIsolationProducer::EgammaPhotonTkIsolationProducer ( const edm::ParameterSet config)
explicit

Definition at line 26 of file EgammaPhotonTkIsolationProducer.cc.

References beamspotProducer_, conf_, drb_, extRadius_, edm::ParameterSet::getParameter(), intRadiusBarrel_, intRadiusEndcap_, maxVtxDist_, photonProducer_, ptMin_, stripBarrel_, stripEndcap_, and trackProducer_.

26  : conf_(config)
27 {
28  // use configuration file to setup input/output collection names
29  photonProducer_ = conf_.getParameter<edm::InputTag>("photonProducer");
30 
31  trackProducer_ = conf_.getParameter<edm::InputTag>("trackProducer");
32  beamspotProducer_ = conf_.getParameter<edm::InputTag>("BeamspotProducer");
33 
34  ptMin_ = conf_.getParameter<double>("ptMin");
35  intRadiusBarrel_ = conf_.getParameter<double>("intRadiusBarrel");
36  intRadiusEndcap_ = conf_.getParameter<double>("intRadiusEndcap");
37  stripBarrel_ = conf_.getParameter<double>("stripBarrel");
38  stripEndcap_ = conf_.getParameter<double>("stripEndcap");
39  extRadius_ = conf_.getParameter<double>("extRadius");
40  maxVtxDist_ = conf_.getParameter<double>("maxVtxDist");
41  drb_ = conf_.getParameter<double>("maxVtxDistXY");
42 
43  //register your products
44  produces < edm::ValueMap<double> >();
45 }
T getParameter(std::string const &) const
EgammaPhotonTkIsolationProducer::~EgammaPhotonTkIsolationProducer ( )
override

Definition at line 48 of file EgammaPhotonTkIsolationProducer.cc.

48 {}

Member Function Documentation

void EgammaPhotonTkIsolationProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 57 of file EgammaPhotonTkIsolationProducer.cc.

References beamspotProducer_, drb_, extRadius_, objects.autophobj::filler, edm::Event::getByLabel(), mps_fire::i, intRadiusBarrel_, intRadiusEndcap_, maxVtxDist_, eostools::move(), photonProducer_, reco::BeamSpot::position(), edm::Handle< T >::product(), ptMin_, edm::Event::put(), stripBarrel_, stripEndcap_, findElectronsInSiStrips_cfi::trackCollection, trackProducer_, and l1t::tracks.

58 {
59 
60  // Get the filtered objects
62  iEvent.getByLabel(photonProducer_,photonHandle);
63 
64  //get the tracks
66  iEvent.getByLabel(trackProducer_,tracks);
68 
70  iEvent.getByLabel(beamspotProducer_,beamSpotH);
72 
73  //prepare product
74  auto isoMap = std::make_unique<edm::ValueMap<double>>();
76  std::vector<double> retV(photonHandle->size(),0);
77 
79 
80  for(unsigned int i = 0 ; i < photonHandle->size(); ++i ){
81  double isoValue = myTkIsolation.getIso(&(photonHandle->at(i))).second;
82  retV[i] = isoValue;
83  }
84 
85  //fill and insert valuemap
86  filler.insert(photonHandle,retV.begin(),retV.end());
87  filler.fill();
88  iEvent.put(std::move(isoMap));
89 
90 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
math::XYZPoint Point
point in the space
Definition: TrackBase.h:83
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:535
T const * product() const
Definition: Handle.h:81
const Point & position() const
position
Definition: BeamSpot.h:62
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

edm::InputTag EgammaPhotonTkIsolationProducer::beamspotProducer_
private

Definition at line 30 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

edm::ParameterSet EgammaPhotonTkIsolationProducer::conf_
private

Definition at line 41 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer().

double EgammaPhotonTkIsolationProducer::drb_
private

Definition at line 39 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

double EgammaPhotonTkIsolationProducer::extRadius_
private

Definition at line 37 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

double EgammaPhotonTkIsolationProducer::intRadiusBarrel_
private

Definition at line 33 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

double EgammaPhotonTkIsolationProducer::intRadiusEndcap_
private

Definition at line 34 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

double EgammaPhotonTkIsolationProducer::maxVtxDist_
private

Definition at line 38 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

edm::InputTag EgammaPhotonTkIsolationProducer::photonProducer_
private

Definition at line 28 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

double EgammaPhotonTkIsolationProducer::ptMin_
private

Definition at line 32 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

double EgammaPhotonTkIsolationProducer::stripBarrel_
private

Definition at line 35 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

double EgammaPhotonTkIsolationProducer::stripEndcap_
private

Definition at line 36 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().

edm::InputTag EgammaPhotonTkIsolationProducer::trackProducer_
private

Definition at line 29 of file EgammaPhotonTkIsolationProducer.h.

Referenced by EgammaPhotonTkIsolationProducer(), and produce().