CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
pat::PATElectronSlimmer Class Reference

Slimmer of PAT Electrons. More...

Inheritance diagram for pat::PATElectronSlimmer:
edm::stream::EDProducer<>

Public Member Functions

void beginLuminosityBlock (const edm::LuminosityBlock &, const edm::EventSetup &) final
 
 PATElectronSlimmer (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) final
 
 ~PATElectronSlimmer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Private Attributes

const StringCutObjectSelector< pat::ElectrondropBasicClusters_
 
const StringCutObjectSelector< pat::ElectrondropClassifications_
 
const StringCutObjectSelector< pat::ElectrondropCorrections_
 
const StringCutObjectSelector< pat::ElectrondropExtrapolations_
 
const StringCutObjectSelector< pat::ElectrondropIsolations_
 
const StringCutObjectSelector< pat::ElectrondropPFlowClusters_
 
const StringCutObjectSelector< pat::ElectrondropPreshowerClusters_
 
const StringCutObjectSelector< pat::ElectrondropRecHits_
 
const StringCutObjectSelector< pat::ElectrondropSaturation_
 
const StringCutObjectSelector< pat::ElectrondropSeedCluster_
 
const StringCutObjectSelector< pat::ElectrondropShapes_
 
const StringCutObjectSelector< pat::ElectrondropSuperClusters_
 
std::unique_ptr< pat::ObjectModifier< pat::Electron > > electronModifier_
 
const bool linkToPackedPF_
 
const bool modifyElectron_
 
const edm::EDGetTokenT< pat::PackedCandidateCollectionpc_
 
const edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > pf2pc_
 
const edm::EDGetTokenT< edm::ValueMap< std::vector< reco::PFCandidateRef > > > reco2pf_
 
const edm::EDGetTokenT< EcalRecHitCollectionreducedBarrelRecHitCollectionToken_
 
const edm::EDGetTokenT< EcalRecHitCollectionreducedEndcapRecHitCollectionToken_
 
const StringCutObjectSelector< pat::ElectronsaveNonZSClusterShapes_
 
const edm::EDGetTokenT< edm::View< pat::Electron > > src_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Slimmer of PAT Electrons.

Definition at line 26 of file PATElectronSlimmer.cc.

Constructor & Destructor Documentation

◆ PATElectronSlimmer()

pat::PATElectronSlimmer::PATElectronSlimmer ( const edm::ParameterSet iConfig)
explicit

Definition at line 55 of file PATElectronSlimmer.cc.

56  : src_(consumes<edm::View<pat::Electron>>(iConfig.getParameter<edm::InputTag>("src"))),
57  dropSuperClusters_(iConfig.getParameter<std::string>("dropSuperCluster")),
58  dropBasicClusters_(iConfig.getParameter<std::string>("dropBasicClusters")),
59  dropPFlowClusters_(iConfig.getParameter<std::string>("dropPFlowClusters")),
60  dropPreshowerClusters_(iConfig.getParameter<std::string>("dropPreshowerClusters")),
61  dropSeedCluster_(iConfig.getParameter<std::string>("dropSeedCluster")),
62  dropRecHits_(iConfig.getParameter<std::string>("dropRecHits")),
63  dropCorrections_(iConfig.getParameter<std::string>("dropCorrections")),
64  dropIsolations_(iConfig.getParameter<std::string>("dropIsolations")),
65  dropShapes_(iConfig.getParameter<std::string>("dropShapes")),
66  dropSaturation_(iConfig.getParameter<std::string>("dropSaturation")),
67  dropExtrapolations_(iConfig.getParameter<std::string>("dropExtrapolations")),
68  dropClassifications_(iConfig.getParameter<std::string>("dropClassifications")),
69  reco2pf_(mayConsume<edm::ValueMap<std::vector<reco::PFCandidateRef>>>(
70  iConfig.getParameter<edm::InputTag>("recoToPFMap"))),
72  iConfig.getParameter<edm::InputTag>("packedPFCandidates"))),
73  pc_(mayConsume<pat::PackedCandidateCollection>(iConfig.getParameter<edm::InputTag>("packedPFCandidates"))),
74  linkToPackedPF_(iConfig.getParameter<bool>("linkToPackedPFCandidates")),
75  saveNonZSClusterShapes_(iConfig.getParameter<std::string>("saveNonZSClusterShapes")),
77  consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("reducedBarrelRecHitCollection"))),
79  consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("reducedEndcapRecHitCollection"))),
80  modifyElectron_(iConfig.getParameter<bool>("modifyElectrons")) {
81  if (modifyElectron_) {
82  const edm::ParameterSet& mod_config = iConfig.getParameter<edm::ParameterSet>("modifierConfig");
83  electronModifier_ = std::make_unique<pat::ObjectModifier<pat::Electron>>(mod_config, consumesCollector());
84  }
85 
86  mayConsume<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEB"));
87  mayConsume<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEE"));
88 
89  produces<std::vector<pat::Electron>>();
90 }

