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
EgammaHLTClusterShapeProducer Class Reference

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

Inheritance diagram for EgammaHLTClusterShapeProducer:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 EgammaHLTClusterShapeProducer (const edm::ParameterSet &)
 
void produce (edm::StreamID sid, edm::Event &, const edm::EventSetup &) const override
 
 ~EgammaHLTClusterShapeProducer ()
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- 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 (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &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 ()
 

Static Public Member Functions

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

Private Attributes

const edm::EDGetTokenT
< EcalRecHitCollection
ecalRechitEBToken_
 
const edm::EDGetTokenT
< EcalRecHitCollection
ecalRechitEEToken_
 
const bool EtaOrIeta_
 
const edm::EDGetTokenT
< reco::RecoEcalCandidateCollection
recoEcalCandidateProducer_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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 31 of file EgammaHLTClusterShapeProducer.h.

Constructor & Destructor Documentation

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

Definition at line 18 of file EgammaHLTClusterShapeProducer.cc.

18  :
19  recoEcalCandidateProducer_(consumes<reco::RecoEcalCandidateCollection>(config.getParameter<edm::InputTag>("recoEcalCandidateProducer"))),
20  ecalRechitEBToken_(consumes<EcalRecHitCollection>(config.getParameter< edm::InputTag > ("ecalRechitEB"))),
21  ecalRechitEEToken_(consumes<EcalRecHitCollection>(config.getParameter< edm::InputTag > ("ecalRechitEE"))),
22  EtaOrIeta_(config.getParameter< bool > ("isIeta")) {
23 
24  //register your products
25  produces < reco::RecoEcalCandidateIsolationMap >();
26  produces < reco::RecoEcalCandidateIsolationMap >("sigmaIEtaIEta5x5");
27 }
T getParameter(std::string const &) const
const edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEEToken_
const edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEBToken_
const edm::EDGetTokenT< reco::RecoEcalCandidateCollection > recoEcalCandidateProducer_
EgammaHLTClusterShapeProducer::~EgammaHLTClusterShapeProducer ( )

Definition at line 29 of file EgammaHLTClusterShapeProducer.cc.

30 {}

Member Function Documentation

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

Definition at line 32 of file EgammaHLTClusterShapeProducer.cc.

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

32  {
33 
35  desc.add<edm::InputTag>(("recoEcalCandidateProducer"), edm::InputTag("hltL1SeededRecoEcalCandidate"));
36  desc.add< edm::InputTag >(("ecalRechitEB"), edm::InputTag("hltEcalRegionalEgammaRecHit","EcalRecHitsEB"));
37  desc.add< edm::InputTag >(("ecalRechitEE"), edm::InputTag("hltEcalRegionalEgammaRecHit","EcalRecHitsEE"));
38  desc.add< bool >(("isIeta"), true);
39  descriptions.add(("hltEgammaHLTClusterShapeProducer"), desc);
40 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void EgammaHLTClusterShapeProducer::produce ( edm::StreamID  sid,
edm::Event iEvent,
const edm::EventSetup iSetup 
) const
overridevirtual

Implements edm::global::EDProducerBase.

Definition at line 42 of file EgammaHLTClusterShapeProducer.cc.

References ecalRechitEBToken_, ecalRechitEEToken_, EtaOrIeta_, edm::Event::getByToken(), edm::AssociationMap< Tag >::insert(), EcalClusterLazyToolsT< EcalClusterToolsImpl >::localCovariances(), edm::Event::put(), recoEcalCandidateProducer_, and mathSSE::sqrt().

42  {
43 
44  // Get the HLT filtered objects
46  iEvent.getByToken(recoEcalCandidateProducer_,recoecalcandHandle);
47 
48  EcalClusterLazyTools lazyTools( iEvent, iSetup, ecalRechitEBToken_, ecalRechitEEToken_ );
50 
51  reco::RecoEcalCandidateIsolationMap clshMap(recoecalcandHandle);
52  reco::RecoEcalCandidateIsolationMap clsh5x5Map(recoecalcandHandle);
53 
54 
55  for(unsigned int iRecoEcalCand = 0; iRecoEcalCand<recoecalcandHandle->size(); iRecoEcalCand++) {
56 
57  reco::RecoEcalCandidateRef recoecalcandref(recoecalcandHandle, iRecoEcalCand);
58 
59  std::vector<float> vCov ;
60  double sigmaee;
61  if (EtaOrIeta_) {
62  vCov = lazyTools.localCovariances( *(recoecalcandref->superCluster()->seed()) );
63  sigmaee = sqrt(vCov[0]);
64  } else {
65  vCov = lazyTools.covariances( *(recoecalcandref->superCluster()->seed()) );
66  sigmaee = sqrt(vCov[0]);
67  double EtaSC = recoecalcandref->eta();
68  if (EtaSC > 1.479) sigmaee = sigmaee - 0.02*(EtaSC - 2.3);
69  }
70 
71  double sigmaee5x5 = sqrt(lazyTools5x5.localCovariances(*(recoecalcandref->superCluster()->seed()) )[0]);
72  clshMap.insert(recoecalcandref, sigmaee);
73  clsh5x5Map.insert(recoecalcandref,sigmaee5x5);
74 
75 
76  }
77 
78 
79 
80  std::auto_ptr<reco::RecoEcalCandidateIsolationMap> clushMap(new reco::RecoEcalCandidateIsolationMap(clshMap));
81  std::auto_ptr<reco::RecoEcalCandidateIsolationMap> clush5x5Map(new reco::RecoEcalCandidateIsolationMap(clsh5x5Map));
82  iEvent.put(clushMap);
83  iEvent.put(clush5x5Map,"sigmaIEtaIEta5x5");
84 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
T sqrt(T t)
Definition: SSEVec.h:18
const edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEEToken_
const edm::EDGetTokenT< EcalRecHitCollection > ecalRechitEBToken_
const edm::EDGetTokenT< reco::RecoEcalCandidateCollection > recoEcalCandidateProducer_

Member Data Documentation

const edm::EDGetTokenT<EcalRecHitCollection> EgammaHLTClusterShapeProducer::ecalRechitEBToken_
private

Definition at line 43 of file EgammaHLTClusterShapeProducer.h.

Referenced by produce().

const edm::EDGetTokenT<EcalRecHitCollection> EgammaHLTClusterShapeProducer::ecalRechitEEToken_
private

Definition at line 44 of file EgammaHLTClusterShapeProducer.h.

Referenced by produce().

const bool EgammaHLTClusterShapeProducer::EtaOrIeta_
private

Definition at line 45 of file EgammaHLTClusterShapeProducer.h.

Referenced by produce().

const edm::EDGetTokenT<reco::RecoEcalCandidateCollection> EgammaHLTClusterShapeProducer::recoEcalCandidateProducer_
private

Definition at line 42 of file EgammaHLTClusterShapeProducer.h.

Referenced by produce().