CMS 3D CMS Logo

HGCalElectronIDValueMapProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: RecoEgamma/EgammaTools
4 // Class: HGCalElectronIDValueMapProducer
5 //
13 //
14 // Original Author: Nicholas Charles Smith
15 // Created: Wed, 05 Apr 2017 12:17:43 GMT
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 
22 // user include files
25 
28 
31 
33 
37 
40 
42 public:
45 
46  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
47 
48 private:
49  void beginStream(edm::StreamID) override;
50  void produce(edm::Event&, const edm::EventSetup&) override;
51  void endStream() override;
52 
53  // ----------member data ---------------------------
55  float radius_;
56 
57  static const std::vector<std::string> valuesProduced_;
58  std::map<const std::string, std::vector<float>> maps_;
59 
60  std::unique_ptr<HGCalEgammaIDHelper> eIDHelper_;
61 };
62 
63 // All the ValueMap names to output are defined in the auto-generated python cfi
64 // so that potential consumers can configure themselves in a simple manner
65 // Would be cool to use compile-time validation, but need constexpr strings, e.g. std::string_view in C++17
66 const std::vector<std::string> HGCalElectronIDValueMapProducer::valuesProduced_ = {
67  "ecOrigEt", "ecOrigEnergy", "ecEt",
68  "ecEnergy", "ecEnergyEE", "ecEnergyFH",
69  "ecEnergyBH", "pcaEig1", "pcaEig2",
70  "pcaEig3", "pcaSig1", "pcaSig2",
71  "pcaSig3", "pcaAxisX", "pcaAxisY",
72  "pcaAxisZ", "pcaPositionX", "pcaPositionY",
73  "pcaPositionZ", "sigmaUU", "sigmaVV",
74  "sigmaEE", "sigmaPP", "nLayers",
75  "firstLayer", "lastLayer", "e4oEtot",
76  "layerEfrac10", "layerEfrac90", "measuredDepth",
77  "expectedDepth", "expectedSigma", "depthCompatibility",
78  "caloIsoRing0", "caloIsoRing1", "caloIsoRing2",
79  "caloIsoRing3", "caloIsoRing4",
80 };
81 
83  : electronsToken_(consumes(iConfig.getParameter<edm::InputTag>("electrons"))),
84  radius_(iConfig.getParameter<double>("pcaRadius")) {
85  for (const auto& key : valuesProduced_) {
86  maps_[key] = {};
87  produces<edm::ValueMap<float>>(key);
88  }
89 
90  eIDHelper_ = std::make_unique<HGCalEgammaIDHelper>(iConfig, consumesCollector());
91 }
92 
94 
95 // ------------ method called to produce the data ------------
97  using namespace edm;
98 
99  auto electronsH = iEvent.getHandle(electronsToken_);
100 
101  // Clear previous map
102  for (auto&& kv : maps_) {
103  kv.second.clear();
104  kv.second.reserve(electronsH->size());
105  }
106 
107  // Set up helper tool
108  eIDHelper_->eventInit(iEvent, iSetup);
109 
110  for (const auto& electron : *electronsH) {
111  if (electron.isEB()) {
112  // Fill some dummy value
113  for (auto&& kv : maps_) {
114  kv.second.push_back(0.);
115  }
116  } else {
117  eIDHelper_->computeHGCAL(electron, radius_);
118 
119  // check the PCA has worked out
120  if (eIDHelper_->sigmaUU() == -1) {
121  for (auto&& kv : maps_) {
122  kv.second.push_back(0.);
123  }
124  continue;
125  }
126 
127  hgcal::LongDeps ld(eIDHelper_->energyPerLayer(radius_, true));
128  float measuredDepth, expectedDepth, expectedSigma;
129  float depthCompatibility = eIDHelper_->clusterDepthCompatibility(ld, measuredDepth, expectedDepth, expectedSigma);
130 
131  // Fill here all the ValueMaps from their appropriate functions
132 
133  // Energies / PT
134  const auto* eleCluster = electron.electronCluster().get();
135  const double sinTheta = eleCluster->position().rho() / eleCluster->position().r();
136  maps_["ecOrigEt"].push_back(eleCluster->energy() * sinTheta);
137  maps_["ecOrigEnergy"].push_back(eleCluster->energy());
138 
139  // energies calculated in an cylinder around the axis of the electron cluster
140  float ec_tot_energy = ld.energyEE() + ld.energyFH() + ld.energyBH();
141  maps_["ecEt"].push_back(ec_tot_energy * sinTheta);
142  maps_["ecEnergy"].push_back(ec_tot_energy);
143  maps_["ecEnergyEE"].push_back(ld.energyEE());
144  maps_["ecEnergyFH"].push_back(ld.energyFH());
145  maps_["ecEnergyBH"].push_back(ld.energyBH());
146 
147  // Cluster shapes
148  // PCA related
149  maps_["pcaEig1"].push_back(eIDHelper_->eigenValues()(0));
150  maps_["pcaEig2"].push_back(eIDHelper_->eigenValues()(1));
151  maps_["pcaEig3"].push_back(eIDHelper_->eigenValues()(2));
152  maps_["pcaSig1"].push_back(eIDHelper_->sigmas()(0));
153  maps_["pcaSig2"].push_back(eIDHelper_->sigmas()(1));
154  maps_["pcaSig3"].push_back(eIDHelper_->sigmas()(2));
155  maps_["pcaAxisX"].push_back(eIDHelper_->axis().x());
156  maps_["pcaAxisY"].push_back(eIDHelper_->axis().y());
157  maps_["pcaAxisZ"].push_back(eIDHelper_->axis().z());
158  maps_["pcaPositionX"].push_back(eIDHelper_->barycenter().x());
159  maps_["pcaPositionY"].push_back(eIDHelper_->barycenter().y());
160  maps_["pcaPositionZ"].push_back(eIDHelper_->barycenter().z());
161 
162  // transverse shapes
163  maps_["sigmaUU"].push_back(eIDHelper_->sigmaUU());
164  maps_["sigmaVV"].push_back(eIDHelper_->sigmaVV());
165  maps_["sigmaEE"].push_back(eIDHelper_->sigmaEE());
166  maps_["sigmaPP"].push_back(eIDHelper_->sigmaPP());
167 
168  // long profile
169  maps_["nLayers"].push_back(ld.nLayers());
170  maps_["firstLayer"].push_back(ld.firstLayer());
171  maps_["lastLayer"].push_back(ld.lastLayer());
172  maps_["e4oEtot"].push_back(ld.e4oEtot());
173  maps_["layerEfrac10"].push_back(ld.layerEfrac10());
174  maps_["layerEfrac90"].push_back(ld.layerEfrac90());
175 
176  // depth
177  maps_["measuredDepth"].push_back(measuredDepth);
178  maps_["expectedDepth"].push_back(expectedDepth);
179  maps_["expectedSigma"].push_back(expectedSigma);
180  maps_["depthCompatibility"].push_back(depthCompatibility);
181 
182  // Isolation
183  maps_["caloIsoRing0"].push_back(eIDHelper_->getIsolationRing(0));
184  maps_["caloIsoRing1"].push_back(eIDHelper_->getIsolationRing(1));
185  maps_["caloIsoRing2"].push_back(eIDHelper_->getIsolationRing(2));
186  maps_["caloIsoRing3"].push_back(eIDHelper_->getIsolationRing(3));
187  maps_["caloIsoRing4"].push_back(eIDHelper_->getIsolationRing(4));
188  }
189  }
190 
191  // Check we didn't make up a new variable and forget it in valuesProduced_
192  if (maps_.size() != valuesProduced_.size()) {
193  throw cms::Exception("HGCalElectronIDValueMapProducer")
194  << "We have a miscoded value map producer, since map size changed";
195  }
196 
197  for (auto&& kv : maps_) {
198  // Check we didn't forget any values
199  if (kv.second.size() != electronsH->size()) {
200  throw cms::Exception("HGCalElectronIDValueMapProducer")
201  << "We have a miscoded value map producer, since the variable " << kv.first << " wasn't filled.";
202  }
203  // Do the filling
204  auto out = std::make_unique<edm::ValueMap<float>>();
206  filler.insert(electronsH, kv.second.begin(), kv.second.end());
207  filler.fill();
208  // and put it into the event
209  iEvent.put(std::move(out), kv.first);
210  }
211 }
212 
213 // ------------ method called once each stream before processing any runs, lumis or events ------------
215 
216 // ------------ method called once each stream after processing all runs, lumis and events ------------
218 
219 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
221  // Auto-generate hgcalElectronIDValueMap_cfi
223  desc.add<edm::InputTag>("electrons", edm::InputTag("ecalDrivenGsfElectronsHGC"));
224  desc.add<double>("pcaRadius", 3.0);
225  desc.add<std::vector<std::string>>("variables", valuesProduced_);
226  desc.add<std::vector<double>>("dEdXWeights")
227  ->setComment("This must be copied from dEdX_weights in RecoLocalCalo.HGCalRecProducers.HGCalRecHit_cfi");
228  desc.add<unsigned int>("isoNRings", 5);
229  desc.add<double>("isoDeltaR", 0.15);
230  desc.add<double>("isoDeltaRmin", 0.0);
231  desc.add<edm::InputTag>("EERecHits", edm::InputTag("HGCalRecHit", "HGCEERecHits"));
232  desc.add<edm::InputTag>("FHRecHits", edm::InputTag("HGCalRecHit", "HGCHEFRecHits"));
233  desc.add<edm::InputTag>("BHRecHits", edm::InputTag("HGCalRecHit", "HGCHEBRecHits"));
234  desc.add<edm::InputTag>("hitMapTag", edm::InputTag("hgcalRecHitMapProducer"));
235  descriptions.add("hgcalElectronIDValueMap", desc);
236 }
237 
238 //define this as a plug-in
std::unique_ptr< HGCalEgammaIDHelper > eIDHelper_
std::map< const std::string, std::vector< float > > maps_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
static const std::vector< std::string > valuesProduced_
int iEvent
Definition: GenABIO.cc:224
edm::EDGetTokenT< edm::View< reco::GsfElectron > > electronsToken_
HGCalElectronIDValueMapProducer(const edm::ParameterSet &)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void add(std::string const &label, ParameterSetDescription const &psetDescription)
HLT enums.
def move(src, dest)
Definition: eostools.py:511
void produce(edm::Event &, const edm::EventSetup &) override