References electronModifier_, edm::ParameterSet::getParameter(), and modifyElectron_.

◆ ~PATElectronSlimmer()

pat::PATElectronSlimmer::~PATElectronSlimmer ( )
inlineoverride

Definition at line 29 of file PATElectronSlimmer.cc.

29 {}

Member Function Documentation

◆ beginLuminosityBlock()

void pat::PATElectronSlimmer::beginLuminosityBlock ( const edm::LuminosityBlock ,
const edm::EventSetup iSetup 
)
final

Definition at line 92 of file PATElectronSlimmer.cc.

92 {}

◆ produce()

void pat::PATElectronSlimmer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
final

Definition at line 94 of file PATElectronSlimmer.cc.

94  {
95  using namespace edm;
96  using namespace std;
97 
99  iEvent.getByToken(src_, src);
100 
104  if (linkToPackedPF_) {
105  iEvent.getByToken(reco2pf_, reco2pf);
106  iEvent.getByToken(pf2pc_, pf2pc);
107  iEvent.getByToken(pc_, pc);
108  }
109  noZS::EcalClusterLazyTools lazyToolsNoZS(
111 
112  auto out = std::make_unique<std::vector<pat::Electron>>();
113  out->reserve(src->size());
114 
115  if (modifyElectron_) {
116  electronModifier_->setEvent(iEvent);
117  }
118  if (modifyElectron_)
119  electronModifier_->setEventContent(iSetup);
120 
121  std::vector<unsigned int> keys;
122  for (View<pat::Electron>::const_iterator it = src->begin(), ed = src->end(); it != ed; ++it) {
123  out->push_back(*it);
124  pat::Electron& electron = out->back();
125 
126  if (modifyElectron_) {
127  electronModifier_->modify(electron);
128  }
129 
131  electron.superCluster_.clear();
132  electron.embeddedSuperCluster_ = false;
133  }
135  electron.basicClusters_.clear();
136  }
138  electron.pflowSuperCluster_.clear();
139  electron.embeddedPflowSuperCluster_ = false;
140  }
142  electron.pflowBasicClusters_.clear();
143  }
145  electron.preshowerClusters_.clear();
146  }
148  electron.pflowPreshowerClusters_.clear();
149  }
150  if (dropSeedCluster_(electron)) {
151  electron.seedCluster_.clear();
152  electron.embeddedSeedCluster_ = false;
153  }
154  if (dropRecHits_(electron)) {
155  electron.recHits_ = EcalRecHitCollection();
156  electron.embeddedRecHits_ = false;
157  }
158  if (dropCorrections_(electron)) {
159  electron.setCorrections(reco::GsfElectron::Corrections());
160  }
161  if (dropIsolations_(electron)) {
164  electron.setPfIsolationVariables(reco::GsfElectron::PflowIsolationVariables());
165  }
166  if (dropShapes_(electron)) {
167  electron.setShowerShape(reco::GsfElectron::ShowerShape());
168  }
169  if (dropSaturation_(electron)) {
170  electron.setSaturationInfo(reco::GsfElectron::SaturationInfo());
171  }
173  electron.setTrackExtrapolations(reco::GsfElectron::TrackExtrapolations());
174  }
176  electron.setClassificationVariables(reco::GsfElectron::ClassificationVariables());
177  electron.setClassification(reco::GsfElectron::Classification());
178  }
179  if (linkToPackedPF_) {
180  //std::cout << " PAT electron in " << src.id() << " comes from " << electron.refToOrig_.id() << ", " << electron.refToOrig_.key() << std::endl;
181  keys.clear();
182  for (auto const& pf : (*reco2pf)[electron.refToOrig_]) {
183  if (pf2pc->contains(pf.id())) {
184  keys.push_back((*pf2pc)[pf].key());
185  }
186  }
187  electron.setAssociatedPackedPFCandidates(
189  //std::cout << "Electron with pt " << electron.pt() << " associated to " << electron.associatedPackedFCandidateIndices_.size() << " PF Candidates\n";
190  //if there's just one PF Cand then it's me, otherwise I have no univoque parent so my ref will be null
191  if (keys.size() == 1) {
192  electron.refToOrig_ = electron.sourceCandidatePtr(0);
193  } else {
194  electron.refToOrig_ = reco::CandidatePtr(pc.id());
195  }
196  }
198  std::vector<float> vCov = lazyToolsNoZS.localCovariances(*(electron.superCluster()->seed()));
199  electron.full5x5_setSigmaIetaIphi(vCov[1]);
200  }
201  }
202 
203  iEvent.put(std::move(out));
204 }

