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
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 &)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 ~EgammaPhotonTkIsolationProducer ()
 
- 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 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
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

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 ( )

Definition at line 48 of file EgammaPhotonTkIsolationProducer.cc.

48 {}

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 57 of file EgammaPhotonTkIsolationProducer.cc.

References HLT_25ns14e33_v1_cff::beamspot, beamspotProducer_, drb_, extRadius_, edm::helper::Filler< Map >::fill(), edm::Event::getByLabel(), i, edm::helper::Filler< Map >::insert(), intRadiusBarrel_, intRadiusEndcap_, maxVtxDist_, photonProducer_, edm::Handle< T >::product(), ptMin_, edm::Event::put(), stripBarrel_, stripEndcap_, HLT_25ns14e33_v3_cff::trackCollection, trackProducer_, and testEve_cfg::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);
71  reco::TrackBase::Point beamspot = beamSpotH->position();
72 
73  //prepare product
74  std::auto_ptr<edm::ValueMap<double> > isoMap(new edm::ValueMap<double>());
75  edm::ValueMap<double>::Filler filler(*isoMap);
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(isoMap);
89 
90 }
int i
Definition: DBlmapReader.cc:9
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
math::XYZPoint Point
point in the space
Definition: TrackBase.h:83
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:420
T const * product() const
Definition: Handle.h:81
tuple tracks
Definition: testEve_cfg.py:39

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().