CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
EgammaHLTR9Producer Class Reference

#include <RecoEgamma/EgammaHLTProducers/interface/EgammaHLTR9Producer.h>

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

Public Member Functions

 EgammaHLTR9Producer (const edm::ParameterSet &)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 ~EgammaHLTR9Producer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 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
 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
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Attributes

edm::ParameterSet conf_
 
edm::EDGetTokenT
< EcalRecHitCollection
ecalRechitEBToken_
 
edm::EDGetTokenT
< EcalRecHitCollection
ecalRechitEEToken_
 
edm::EDGetTokenT
< reco::RecoEcalCandidateCollection
recoEcalCandidateProducer_
 
bool useSwissCross_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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

Author
Roberto Covarelli (CERN)

$Id:

Definition at line 40 of file EgammaHLTR9Producer.h.

Constructor & Destructor Documentation

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

Definition at line 17 of file EgammaHLTR9Producer.cc.

References conf_, ecalRechitEBToken_, ecalRechitEEToken_, edm::ParameterSet::getParameter(), recoEcalCandidateProducer_, and useSwissCross_.

17  : conf_(config)
18 {
19  // use configuration file to setup input/output collection names
20  recoEcalCandidateProducer_ = consumes<reco::RecoEcalCandidateCollection>(conf_.getParameter<edm::InputTag>("recoEcalCandidateProducer"));
21  ecalRechitEBToken_ = consumes<EcalRecHitCollection>(conf_.getParameter< edm::InputTag > ("ecalRechitEB"));
22  ecalRechitEEToken_ = consumes<EcalRecHitCollection>(conf_.getParameter< edm::InputTag > ("ecalRechitEE"));
23 
24  useSwissCross_ = conf_.getParameter< bool > ("useSwissCross");
25 
26  //register your products
27  produces < reco::RecoEcalCandidateIsolationMap >();
28 }
T getParameter(std::string const &) const
edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEBToken_
edm::EDGetTokenT< reco::RecoEcalCandidateCollection > recoEcalCandidateProducer_
edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEEToken_
edm::ParameterSet conf_
EgammaHLTR9Producer::~EgammaHLTR9Producer ( )

Definition at line 30 of file EgammaHLTR9Producer.cc.

31 {}

Member Function Documentation

void EgammaHLTR9Producer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 35 of file EgammaHLTR9Producer.cc.

References edm::ConfigurationDescriptions::add(), and edm::ParameterSetDescription::add().

35  {
36 
38  desc.add<edm::InputTag>(("recoEcalCandidateProducer"), edm::InputTag("hltRecoEcalCandidate"));
39  desc.add<edm::InputTag>(("ecalRechitEB"), edm::InputTag("hltEcalRegionalEgammaRecHit","EcalRecHitsEB"));
40  desc.add<edm::InputTag>(("ecalRechitEE"), edm::InputTag("hltEcalRegionalEgammaRecHit","EcalRecHitsEE"));
41  desc.add<bool> (("useSwissCross"), false);
42  descriptions.add(("hltEgammaHLTR9Producer"), desc);
43 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void EgammaHLTR9Producer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDProducer.

Definition at line 46 of file EgammaHLTR9Producer.cc.

References ecalRechitEBToken_, ecalRechitEEToken_, edm::Event::getByToken(), edm::AssociationMap< Tag >::insert(), edm::Event::put(), recoEcalCandidateProducer_, and useSwissCross_.

46  {
47 
48  // Get the HLT filtered objects
50  iEvent.getByToken(recoEcalCandidateProducer_,recoecalcandHandle);
51 
53 
55 
56  for(reco::RecoEcalCandidateCollection::const_iterator iRecoEcalCand = recoecalcandHandle->begin(); iRecoEcalCand != recoecalcandHandle->end(); iRecoEcalCand++){
57 
58  reco::RecoEcalCandidateRef recoecalcandref(recoecalcandHandle,iRecoEcalCand-recoecalcandHandle->begin());
59 
60  float r9 = -1;
61 
62  if (useSwissCross_){
64  iEvent.getByToken(ecalRechitEBToken_, pEBRecHits);
65  r9 = -1;
66  }
67  else{
68  float e9 = lazyTools.e3x3( *(recoecalcandref->superCluster()->seed()) );
69  if (e9 != 0 ) {r9 = lazyTools.eMax(*(recoecalcandref->superCluster()->seed()) )/e9;}
70  }
71 
72  r9Map.insert(recoecalcandref, r9);
73 
74  }
75 
76  std::auto_ptr<reco::RecoEcalCandidateIsolationMap> R9Map(new reco::RecoEcalCandidateIsolationMap(r9Map));
77  iEvent.put(R9Map);
78 
79 }
edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEBToken_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
edm::EDGetTokenT< reco::RecoEcalCandidateCollection > recoEcalCandidateProducer_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEEToken_
void insert(const key_type &k, const data_type &v)
insert an association

Member Data Documentation

edm::ParameterSet EgammaHLTR9Producer::conf_
private

Definition at line 55 of file EgammaHLTR9Producer.h.

Referenced by EgammaHLTR9Producer().

edm::EDGetTokenT<EcalRecHitCollection> EgammaHLTR9Producer::ecalRechitEBToken_
private

Definition at line 51 of file EgammaHLTR9Producer.h.

Referenced by EgammaHLTR9Producer(), and produce().

edm::EDGetTokenT<EcalRecHitCollection> EgammaHLTR9Producer::ecalRechitEEToken_
private

Definition at line 52 of file EgammaHLTR9Producer.h.

Referenced by EgammaHLTR9Producer(), and produce().

edm::EDGetTokenT<reco::RecoEcalCandidateCollection> EgammaHLTR9Producer::recoEcalCandidateProducer_
private

Definition at line 50 of file EgammaHLTR9Producer.h.

Referenced by EgammaHLTR9Producer(), and produce().

bool EgammaHLTR9Producer::useSwissCross_
private

Definition at line 53 of file EgammaHLTR9Producer.h.

Referenced by EgammaHLTR9Producer(), and produce().