References metsig::electron, edm::HandleBase::id(), iEvent, crabWrapper::key, relativeConstraints::keys, EcalClusterLazyToolsT< ClusterTools >::localCovariances(), eostools::move(), MillePedeFileConverter_cfg::out, packedPFCandidateRefMixer_cfi::pf, and TrackRefitter_38T_cff::src.

Member Data Documentation

◆ dropBasicClusters_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropBasicClusters_
private

Definition at line 37 of file PATElectronSlimmer.cc.

◆ dropClassifications_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropClassifications_
private

Definition at line 39 of file PATElectronSlimmer.cc.

◆ dropCorrections_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropCorrections_
private

Definition at line 39 of file PATElectronSlimmer.cc.

◆ dropExtrapolations_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropExtrapolations_
private

Definition at line 39 of file PATElectronSlimmer.cc.

◆ dropIsolations_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropIsolations_
private

Definition at line 39 of file PATElectronSlimmer.cc.

◆ dropPFlowClusters_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropPFlowClusters_
private

Definition at line 37 of file PATElectronSlimmer.cc.

◆ dropPreshowerClusters_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropPreshowerClusters_
private

Definition at line 37 of file PATElectronSlimmer.cc.

◆ dropRecHits_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropRecHits_
private

Definition at line 37 of file PATElectronSlimmer.cc.

◆ dropSaturation_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropSaturation_
private

Definition at line 39 of file PATElectronSlimmer.cc.

◆ dropSeedCluster_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropSeedCluster_
private

Definition at line 37 of file PATElectronSlimmer.cc.

◆ dropShapes_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropShapes_
private

Definition at line 39 of file PATElectronSlimmer.cc.

◆ dropSuperClusters_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::dropSuperClusters_
private

Definition at line 37 of file PATElectronSlimmer.cc.

◆ electronModifier_

std::unique_ptr<pat::ObjectModifier<pat::Electron> > pat::PATElectronSlimmer::electronModifier_
private

Definition at line 50 of file PATElectronSlimmer.cc.

Referenced by PATElectronSlimmer().

◆ linkToPackedPF_

const bool pat::PATElectronSlimmer::linkToPackedPF_
private

Definition at line 45 of file PATElectronSlimmer.cc.

◆ modifyElectron_

const bool pat::PATElectronSlimmer::modifyElectron_
private

