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<edm::View<reco::GsfElectron>>(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_.reset(new HGCalEgammaIDHelper(iConfig, consumesCollector()));
91 }
92 
94 
95 // ------------ method called to produce the data ------------
97  using namespace edm;
98 
100  iEvent.getByToken(electronsToken_, electronsH);
101 
102  // Clear previous map
103  for (auto&& kv : maps_) {
104  kv.second.clear();
105  kv.second.reserve(electronsH->size());
106  }
107 
108  // Set up helper tool
109  eIDHelper_->eventInit(iEvent, iSetup);
110 
111  for (const auto& electron : *electronsH) {
112  if (electron.isEB()) {
113  // Fill some dummy value
114  for (auto&& kv : maps_) {
115  kv.second.push_back(0.);
116  }
117  } else {
118  eIDHelper_->computeHGCAL(electron, radius_);
119 
120  // check the PCA has worked out
121  if (eIDHelper_->sigmaUU() == -1) {
122  for (auto&& kv : maps_) {
123  kv.second.push_back(0.);
124  }
125  continue;
126  }
127 
128  hgcal::LongDeps ld(eIDHelper_->energyPerLayer(radius_, true));
129  float measuredDepth, expectedDepth, expectedSigma;
130  float depthCompatibility = eIDHelper_->clusterDepthCompatibility(ld, measuredDepth, expectedDepth, expectedSigma);
131 
132  // Fill here all the ValueMaps from their appropriate functions
133 
134  // Energies / PT
135  const auto* eleCluster = electron.electronCluster().get();
136  const double sinTheta = eleCluster->position().rho() / eleCluster->position().r();
137  maps_["ecOrigEt"].push_back(eleCluster->energy() * sinTheta);
138  maps_["ecOrigEnergy"].push_back(eleCluster->energy());
139 
140  // energies calculated in an cylinder around the axis of the electron cluster
141  float ec_tot_energy = ld.energyEE() + ld.energyFH() + ld.energyBH();
142  maps_["ecEt"].push_back(ec_tot_energy * sinTheta);
143  maps_["ecEnergy"].push_back(ec_tot_energy);
144  maps_["ecEnergyEE"].push_back(ld.energyEE());
145  maps_["ecEnergyFH"].push_back(ld.energyFH());
146  maps_["ecEnergyBH"].push_back(ld.energyBH());
147 
148  // Cluster shapes
149  // PCA related
150  maps_["pcaEig1"].push_back(eIDHelper_->eigenValues()(0));
151  maps_["pcaEig2"].push_back(eIDHelper_->eigenValues()(1));
152  maps_["pcaEig3"].push_back(eIDHelper_->eigenValues()(2));
153  maps_["pcaSig1"].push_back(eIDHelper_->sigmas()(0));
154  maps_["pcaSig2"].push_back(eIDHelper_->sigmas()(1));
155  maps_["pcaSig3"].push_back(eIDHelper_->sigmas()(2));
156  maps_["pcaAxisX"].push_back(eIDHelper_->axis().x());
157  maps_["pcaAxisY"].push_back(eIDHelper_->axis().y());
158  maps_["pcaAxisZ"].push_back(eIDHelper_->axis().z());
159  maps_["pcaPositionX"].push_back(eIDHelper_->barycenter().x());
160  maps_["pcaPositionY"].push_back(eIDHelper_->barycenter().y());
161  maps_["pcaPositionZ"].push_back(eIDHelper_->barycenter().z());
162 
163  // transverse shapes
164  maps_["sigmaUU"].push_back(eIDHelper_->sigmaUU());
165  maps_["sigmaVV"].push_back(eIDHelper_->sigmaVV());
166  maps_["sigmaEE"].push_back(eIDHelper_->sigmaEE());
167  maps_["sigmaPP"].push_back(eIDHelper_->sigmaPP());
168 
169  // long profile
170  maps_["nLayers"].push_back(ld.nLayers());
171  maps_["firstLayer"].push_back(ld.firstLayer());
172  maps_["lastLayer"].push_back(ld.lastLayer());
173  maps_["e4oEtot"].push_back(ld.e4oEtot());
174  maps_["layerEfrac10"].push_back(ld.layerEfrac10());
175  maps_["layerEfrac90"].push_back(ld.layerEfrac90());
176 
177  // depth
178  maps_["measuredDepth"].push_back(measuredDepth);
179  maps_["expectedDepth"].push_back(expectedDepth);
180  maps_["expectedSigma"].push_back(expectedSigma);
181  maps_["depthCompatibility"].push_back(depthCompatibility);
182 
183  // Isolation
184  maps_["caloIsoRing0"].push_back(eIDHelper_->getIsolationRing(0));
185  maps_["caloIsoRing1"].push_back(eIDHelper_->getIsolationRing(1));
186  maps_["caloIsoRing2"].push_back(eIDHelper_->getIsolationRing(2));
187  maps_["caloIsoRing3"].push_back(eIDHelper_->getIsolationRing(3));
188  maps_["caloIsoRing4"].push_back(eIDHelper_->getIsolationRing(4));
189  }
190  }
191 
192  // Check we didn't make up a new variable and forget it in valuesProduced_
193  if (maps_.size() != valuesProduced_.size()) {
194  throw cms::Exception("HGCalElectronIDValueMapProducer")
195  << "We have a miscoded value map producer, since map size changed";
196  }
197 
198  for (auto&& kv : maps_) {
199  // Check we didn't forget any values
200  if (kv.second.size() != electronsH->size()) {
201  throw cms::Exception("HGCalElectronIDValueMapProducer")
202  << "We have a miscoded value map producer, since the variable " << kv.first << " wasn't filled.";
203  }
204  // Do the filling
205  auto out = std::make_unique<edm::ValueMap<float>>();
207  filler.insert(electronsH, kv.second.begin(), kv.second.end());
208  filler.fill();
209  // and put it into the event
210  iEvent.put(std::move(out), kv.first);
211  }
212 }
213 
214 // ------------ method called once each stream before processing any runs, lumis or events ------------
216 
217 // ------------ method called once each stream after processing all runs, lumis and events ------------
219 
220 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
222  // Auto-generate hgcalElectronIDValueMap_cfi
224  desc.add<edm::InputTag>("electrons", edm::InputTag("ecalDrivenGsfElectronsFromMultiCl"));
225  desc.add<double>("pcaRadius", 3.0);
226  desc.add<std::vector<std::string>>("variables", valuesProduced_);
227  desc.add<std::vector<double>>("dEdXWeights")
228  ->setComment("This must be copied from dEdX_weights in RecoLocalCalo.HGCalRecProducers.HGCalRecHit_cfi");
229  desc.add<unsigned int>("isoNRings", 5);
230  desc.add<double>("isoDeltaR", 0.15);
231  desc.add<double>("isoDeltaRmin", 0.0);
232  desc.add<edm::InputTag>("EERecHits", edm::InputTag("HGCalRecHit", "HGCEERecHits"));
233  desc.add<edm::InputTag>("FHRecHits", edm::InputTag("HGCalRecHit", "HGCHEFRecHits"));
234  desc.add<edm::InputTag>("BHRecHits", edm::InputTag("HGCalRecHit", "HGCHEBRecHits"));
235  descriptions.add("hgcalElectronIDValueMap", desc);
236 }
237 
238 //define this as a plug-in
edm::StreamID
Definition: StreamID.h:30
HGCalEgammaIDHelper
Definition: HGCalEgammaIDHelper.h:30
edm::ParameterSetDescription::add
ParameterDescriptionBase * add(U const &iLabel, T const &value)
Definition: ParameterSetDescription.h:95
HGCalElectronIDValueMapProducer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: HGCalElectronIDValueMapProducer.cc:221
HGCalEgammaIDHelper.h
sistrip::View
View
Definition: ConstantsForView.h:26
edm::EDGetTokenT
Definition: EDGetToken.h:33
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
EDProducer.h
LongDeps.h
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
edm::Handle
Definition: AssociativeIterator.h:50
HGCalElectronIDValueMapProducer::radius_
float radius_
Definition: HGCalElectronIDValueMapProducer.cc:55
HGCalElectronIDValueMapProducer::beginStream
void beginStream(edm::StreamID) override
Definition: HGCalElectronIDValueMapProducer.cc:215
MakerMacros.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
metsig::electron
Definition: SignAlgoResolutions.h:48
HGCalElectronIDValueMapProducer::endStream
void endStream() override
Definition: HGCalElectronIDValueMapProducer.cc:218
GsfElectron.h
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
HGCalElectronIDValueMapProducer
Definition: HGCalElectronIDValueMapProducer.cc:41
HGCalElectronIDValueMapProducer::valuesProduced_
static const std::vector< std::string > valuesProduced_
Definition: HGCalElectronIDValueMapProducer.cc:57
GsfElectronFwd.h
HLT_2018_cff.InputTag
InputTag
Definition: HLT_2018_cff.py:79016
edm::ParameterSet
Definition: ParameterSet.h:36
Event.h
trigObjTnPSource_cfi.filler
filler
Definition: trigObjTnPSource_cfi.py:21
hgcal::LongDeps
Definition: LongDeps.h:14
iEvent
int iEvent
Definition: GenABIO.cc:224
GsfTrack.h
edm::stream::EDProducer
Definition: EDProducer.h:38
edm::EventSetup
Definition: EventSetup.h:57
HGCalElectronIDValueMapProducer::maps_
std::map< const std::string, std::vector< float > > maps_
Definition: HGCalElectronIDValueMapProducer.cc:58
HGCalElectronIDValueMapProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: HGCalElectronIDValueMapProducer.cc:96
ValueMap.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
Frameworkfwd.h
HGCalElectronIDValueMapProducer::HGCalElectronIDValueMapProducer
HGCalElectronIDValueMapProducer(const edm::ParameterSet &)
Definition: HGCalElectronIDValueMapProducer.cc:82
Exception
Definition: hltDiff.cc:246
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
edm::helper::Filler
Definition: ValueMap.h:22
ParameterSet.h
HGCalElectronIDValueMapProducer::eIDHelper_
std::unique_ptr< HGCalEgammaIDHelper > eIDHelper_
Definition: HGCalElectronIDValueMapProducer.cc:60
edm::Event
Definition: Event.h:73
crabWrapper.key
key
Definition: crabWrapper.py:19
StreamID.h
edm::InputTag
Definition: InputTag.h:15
HGCalElectronIDValueMapProducer::electronsToken_
edm::EDGetTokenT< edm::View< reco::GsfElectron > > electronsToken_
Definition: HGCalElectronIDValueMapProducer.cc:54
HGCalElectronIDValueMapProducer::~HGCalElectronIDValueMapProducer
~HGCalElectronIDValueMapProducer() override
Definition: HGCalElectronIDValueMapProducer.cc:93