CMS 3D CMS Logo

PATElectronSlimmer.cc
Go to the documentation of this file.
1 
8 
10 
23 
24 namespace pat {
25 
27  public:
28  explicit PATElectronSlimmer(const edm::ParameterSet& iConfig);
29 
30  void produce(edm::Event& iEvent, const edm::EventSetup& iSetup) final;
31 
32  private:
34 
39 
43  const bool linkToPackedPF_;
48  const bool modifyElectron_;
49  std::unique_ptr<pat::ObjectModifier<pat::Electron>> electronModifier_;
50  };
51 
52 } // namespace pat
53 
55  : src_(consumes<edm::View<pat::Electron>>(iConfig.getParameter<edm::InputTag>("src"))),
56  dropSuperClusters_(iConfig.getParameter<std::string>("dropSuperCluster")),
57  dropBasicClusters_(iConfig.getParameter<std::string>("dropBasicClusters")),
58  dropPFlowClusters_(iConfig.getParameter<std::string>("dropPFlowClusters")),
59  dropPreshowerClusters_(iConfig.getParameter<std::string>("dropPreshowerClusters")),
60  dropSeedCluster_(iConfig.getParameter<std::string>("dropSeedCluster")),
61  dropRecHits_(iConfig.getParameter<std::string>("dropRecHits")),
62  dropCorrections_(iConfig.getParameter<std::string>("dropCorrections")),
63  dropIsolations_(iConfig.getParameter<std::string>("dropIsolations")),
64  dropShapes_(iConfig.getParameter<std::string>("dropShapes")),
65  dropSaturation_(iConfig.getParameter<std::string>("dropSaturation")),
66  dropExtrapolations_(iConfig.getParameter<std::string>("dropExtrapolations")),
67  dropClassifications_(iConfig.getParameter<std::string>("dropClassifications")),
68  reco2pf_(mayConsume<edm::ValueMap<std::vector<reco::PFCandidateRef>>>(
69  iConfig.getParameter<edm::InputTag>("recoToPFMap"))),
70  pf2pc_(mayConsume<edm::Association<pat::PackedCandidateCollection>>(
71  iConfig.getParameter<edm::InputTag>("packedPFCandidates"))),
72  pc_(mayConsume<pat::PackedCandidateCollection>(iConfig.getParameter<edm::InputTag>("packedPFCandidates"))),
73  linkToPackedPF_(iConfig.getParameter<bool>("linkToPackedPFCandidates")),
74  saveNonZSClusterShapes_(iConfig.getParameter<std::string>("saveNonZSClusterShapes")),
75  reducedBarrelRecHitCollectionToken_(
76  consumes(iConfig.getParameter<edm::InputTag>("reducedBarrelRecHitCollection"))),
77  reducedEndcapRecHitCollectionToken_(
78  consumes(iConfig.getParameter<edm::InputTag>("reducedEndcapRecHitCollection"))),
79  ecalClusterToolsESGetTokens_{consumesCollector()},
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 }
91 
93  using namespace edm;
94  using namespace std;
95 
97  iEvent.getByToken(src_, src);
98 
102  if (linkToPackedPF_) {
103  iEvent.getByToken(reco2pf_, reco2pf);
104  iEvent.getByToken(pf2pc_, pf2pc);
105  iEvent.getByToken(pc_, pc);
106  }
107  noZS::EcalClusterLazyTools lazyToolsNoZS(iEvent,
108  ecalClusterToolsESGetTokens_.get(iSetup),
109  reducedBarrelRecHitCollectionToken_,
110  reducedEndcapRecHitCollectionToken_);
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 
130  if (dropSuperClusters_(electron)) {
131  electron.superCluster_.clear();
132  electron.embeddedSuperCluster_ = false;
133  }
134  if (dropBasicClusters_(electron)) {
135  electron.basicClusters_.clear();
136  }
137  if (dropSuperClusters_(electron) || dropPFlowClusters_(electron)) {
138  electron.pflowSuperCluster_.clear();
139  electron.embeddedPflowSuperCluster_ = false;
140  }
141  if (dropBasicClusters_(electron) || dropPFlowClusters_(electron)) {
142  electron.pflowBasicClusters_.clear();
143  }
144  if (dropPreshowerClusters_(electron)) {
145  electron.preshowerClusters_.clear();
146  }
147  if (dropPreshowerClusters_(electron) || dropPFlowClusters_(electron)) {
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  }
172  if (dropExtrapolations_(electron)) {
173  electron.setTrackExtrapolations(reco::GsfElectron::TrackExtrapolations());
174  }
175  if (dropClassifications_(electron)) {
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  }
197  if (saveNonZSClusterShapes_(electron)) {
198  const auto& vCov = lazyToolsNoZS.localCovariances(*(electron.superCluster()->seed()));
199  electron.full5x5_setSigmaIetaIphi(vCov[1]);
200  }
201  }
202 
203  iEvent.put(std::move(out));
204 }
205 
207 using namespace pat;
const edm::EDGetTokenT< EcalRecHitCollection > reducedEndcapRecHitCollectionToken_
const StringCutObjectSelector< pat::Electron > dropRecHits_
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
const StringCutObjectSelector< pat::Electron > dropIsolations_
ProductID id() const
Definition: HandleBase.cc:29
const edm::EDGetTokenT< edm::ValueMap< std::vector< reco::PFCandidateRef > > > reco2pf_
const StringCutObjectSelector< pat::Electron > dropSuperClusters_
std::vector< pat::PackedCandidate > PackedCandidateCollection
const StringCutObjectSelector< pat::Electron > dropCorrections_
Slimmer of PAT Electrons.
const edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > pf2pc_
Definition: HeavyIon.h:7
const edm::EDGetTokenT< EcalRecHitCollection > reducedBarrelRecHitCollectionToken_
std::unique_ptr< pat::ObjectModifier< pat::Electron > > electronModifier_
int iEvent
Definition: GenABIO.cc:224
const StringCutObjectSelector< pat::Electron > dropBasicClusters_
PATElectronSlimmer(const edm::ParameterSet &iConfig)
const EcalClusterLazyTools::ESGetTokens ecalClusterToolsESGetTokens_
const StringCutObjectSelector< pat::Electron > dropPreshowerClusters_
const StringCutObjectSelector< pat::Electron > dropClassifications_
const StringCutObjectSelector< pat::Electron > dropShapes_
const StringCutObjectSelector< pat::Electron > dropExtrapolations_
const StringCutObjectSelector< pat::Electron > saveNonZSClusterShapes_
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) final
key
prepare the HTCondor submission files and eventually submit them
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const StringCutObjectSelector< pat::Electron > dropSeedCluster_
edm::Ptr< Candidate > CandidatePtr
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:25
const StringCutObjectSelector< pat::Electron > dropPFlowClusters_
Analysis-level electron class.
Definition: Electron.h:51
const StringCutObjectSelector< pat::Electron > dropSaturation_
fixed size matrix
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:88
edm::Ref< l1t::PFCandidateCollection > PFCandidateRef
Definition: PFCandidate.h:87
const edm::EDGetTokenT< edm::View< pat::Electron > > src_
const edm::EDGetTokenT< pat::PackedCandidateCollection > pc_
def move(src, dest)
Definition: eostools.py:511
edm::SortedCollection< EcalRecHit > EcalRecHitCollection