Definition at line 49 of file PATElectronSlimmer.cc.

Referenced by PATElectronSlimmer().

◆ pc_

const edm::EDGetTokenT<pat::PackedCandidateCollection> pat::PATElectronSlimmer::pc_
private

Definition at line 44 of file PATElectronSlimmer.cc.

◆ pf2pc_

const edm::EDGetTokenT<edm::Association<pat::PackedCandidateCollection> > pat::PATElectronSlimmer::pf2pc_
private

Definition at line 43 of file PATElectronSlimmer.cc.

◆ reco2pf_

const edm::EDGetTokenT<edm::ValueMap<std::vector<reco::PFCandidateRef> > > pat::PATElectronSlimmer::reco2pf_
private

Definition at line 42 of file PATElectronSlimmer.cc.

◆ reducedBarrelRecHitCollectionToken_

const edm::EDGetTokenT<EcalRecHitCollection> pat::PATElectronSlimmer::reducedBarrelRecHitCollectionToken_
private

Definition at line 47 of file PATElectronSlimmer.cc.

◆ reducedEndcapRecHitCollectionToken_

const edm::EDGetTokenT<EcalRecHitCollection> pat::PATElectronSlimmer::reducedEndcapRecHitCollectionToken_
private

Definition at line 47 of file PATElectronSlimmer.cc.

◆ saveNonZSClusterShapes_

const StringCutObjectSelector<pat::Electron> pat::PATElectronSlimmer::saveNonZSClusterShapes_
private

Definition at line 46 of file PATElectronSlimmer.cc.

◆ src_

const edm::EDGetTokenT<edm::View<pat::Electron> > pat::PATElectronSlimmer::src_
private

Definition at line 35 of file PATElectronSlimmer.cc.

