CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
EG8XObjectUpdateModifier Class Reference
Inheritance diagram for EG8XObjectUpdateModifier:
ModifyObjectValueBase

Public Member Functions

 EG8XObjectUpdateModifier (const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
 
void modifyObject (reco::GsfElectron &ele) const final
 
void modifyObject (reco::Photon &pho) const final
 
void modifyObject (pat::Electron &ele) const final
 
void modifyObject (pat::Photon &pho) const final
 
void setEvent (const edm::Event &) final
 
void setEventContent (const edm::EventSetup &) final
 
 ~EG8XObjectUpdateModifier () override
 
- Public Member Functions inherited from ModifyObjectValueBase
virtual void modifyObject (reco::Muon &) const
 
virtual void modifyObject (reco::BaseTau &) const
 
virtual void modifyObject (reco::Jet &) const
 
virtual void modifyObject (pat::Muon &) const
 
virtual void modifyObject (pat::Tau &) const
 
virtual void modifyObject (pat::Jet &) const
 
 ModifyObjectValueBase (const edm::ParameterSet &conf)
 
const std::string & name () const
 
virtual ~ModifyObjectValueBase ()
 

Private Member Functions

std::pair< int, bool > getSaturationInfo (const reco::SuperCluster &superClus) const
 

Private Attributes

edm::ESHandle< CaloTopologycaloTopoHandle_
 
edm::Handle< EcalRecHitCollectionecalRecHitsEBHandle_
 
edm::EDGetTokenT< EcalRecHitCollectionecalRecHitsEBToken_
 
edm::Handle< EcalRecHitCollectionecalRecHitsEEHandle_
 
edm::EDGetTokenT< EcalRecHitCollectionecalRecHitsEEToken_
 

Detailed Description

Definition at line 20 of file EG8XObjectUpdateModifier.cc.

Constructor & Destructor Documentation

EG8XObjectUpdateModifier::EG8XObjectUpdateModifier ( const edm::ParameterSet conf,
edm::ConsumesCollector cc 
)

Definition at line 45 of file EG8XObjectUpdateModifier.cc.

45  :
49 {
50 
51 
52 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
edm::EDGetTokenT< EcalRecHitCollection > ecalRecHitsEBToken_
ModifyObjectValueBase(const edm::ParameterSet &conf)
edm::EDGetTokenT< EcalRecHitCollection > ecalRecHitsEEToken_
EG8XObjectUpdateModifier::~EG8XObjectUpdateModifier ( )
inlineoverride

Definition at line 23 of file EG8XObjectUpdateModifier.cc.

References modifyObject(), setEvent(), and setEventContent().

23 {}

Member Function Documentation

std::pair< int, bool > EG8XObjectUpdateModifier::getSaturationInfo ( const reco::SuperCluster superClus) const
private

Definition at line 104 of file EG8XObjectUpdateModifier.cc.

References DEFINE_EDM_PLUGIN, EcalBarrel, ecalRecHitsEBHandle_, ecalRecHitsEEHandle_, and reco::SuperCluster::seed().

Referenced by modifyObject().

105 {
106  bool isEB = superClus.seed()->seed().subdetId()==EcalBarrel;
107  const auto& ecalRecHits = isEB ? *ecalRecHitsEBHandle_ : *ecalRecHitsEEHandle_;
108 
109  int nrSatCrys = 0;
110  bool seedSaturated = false;
111  const auto& hitsAndFractions = superClus.seed()->hitsAndFractions();
112  for(const auto& hitFractionPair : hitsAndFractions) {
113  auto ecalRecHitIt = ecalRecHits.find(hitFractionPair.first);
114  if(ecalRecHitIt != ecalRecHits.end() &&
115  ecalRecHitIt->checkFlag(EcalRecHit::Flags::kSaturated)){
116  nrSatCrys++;
117  if(hitFractionPair.first == superClus.seed()->seed()) seedSaturated = true;
118  }
119  }
120  return {nrSatCrys,seedSaturated};
121 }
edm::Handle< EcalRecHitCollection > ecalRecHitsEBHandle_
edm::Handle< EcalRecHitCollection > ecalRecHitsEEHandle_
const CaloClusterPtr & seed() const
seed BasicCluster
Definition: SuperCluster.h:66
void EG8XObjectUpdateModifier::modifyObject ( reco::GsfElectron ele) const
finalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 66 of file EG8XObjectUpdateModifier.cc.

References caloTopoHandle_, EcalClusterToolsT< noZS >::e2x5Bottom(), EcalClusterToolsT< noZS >::e2x5Left(), reco::GsfElectron::ShowerShape::e2x5Left, EcalClusterToolsT< noZS >::e2x5Right(), EcalClusterToolsT< noZS >::e2x5Top(), ecalRecHitsEBHandle_, ecalRecHitsEEHandle_, reco::GsfElectron::full5x5_setShowerShape(), reco::GsfElectron::full5x5_showerShape(), getSaturationInfo(), reco::GsfElectron::isEB(), reco::GsfElectron::SaturationInfo::isSeedSaturated, reco::GsfElectron::SaturationInfo::nSaturatedXtals, edm::ESHandle< T >::product(), reco::GsfElectron::setSaturationInfo(), reco::GsfElectron::setShowerShape(), reco::GsfElectron::showerShape(), and reco::GsfElectron::superCluster().

Referenced by ~EG8XObjectUpdateModifier().

67 {
68 
69  const reco::CaloCluster& seedClus = *(ele.superCluster()->seed());
70  const EcalRecHitCollection* ecalRecHits = ele.isEB() ? &*ecalRecHitsEBHandle_ : &*ecalRecHitsEEHandle_;
71  const auto* caloTopo = caloTopoHandle_.product();
72 
73  auto full5x5ShowerShapes = ele.full5x5_showerShape();
74  full5x5ShowerShapes.e2x5Left = noZS::EcalClusterTools::e2x5Left (seedClus,ecalRecHits,caloTopo);
75  full5x5ShowerShapes.e2x5Right = noZS::EcalClusterTools::e2x5Right (seedClus,ecalRecHits,caloTopo);
76  full5x5ShowerShapes.e2x5Top = noZS::EcalClusterTools::e2x5Top (seedClus,ecalRecHits,caloTopo);
77  full5x5ShowerShapes.e2x5Bottom = noZS::EcalClusterTools::e2x5Bottom(seedClus,ecalRecHits,caloTopo);
78  ele.full5x5_setShowerShape(full5x5ShowerShapes);
79 
80  auto showerShapes = ele.showerShape();
81  showerShapes.e2x5Left = EcalClusterTools::e2x5Left (seedClus,ecalRecHits,caloTopo);
82  showerShapes.e2x5Right = EcalClusterTools::e2x5Right (seedClus,ecalRecHits,caloTopo);
83  showerShapes.e2x5Top = EcalClusterTools::e2x5Top (seedClus,ecalRecHits,caloTopo);
84  showerShapes.e2x5Bottom = EcalClusterTools::e2x5Bottom(seedClus,ecalRecHits,caloTopo);
85  ele.setShowerShape(showerShapes);
86 
88  auto satInfo = getSaturationInfo(*ele.superCluster());
89  eleSatInfo.nSaturatedXtals = satInfo.first;
90  eleSatInfo.isSeedSaturated = satInfo.second;
91  ele.setSaturationInfo(eleSatInfo);
92 }
const ShowerShape & showerShape() const
Definition: GsfElectron.h:458
static float e2x5Bottom(const reco::BasicCluster &cluster, const EcalRecHitCollection *recHits, const CaloTopology *topology)
void setSaturationInfo(const SaturationInfo &s)
Definition: GsfElectron.h:523
void setShowerShape(const ShowerShape &s)
Definition: GsfElectron.h:486
bool isEB() const
Definition: GsfElectron.h:356
static float e2x5Top(const reco::BasicCluster &cluster, const EcalRecHitCollection *recHits, const CaloTopology *topology)
edm::Handle< EcalRecHitCollection > ecalRecHitsEBHandle_
edm::ESHandle< CaloTopology > caloTopoHandle_
static float e2x5Right(const reco::BasicCluster &cluster, const EcalRecHitCollection *recHits, const CaloTopology *topology)
std::pair< int, bool > getSaturationInfo(const reco::SuperCluster &superClus) const
edm::Handle< EcalRecHitCollection > ecalRecHitsEEHandle_
static float e2x5Left(const reco::BasicCluster &cluster, const EcalRecHitCollection *recHits, const CaloTopology *topology)
const ShowerShape & full5x5_showerShape() const
Definition: GsfElectron.h:483
SuperClusterRef superCluster() const override
reference to a SuperCluster
Definition: GsfElectron.h:185
void full5x5_setShowerShape(const ShowerShape &s)
Definition: GsfElectron.h:487
T const * product() const
Definition: ESHandle.h:86
void EG8XObjectUpdateModifier::modifyObject ( reco::Photon pho) const
finalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 94 of file EG8XObjectUpdateModifier.cc.

References getSaturationInfo(), reco::Photon::SaturationInfo::isSeedSaturated, reco::Photon::SaturationInfo::nSaturatedXtals, reco::Photon::setSaturationInfo(), and reco::Photon::superCluster().

95 {
97  auto satInfo = getSaturationInfo(*pho.superCluster());
98  phoSatInfo.nSaturatedXtals = satInfo.first;
99  phoSatInfo.isSeedSaturated = satInfo.second;
100  pho.setSaturationInfo(phoSatInfo);
101 }
void setSaturationInfo(const SaturationInfo &s)
Definition: Photon.h:269
reco::SuperClusterRef superCluster() const override
Ref to SuperCluster.
std::pair< int, bool > getSaturationInfo(const reco::SuperCluster &superClus) const
void EG8XObjectUpdateModifier::modifyObject ( pat::Electron ele) const
inlinefinalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 31 of file EG8XObjectUpdateModifier.cc.

References modifyObject().

Referenced by modifyObject().

31 {return modifyObject(static_cast<reco::GsfElectron&>(ele));}
void modifyObject(reco::GsfElectron &ele) const final
void EG8XObjectUpdateModifier::modifyObject ( pat::Photon pho) const
inlinefinalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 32 of file EG8XObjectUpdateModifier.cc.

References getSaturationInfo(), and modifyObject().

Referenced by modifyObject().

32 {return modifyObject(static_cast<reco::Photon&>(pho));}
void modifyObject(reco::GsfElectron &ele) const final
void EG8XObjectUpdateModifier::setEvent ( const edm::Event iEvent)
finalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 54 of file EG8XObjectUpdateModifier.cc.

References ecalRecHitsEBHandle_, ecalRecHitsEBToken_, ecalRecHitsEEHandle_, ecalRecHitsEEToken_, and edm::Event::getByToken().

Referenced by ~EG8XObjectUpdateModifier().

55 {
58 }
edm::EDGetTokenT< EcalRecHitCollection > ecalRecHitsEBToken_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::Handle< EcalRecHitCollection > ecalRecHitsEBHandle_
edm::Handle< EcalRecHitCollection > ecalRecHitsEEHandle_
edm::EDGetTokenT< EcalRecHitCollection > ecalRecHitsEEToken_
void EG8XObjectUpdateModifier::setEventContent ( const edm::EventSetup iSetup)
finalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 60 of file EG8XObjectUpdateModifier.cc.

References caloTopoHandle_, and edm::EventSetup::get().

Referenced by ~EG8XObjectUpdateModifier().

61 {
62  iSetup.get<CaloTopologyRecord>().get(caloTopoHandle_);
63 }
edm::ESHandle< CaloTopology > caloTopoHandle_
T get() const
Definition: EventSetup.h:71

Member Data Documentation

edm::ESHandle<CaloTopology> EG8XObjectUpdateModifier::caloTopoHandle_
private

Definition at line 37 of file EG8XObjectUpdateModifier.cc.

Referenced by modifyObject(), and setEventContent().

edm::Handle<EcalRecHitCollection> EG8XObjectUpdateModifier::ecalRecHitsEBHandle_
private

Definition at line 38 of file EG8XObjectUpdateModifier.cc.

Referenced by getSaturationInfo(), modifyObject(), and setEvent().

edm::EDGetTokenT<EcalRecHitCollection> EG8XObjectUpdateModifier::ecalRecHitsEBToken_
private

Definition at line 40 of file EG8XObjectUpdateModifier.cc.

Referenced by setEvent().

edm::Handle<EcalRecHitCollection> EG8XObjectUpdateModifier::ecalRecHitsEEHandle_
private

Definition at line 39 of file EG8XObjectUpdateModifier.cc.

Referenced by getSaturationInfo(), modifyObject(), and setEvent().

edm::EDGetTokenT<EcalRecHitCollection> EG8XObjectUpdateModifier::ecalRecHitsEEToken_
private

Definition at line 41 of file EG8XObjectUpdateModifier.cc.

Referenced by setEvent().