CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PATElectronSlimmer.cc
Go to the documentation of this file.
1 
7 
8 
21 
22 namespace pat {
23 
25  public:
26  explicit PATElectronSlimmer(const edm::ParameterSet & iConfig);
27  virtual ~PATElectronSlimmer() { }
28 
29  virtual void produce(edm::Event & iEvent, const edm::EventSetup & iSetup);
30 
31  private:
33 
36 
43  };
44 
45 } // namespace
46 
48  src_(consumes<edm::View<pat::Electron> >(iConfig.getParameter<edm::InputTag>("src"))),
49  dropSuperClusters_(iConfig.getParameter<std::string>("dropSuperCluster")),
50  dropBasicClusters_(iConfig.getParameter<std::string>("dropBasicClusters")),
51  dropPFlowClusters_(iConfig.getParameter<std::string>("dropPFlowClusters")),
52  dropPreshowerClusters_(iConfig.getParameter<std::string>("dropPreshowerClusters")),
53  dropSeedCluster_(iConfig.getParameter<std::string>("dropSeedCluster")),
54  dropRecHits_(iConfig.getParameter<std::string>("dropRecHits")),
55  dropCorrections_(iConfig.getParameter<std::string>("dropCorrections")),
56  dropIsolations_(iConfig.getParameter<std::string>("dropIsolations")),
57  dropShapes_(iConfig.getParameter<std::string>("dropShapes")),
58  dropExtrapolations_(iConfig.getParameter<std::string>("dropExtrapolations")),
59  dropClassifications_(iConfig.getParameter<std::string>("dropClassifications")),
60  linkToPackedPF_(iConfig.getParameter<bool>("linkToPackedPFCandidates")),
61  saveNonZSClusterShapes_(iConfig.getParameter<std::string>("saveNonZSClusterShapes")),
62  reducedBarrelRecHitCollectionToken_(consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("reducedBarrelRecHitCollection"))),
63  reducedEndcapRecHitCollectionToken_(consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("reducedEndcapRecHitCollection")))
64 {
65  produces<std::vector<pat::Electron> >();
66  if (linkToPackedPF_) {
67  reco2pf_ = consumes<edm::ValueMap<std::vector<reco::PFCandidateRef>>>(iConfig.getParameter<edm::InputTag>("recoToPFMap"));
68  pf2pc_ = consumes<edm::Association<pat::PackedCandidateCollection>>(iConfig.getParameter<edm::InputTag>("packedPFCandidates"));
69  pc_ = consumes<pat::PackedCandidateCollection>(iConfig.getParameter<edm::InputTag>("packedPFCandidates"));
70  }
71  mayConsume<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEB"));
72  mayConsume<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEE"));
73 }
74 
75 void
77  using namespace edm;
78  using namespace std;
79 
81  iEvent.getByToken(src_, src);
82 
86  if (linkToPackedPF_) {
87  iEvent.getByToken(reco2pf_, reco2pf);
88  iEvent.getByToken(pf2pc_, pf2pc);
89  iEvent.getByToken(pc_, pc);
90  }
91  noZS::EcalClusterLazyTools lazyToolsNoZS(iEvent, iSetup, reducedBarrelRecHitCollectionToken_, reducedEndcapRecHitCollectionToken_);
92 
93  auto_ptr<vector<pat::Electron> > out(new vector<pat::Electron>());
94  out->reserve(src->size());
95 
96  for (View<pat::Electron>::const_iterator it = src->begin(), ed = src->end(); it != ed; ++it) {
97  out->push_back(*it);
98  pat::Electron & electron = out->back();
99  if (dropSuperClusters_(electron)) { electron.superCluster_.clear(); electron.embeddedSuperCluster_ = false; }
100  if (dropBasicClusters_(electron)) { electron.basicClusters_.clear(); }
101  if (dropSuperClusters_(electron) || dropPFlowClusters_(electron)) { electron.pflowSuperCluster_.clear(); electron.embeddedPflowSuperCluster_ = false; }
102  if (dropBasicClusters_(electron) || dropPFlowClusters_(electron)) { electron.pflowBasicClusters_.clear(); }
103  if (dropPreshowerClusters_(electron)) { electron.preshowerClusters_.clear(); }
104  if (dropPreshowerClusters_(electron) || dropPFlowClusters_(electron)) { electron.pflowPreshowerClusters_.clear(); }
105  if (dropSeedCluster_(electron)) { electron.seedCluster_.clear(); electron.embeddedSeedCluster_ = false; }
106  if (dropRecHits_(electron)) { electron.recHits_ = EcalRecHitCollection(); electron.embeddedRecHits_ = false; }
107  if (dropCorrections_(electron)) { electron.setCorrections(reco::GsfElectron::Corrections()); }
109  if (dropShapes_(electron)) { electron.setShowerShape(reco::GsfElectron::ShowerShape()); }
110  if (dropExtrapolations_(electron)) { electron.setTrackExtrapolations(reco::GsfElectron::TrackExtrapolations()); }
112  if (linkToPackedPF_) {
114  //std::cout << " PAT electron in " << src.id() << " comes from " << electron.refToOrig_.id() << ", " << electron.refToOrig_.key() << std::endl;
116  for (const reco::PFCandidateRef & pf : (*reco2pf)[electron.refToOrig_]) {
117  if (pf2pc->contains(pf.id())) {
118  origs.push_back((*pf2pc)[pf]);
119  } //else std::cerr << " Electron linked to a PFCand in " << pf.id() << " while we expect them in " << pf2pc->ids().front().first << "\n";
120  }
121  //std::cout << "Electron with pt " << electron.pt() << " associated to " << origs.size() << " PF Candidates\n";
122  electron.setAssociatedPackedPFCandidates(origs);
123  //if there's just one PF Cand then it's me, otherwise I have no univoque parent so my ref will be null
124  if (origs.size() == 1) {
125  electron.refToOrig_ = refToPtr(origs[0]);
126  } else {
127  electron.refToOrig_ = reco::CandidatePtr(pc.id());
128  }
129  }
130  if (saveNonZSClusterShapes_(electron)) {
131  std::vector<float> vCov = lazyToolsNoZS.localCovariances(*( electron.superCluster()->seed()));
132  electron.full5x5_setSigmaIetaIphi(vCov[1]);
133  }
134 
135  }
136 
137  iEvent.put(out);
138 }
139 
141 using namespace pat;
edm::EDGetTokenT< pat::PackedCandidateCollection > pc_
void setDr04Isolation(const IsolationVariables &dr04)
Definition: GsfElectron.h:500
T getParameter(std::string const &) const
void setPackedPFCandidateCollection(const edm::RefProd< pat::PackedCandidateCollection > &refprod)
References to PFCandidates (e.g. to recompute isolation)
StringCutObjectSelector< pat::Electron > dropPFlowClusters_
Ptr< typename C::value_type > refToPtr(Ref< C, typename C::value_type, refhelper::FindUsingAdvance< C, typename C::value_type > > const &ref)
Definition: RefToPtr.h:18
edm::EDGetTokenT< edm::Association< pat::PackedCandidateCollection > > pf2pc_
edm::EDGetTokenT< edm::View< pat::Electron > > src_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:446
edm::EDGetTokenT< EcalRecHitCollection > reducedEndcapRecHitCollectionToken_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
StringCutObjectSelector< pat::Electron > dropIsolations_
void full5x5_setSigmaIetaIphi(float sigmaIetaIphi)
Definition: Electron.h:202
void setShowerShape(const ShowerShape &s)
Definition: GsfElectron.h:434
std::vector< reco::SuperCluster > superCluster_
Place to store electron&#39;s supercluster internally.
Definition: Electron.h:264
Slimmer of PAT Electrons.
StringCutObjectSelector< pat::Electron > dropBasicClusters_
void setAssociatedPackedPFCandidates(const edm::RefVector< pat::PackedCandidateCollection > &refvector)
References to PFCandidates linked to this object (e.g. for isolation vetos or masking before jet recl...
void setPfIsolationVariables(const PflowIsolationVariables &iso)
Definition: GsfElectron.h:609
void setDr03Isolation(const IsolationVariables &dr03)
Definition: GsfElectron.h:499
std::vector< reco::CaloCluster > pflowBasicClusters_
Place to store electron&#39;s pflow basic clusters internally.
Definition: Electron.h:272
edm::EDGetTokenT< edm::ValueMap< std::vector< reco::PFCandidateRef > > > reco2pf_
std::vector< reco::CaloCluster > basicClusters_
Place to store electron&#39;s basic clusters internally.
Definition: Electron.h:268
StringCutObjectSelector< pat::Electron > dropExtrapolations_
reco::SuperClusterRef superCluster() const
override the reco::GsfElectron::superCluster method, to access the internal storage of the superclust...
edm::EDGetTokenT< EcalRecHitCollection > reducedBarrelRecHitCollectionToken_
int iEvent
Definition: GenABIO.cc:230
std::vector< reco::CaloCluster > preshowerClusters_
Place to store electron&#39;s preshower clusters internally.
Definition: Electron.h:270
PATElectronSlimmer(const edm::ParameterSet &iConfig)
bool embeddedRecHits_
True if RecHits stored internally.
Definition: Electron.h:286
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
bool embeddedSeedCluster_
True if seed cluster is stored internally.
Definition: Electron.h:282
StringCutObjectSelector< pat::Electron > dropShapes_
tuple out
Definition: dbtoconf.py:99
EcalRecHitCollection recHits_
Place to store electron&#39;s RecHits internally (5x5 around seed+ all RecHits)
Definition: Electron.h:288
StringCutObjectSelector< pat::Electron > dropSuperClusters_
StringCutObjectSelector< pat::Electron > dropSeedCluster_
StringCutObjectSelector< pat::Electron > dropRecHits_
edm::Ptr< Candidate > CandidatePtr
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:25
void setClassification(Classification myclass)
Definition: GsfElectron.h:690
StringCutObjectSelector< pat::Electron > dropClassifications_
bool embeddedPflowSuperCluster_
True if electron&#39;s pflowsupercluster is stored internally.
Definition: Electron.h:262
std::vector< float > localCovariances(const reco::BasicCluster &cluster, float w0=4.7)
Analysis-level electron class.
Definition: Electron.h:52
StringCutObjectSelector< pat::Electron > dropCorrections_
bool embeddedSuperCluster_
True if electron&#39;s supercluster is stored internally.
Definition: Electron.h:260
StringCutObjectSelector< pat::Electron > dropPreshowerClusters_
void setTrackExtrapolations(const TrackExtrapolations &te)
Definition: GsfElectron.h:297
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
std::vector< reco::CaloCluster > pflowPreshowerClusters_
Place to store electron&#39;s pflow preshower clusters internally.
Definition: Electron.h:274
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:64
size_type size() const
Size of the RefVector.
Definition: RefVector.h:89
void setCorrections(const Corrections &c)
Definition: GsfElectron.h:767
void setClassificationVariables(const ClassificationVariables &cv)
Definition: GsfElectron.h:689
StringCutObjectSelector< pat::Electron > saveNonZSClusterShapes_
edm::Ptr< reco::Candidate > refToOrig_
Definition: PATObject.h:407
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup)
std::vector< reco::SuperCluster > pflowSuperCluster_
Place to store electron&#39;s pflow supercluster internally.
Definition: Electron.h:276
edm::SortedCollection< EcalRecHit > EcalRecHitCollection
std::vector< reco::CaloCluster > seedCluster_
Place to store electron&#39;s seed cluster internally.
Definition: Electron.h:284