pat::PATElectronSlimmer::dropPFlowClusters_
const StringCutObjectSelector< pat::Electron > dropPFlowClusters_
Definition: PATElectronSlimmer.cc:37
edm::RefProd< pat::PackedCandidateCollection >
pat::PATElectronSlimmer::reco2pf_
const edm::EDGetTokenT< edm::ValueMap< std::vector< reco::PFCandidateRef > > > reco2pf_
Definition: PATElectronSlimmer.cc:42
pat::PATElectronSlimmer::dropCorrections_
const StringCutObjectSelector< pat::Electron > dropCorrections_
Definition: PATElectronSlimmer.cc:39
edm
HLT enums.
Definition: AlignableModifier.h:19
reco::GsfElectron::PflowIsolationVariables
Definition: GsfElectron.h:606
pat::PATElectronSlimmer::dropIsolations_
const StringCutObjectSelector< pat::Electron > dropIsolations_
Definition: PATElectronSlimmer.cc:39
pat::PATElectronSlimmer::saveNonZSClusterShapes_
const StringCutObjectSelector< pat::Electron > saveNonZSClusterShapes_
Definition: PATElectronSlimmer.cc:46
pat::PATElectronSlimmer::pc_
const edm::EDGetTokenT< pat::PackedCandidateCollection > pc_
Definition: PATElectronSlimmer.cc:44
relativeConstraints.keys
keys
Definition: relativeConstraints.py:89
edm::Handle
Definition: AssociativeIterator.h:50
pat::PATElectronSlimmer::modifyElectron_
const bool modifyElectron_
Definition: PATElectronSlimmer.cc:49
reco::GsfElectron::Classification
Classification
Definition: GsfElectron.h:724
pat::PATElectronSlimmer::dropPreshowerClusters_
const StringCutObjectSelector< pat::Electron > dropPreshowerClusters_
Definition: PATElectronSlimmer.cc:37
pat::PATElectronSlimmer::linkToPackedPF_
const bool linkToPackedPF_
Definition: PATElectronSlimmer.cc:45
pat::PATElectronSlimmer::src_
const edm::EDGetTokenT< edm::View< pat::Electron > > src_
Definition: PATElectronSlimmer.cc:35
reco::GsfElectron::ShowerShape
Definition: GsfElectron.h:366
metsig::electron
Definition: SignAlgoResolutions.h:48
reco::GsfElectron::IsolationVariables
Definition: GsfElectron.h:510
pat::PATElectronSlimmer::dropSuperClusters_
const StringCutObjectSelector< pat::Electron > dropSuperClusters_
Definition: PATElectronSlimmer.cc:37
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
EcalRecHitCollection
edm::SortedCollection< EcalRecHit > EcalRecHitCollection
Definition: EcalRecHitCollections.h:10
edm::View
Definition: CaloClusterFwd.h:14
EcalClusterLazyToolsT
Definition: EcalClusterLazyTools.h:105
pat::PATElectronSlimmer::reducedEndcapRecHitCollectionToken_
const edm::EDGetTokenT< EcalRecHitCollection > reducedEndcapRecHitCollectionToken_
Definition: PATElectronSlimmer.cc:47
edm::ParameterSet
Definition: ParameterSet.h:36
TrackRefitter_38T_cff.src
src
Definition: TrackRefitter_38T_cff.py:24
reco::GsfElectron::TrackExtrapolations
Definition: GsfElectron.h:260
iEvent
int iEvent
Definition: GenABIO.cc:224
pat::PATElectronSlimmer::dropSaturation_
const StringCutObjectSelector< pat::Electron > dropSaturation_
Definition: PATElectronSlimmer.cc:39
pat::PATElectronSlimmer::reducedBarrelRecHitCollectionToken_
const edm::EDGetTokenT< EcalRecHitCollection > reducedBarrelRecHitCollectionToken_
Definition: PATElectronSlimmer.cc:47
edm::Association
Definition: Association.h:18
reco::GsfElectron::ClassificationVariables
Definition: GsfElectron.h:718
pat::PATElectronSlimmer::electronModifier_
std::unique_ptr< pat::ObjectModifier< pat::Electron > > electronModifier_
Definition: PATElectronSlimmer.cc:50
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
pat::PATElectronSlimmer::dropRecHits_
const StringCutObjectSelector< pat::Electron > dropRecHits_
Definition: PATElectronSlimmer.cc:37
pat::PATElectronSlimmer::dropBasicClusters_
const StringCutObjectSelector< pat::Electron > dropBasicClusters_
Definition: PATElectronSlimmer.cc:37
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
packedPFCandidateRefMixer_cfi.pf
pf
Definition: packedPFCandidateRefMixer_cfi.py:4
pat::PATElectronSlimmer::dropShapes_
const StringCutObjectSelector< pat::Electron > dropShapes_
Definition: PATElectronSlimmer.cc:39
pat::PATElectronSlimmer::dropExtrapolations_
const StringCutObjectSelector< pat::Electron > dropExtrapolations_
Definition: PATElectronSlimmer.cc:39
edm::ValueMap
Definition: ValueMap.h:107
edm::View::const_iterator
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
reco::CandidatePtr
edm::Ptr< Candidate > CandidatePtr
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:25
pat::Electron
Analysis-level electron class.
Definition: Electron.h:51
reco::GsfElectron::SaturationInfo
Definition: GsfElectron.h:490
crabWrapper.key
key
Definition: crabWrapper.py:19
edm::HandleBase::id
ProductID id() const
Definition: HandleBase.cc:13
pat::PATElectronSlimmer::dropSeedCluster_
const StringCutObjectSelector< pat::Electron > dropSeedCluster_
Definition: PATElectronSlimmer.cc:37
edm::InputTag
Definition: InputTag.h:15
pat::PATElectronSlimmer::dropClassifications_
const StringCutObjectSelector< pat::Electron > dropClassifications_
Definition: PATElectronSlimmer.cc:39
reco::GsfElectron::Corrections
Definition: GsfElectron.h:771
pat::PATElectronSlimmer::pf2pc_
const edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > pf2pc_
Definition: PATElectronSlimmer.cc:43