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 44 of file EG8XObjectUpdateModifier.cc.

45  : ModifyObjectValueBase(conf),
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 92 of file EG8XObjectUpdateModifier.cc.

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

Referenced by modifyObject().

92  {
93  bool isEB = superClus.seed()->seed().subdetId() == EcalBarrel;
94  const auto& ecalRecHits = isEB ? *ecalRecHitsEBHandle_ : *ecalRecHitsEEHandle_;
95 
96  int nrSatCrys = 0;
97  bool seedSaturated = false;
98  const auto& hitsAndFractions = superClus.seed()->hitsAndFractions();
99  for (const auto& hitFractionPair : hitsAndFractions) {
100  auto ecalRecHitIt = ecalRecHits.find(hitFractionPair.first);
101  if (ecalRecHitIt != ecalRecHits.end() && ecalRecHitIt->checkFlag(EcalRecHit::Flags::kSaturated)) {
102  nrSatCrys++;
103  if (hitFractionPair.first == superClus.seed()->seed())
104  seedSaturated = true;
105  }
106  }
107  return {nrSatCrys, seedSaturated};
108 }
edm::Handle< EcalRecHitCollection > ecalRecHitsEBHandle_
edm::Handle< EcalRecHitCollection > ecalRecHitsEEHandle_
const CaloClusterPtr & seed() const
seed BasicCluster
Definition: SuperCluster.h:77
void EG8XObjectUpdateModifier::modifyObject ( reco::GsfElectron ele) const
finalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 58 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().

58  {
59  const reco::CaloCluster& seedClus = *(ele.superCluster()->seed());
60  const EcalRecHitCollection* ecalRecHits = ele.isEB() ? &*ecalRecHitsEBHandle_ : &*ecalRecHitsEEHandle_;
61  const auto* caloTopo = caloTopoHandle_.product();
62 
63  auto full5x5ShowerShapes = ele.full5x5_showerShape();
64  full5x5ShowerShapes.e2x5Left = noZS::EcalClusterTools::e2x5Left(seedClus, ecalRecHits, caloTopo);
65  full5x5ShowerShapes.e2x5Right = noZS::EcalClusterTools::e2x5Right(seedClus, ecalRecHits, caloTopo);
66  full5x5ShowerShapes.e2x5Top = noZS::EcalClusterTools::e2x5Top(seedClus, ecalRecHits, caloTopo);
67  full5x5ShowerShapes.e2x5Bottom = noZS::EcalClusterTools::e2x5Bottom(seedClus, ecalRecHits, caloTopo);
68  ele.full5x5_setShowerShape(full5x5ShowerShapes);
69 
70  auto showerShapes = ele.showerShape();
71  showerShapes.e2x5Left = EcalClusterTools::e2x5Left(seedClus, ecalRecHits, caloTopo);
72  showerShapes.e2x5Right = EcalClusterTools::e2x5Right(seedClus, ecalRecHits, caloTopo);
73  showerShapes.e2x5Top = EcalClusterTools::e2x5Top(seedClus, ecalRecHits, caloTopo);
74  showerShapes.e2x5Bottom = EcalClusterTools::e2x5Bottom(seedClus, ecalRecHits, caloTopo);
75  ele.setShowerShape(showerShapes);
76 
78  auto satInfo = getSaturationInfo(*ele.superCluster());
79  eleSatInfo.nSaturatedXtals = satInfo.first;
80  eleSatInfo.isSeedSaturated = satInfo.second;
81  ele.setSaturationInfo(eleSatInfo);
82 }
const ShowerShape & showerShape() const
Definition: GsfElectron.h:431
static float e2x5Bottom(const reco::BasicCluster &cluster, const EcalRecHitCollection *recHits, const CaloTopology *topology)
void setSaturationInfo(const SaturationInfo &s)
Definition: GsfElectron.h:492
void setShowerShape(const ShowerShape &s)
Definition: GsfElectron.h:459
bool isEB() const
Definition: GsfElectron.h:328
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:456
SuperClusterRef superCluster() const override
reference to a SuperCluster
Definition: GsfElectron.h:155
void full5x5_setShowerShape(const ShowerShape &s)
Definition: GsfElectron.h:460
T const * product() const
Definition: ESHandle.h:86
void EG8XObjectUpdateModifier::modifyObject ( reco::Photon pho) const
finalvirtual

Reimplemented from ModifyObjectValueBase.

Definition at line 84 of file EG8XObjectUpdateModifier.cc.

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

84  {
86  auto satInfo = getSaturationInfo(*pho.superCluster());
87  phoSatInfo.nSaturatedXtals = satInfo.first;
88  phoSatInfo.isSeedSaturated = satInfo.second;
89  pho.setSaturationInfo(phoSatInfo);
90 }
void setSaturationInfo(const SaturationInfo &s)
Definition: Photon.h:268
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 49 of file EG8XObjectUpdateModifier.cc.

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

Referenced by ~EG8XObjectUpdateModifier().

49  {
52 }
edm::EDGetTokenT< EcalRecHitCollection > ecalRecHitsEBToken_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
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 54 of file EG8XObjectUpdateModifier.cc.

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

Referenced by ~EG8XObjectUpdateModifier().

54  {
55  iSetup.get<CaloTopologyRecord>().get(caloTopoHandle_);
56 }
edm::ESHandle< CaloTopology > caloTopoHandle_
T get() const
Definition: EventSetup.h:73

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