CMS 3D CMS Logo

CalibratedPhotonProducers.cc
Go to the documentation of this file.
1 //author: Alan Smithee
2 //description:
3 // this class allows the residual scale and smearing to be applied to photon
4 // it will write out all the calibration info in the event, such as scale correction value,
5 // smearing correction value, random nr used, energy post calibration, energy pre calibration
6 // can optionally write out a new collection of photon with the energy corrected by default
7 // a port of EgammaAnalysis/ElectronTools/CalibratedPhotonProducerRun2
8 
18 
25 
26 #include "TRandom2.h"
27 
28 #include <memory>
29 
30 #include <random>
31 #include <vector>
32 
33 template <typename T>
35 public:
38  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
39  void produce(edm::Event&, const edm::EventSetup&) override;
40 
41 private:
42  void setSemiDetRandomSeed(const edm::Event& iEvent, const T& obj, size_t nrObjs, size_t objNr);
43 
46  std::unique_ptr<TRandom> semiDeterministicRng_;
50 
51  static const std::vector<int> valMapsToStore_;
52 };
53 
54 template <typename T>
55 const std::vector<int> CalibratedPhotonProducerT<T>::valMapsToStore_ = {
63 
64 namespace {
65  template <typename HandleType, typename ValType>
66  void fillAndStoreValueMap(edm::Event& iEvent,
67  HandleType objHandle,
68  const std::vector<ValType>& vals,
69  const std::string& name) {
70  auto valMap = std::make_unique<edm::ValueMap<ValType>>();
71  typename edm::ValueMap<ValType>::Filler filler(*valMap);
72  filler.insert(objHandle, vals.begin(), vals.end());
73  filler.fill();
74  iEvent.put(std::move(valMap), name);
75  }
76 } // namespace
77 
78 template <typename T>
80  : photonToken_(consumes(conf.getParameter<edm::InputTag>("src"))),
81  energyCorrector_(conf.getParameter<std::string>("correctionFile")),
82  recHitCollectionEBToken_(consumes(conf.getParameter<edm::InputTag>("recHitCollectionEB"))),
83  recHitCollectionEEToken_(consumes(conf.getParameter<edm::InputTag>("recHitCollectionEE"))),
84  produceCalibratedObjs_(conf.getParameter<bool>("produceCalibratedObjs")) {
85  energyCorrector_.setMinEt(conf.getParameter<double>("minEtToCalibrate"));
86 
87  if (conf.getParameter<bool>("semiDeterministic")) {
88  semiDeterministicRng_ = std::make_unique<TRandom2>();
90  }
91 
93  produces<std::vector<T>>();
94 
95  for (const auto& toStore : valMapsToStore_) {
96  produces<edm::ValueMap<float>>(EGEnergySysIndex::name(toStore));
97  }
98 }
99 
100 template <typename T>
103  desc.add<edm::InputTag>("src", edm::InputTag("gedGsfElectrons"));
104  desc.add<edm::InputTag>("recHitCollectionEB", edm::InputTag("reducedEcalRecHitsEB"));
105  desc.add<edm::InputTag>("recHitCollectionEE", edm::InputTag("reducedEcalRecHitsEE"));
106  desc.add<std::string>("correctionFile", std::string());
107  desc.add<double>("minEtToCalibrate", 5.0);
108  desc.add<bool>("produceCalibratedObjs", true);
109  desc.add<bool>("semiDeterministic", true);
110  std::vector<std::string> valMapsProduced;
111  valMapsProduced.reserve(valMapsToStore_.size());
112  for (auto varToStore : valMapsToStore_)
113  valMapsProduced.push_back(EGEnergySysIndex::name(varToStore));
114  desc.add<std::vector<std::string>>("valueMapsStored", valMapsProduced)
115  ->setComment(
116  "provides to python configs the list of valuemaps stored, can not be overriden in the python config");
117  descriptions.addWithDefaultLabel(desc);
118 }
119 
120 template <typename T>
122  auto inHandle = iEvent.getHandle(photonToken_);
123 
124  auto recHitCollectionEBHandle = iEvent.getHandle(recHitCollectionEBToken_);
125  auto recHitCollectionEEHandle = iEvent.getHandle(recHitCollectionEEToken_);
126 
127  std::unique_ptr<std::vector<T>> out = std::make_unique<std::vector<T>>();
128 
129  size_t nrObj = inHandle->size();
130  std::array<std::vector<float>, EGEnergySysIndex::kNrSysErrs> results;
131  for (auto& res : results)
132  res.reserve(nrObj);
133 
134  const PhotonEnergyCalibrator::EventType evtType =
136 
137  for (const auto& pho : *inHandle) {
138  out->emplace_back(pho);
139 
140  if (semiDeterministicRng_)
141  setSemiDetRandomSeed(iEvent, pho, nrObj, out->size());
142 
144  (pho.isEB()) ? recHitCollectionEBHandle.product() : recHitCollectionEEHandle.product();
145  std::array<float, EGEnergySysIndex::kNrSysErrs> uncertainties =
146  energyCorrector_.calibrate(out->back(), iEvent.id().run(), recHits, iEvent.streamID(), evtType);
147 
148  for (size_t index = 0; index < EGEnergySysIndex::kNrSysErrs; index++) {
149  results[index].push_back(uncertainties[index]);
150  }
151  }
152 
153  auto fillAndStore = [&](auto handle) {
154  for (const auto& mapToStore : valMapsToStore_) {
155  fillAndStoreValueMap(iEvent, handle, results[mapToStore], EGEnergySysIndex::name(mapToStore));
156  }
157  };
158 
159  if (produceCalibratedObjs_) {
160  fillAndStore(iEvent.put(std::move(out)));
161  } else {
162  fillAndStore(inHandle);
163  }
164 }
165 
166 //needs to be synced to CalibratedElectronProducers, want the same seed for a given SC
167 template <typename T>
169  const T& obj,
170  size_t nrObjs,
171  size_t objNr) {
172  if (obj.superCluster().isNonnull()) {
173  semiDeterministicRng_->SetSeed(egamma::getRandomSeedFromSC(iEvent, obj.superCluster()));
174  } else {
175  semiDeterministicRng_->SetSeed(egamma::getRandomSeedFromObj(iEvent, obj, nrObjs, objNr));
176  }
177 }
178 
181 
183 
ConfigurationDescriptions.h
PhotonEnergyCalibrator::setMinEt
void setMinEt(float val)
Definition: PhotonEnergyCalibrator.h:36
CalibratedPhotonProducerT::photonToken_
edm::EDGetTokenT< edm::View< T > > photonToken_
Definition: CalibratedPhotonProducers.cc:44
Handle.h
electrons_cff.bool
bool
Definition: electrons_cff.py:393
CalibratedPhotonProducerT::semiDeterministicRng_
std::unique_ptr< TRandom > semiDeterministicRng_
Definition: CalibratedPhotonProducers.cc:46
EGEnergySysIndex.h
PhotonEnergyCalibrator::EventType
EventType
Definition: PhotonEnergyCalibrator.h:22
ESHandle.h
PhotonEnergyCalibrator
Definition: PhotonEnergyCalibrator.h:20
patZpeak.handle
handle
Definition: patZpeak.py:23
edm::EDGetTokenT
Definition: EDGetToken.h:33
edm
HLT enums.
Definition: AlignableModifier.h:19
CalibratedPhotonProducerT::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: CalibratedPhotonProducers.cc:121
Photon.h
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89287
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
EGEnergySysIndex::kSmearRhoDown
Definition: EGEnergySysIndex.h:23
EDProducer.h
EGEnergySysIndex::kScaleGainUp
Definition: EGEnergySysIndex.h:20
edm::SortedCollection< EcalRecHit >
bookConverter.results
results
Definition: bookConverter.py:144
EGEnergySysIndex::kEcalErrPostCorr
Definition: EGEnergySysIndex.h:36
PhotonFwd.h
EGEnergySysIndex::kSmearRhoUp
Definition: EGEnergySysIndex.h:22
CalibratedPhotonProducerT::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: CalibratedPhotonProducers.cc:101
EGEnergySysIndex::kScaleValue
Definition: EGEnergySysIndex.h:30
PhotonEnergyCalibrator::initPrivateRng
void initPrivateRng(TRandom *rnd)
Definition: PhotonEnergyCalibrator.cc:15
EGEnergySysIndex::kScaleStatDown
Definition: EGEnergySysIndex.h:17
EGEnergySysIndex::kNrSysErrs
static constexpr size_t kNrSysErrs
Definition: EGEnergySysIndex.h:42
PhotonEnergyCalibrator.h
EGEnergySysIndex::kSmearNrSigma
Definition: EGEnergySysIndex.h:32
EGEnergySysIndex::kScaleGainDown
Definition: EGEnergySysIndex.h:21
MakerMacros.h
Photon.h
EGEnergySysIndex::kScaleUp
Definition: EGEnergySysIndex.h:26
CalibratedPhotonProducerT::CalibratedPhotonProducerT
CalibratedPhotonProducerT(const edm::ParameterSet &)
Definition: CalibratedPhotonProducers.cc:79
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
egamma::getRandomSeedFromObj
uint32_t getRandomSeedFromObj(const edm::Event &iEvent, const T &obj, size_t nrObjs, size_t objNr)
Definition: EgammaRandomSeeds.h:21
egamma::getRandomSeedFromSC
uint32_t getRandomSeedFromSC(const edm::Event &iEvent, const reco::SuperClusterRef scRef)
Definition: EgammaRandomSeeds.cc:5
PhotonEnergyCalibrator::EventType::MC
EGEnergySysIndex::kEcalErrPreCorr
Definition: EGEnergySysIndex.h:34
ParameterSetDescription.h
CalibratedPhotonProducerT::produceCalibratedObjs_
bool produceCalibratedObjs_
Definition: CalibratedPhotonProducers.cc:49
EDGetToken.h
CalibratedPhotonProducerT::energyCorrector_
PhotonEnergyCalibrator energyCorrector_
Definition: CalibratedPhotonProducers.cc:45
getGTfromDQMFile.obj
obj
Definition: getGTfromDQMFile.py:32
EGEnergySysIndex::kSmearDown
Definition: EGEnergySysIndex.h:29
EGEnergySysIndex::name
static const std::string & name(size_t index)
Definition: EGEnergySysIndex.h:44
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FastTrackerRecHitMaskProducer_cfi.recHits
recHits
Definition: FastTrackerRecHitMaskProducer_cfi.py:8
edm::ParameterSet
Definition: ParameterSet.h:47
CalibratedPhotonProducerT::setSemiDetRandomSeed
void setSemiDetRandomSeed(const edm::Event &iEvent, const T &obj, size_t nrObjs, size_t objNr)
Definition: CalibratedPhotonProducers.cc:168
Event.h
trigObjTnPSource_cfi.filler
filler
Definition: trigObjTnPSource_cfi.py:21
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::stream::EDProducer
Definition: EDProducer.h:38
EGEnergySysIndex::kScaleDown
Definition: EGEnergySysIndex.h:27
edm::EventSetup
Definition: EventSetup.h:57
res
Definition: Electron.h:6
EGEnergySysIndex::kEcalPostCorr
Definition: EGEnergySysIndex.h:35
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
EGEnergySysIndex::kEcalPreCorr
Definition: EGEnergySysIndex.h:33
EGEnergySysIndex::kSmearValue
Definition: EGEnergySysIndex.h:31
CalibratedPhotonProducerT::recHitCollectionEEToken_
edm::EDGetTokenT< EcalRecHitCollection > recHitCollectionEEToken_
Definition: CalibratedPhotonProducers.cc:48
T
long double T
Definition: Basic3DVectorLD.h:48
EGEnergySysIndex::kSmearUp
Definition: EGEnergySysIndex.h:28
EGEnergySysIndex::kSmearPhiDown
Definition: EGEnergySysIndex.h:25
PhotonEnergyCalibrator::EventType::DATA
EgammaRandomSeeds.h
EGEnergySysIndex::kScaleSystUp
Definition: EGEnergySysIndex.h:18
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
EventSetup.h
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
EGEnergySysIndex::kScaleSystDown
Definition: EGEnergySysIndex.h:19
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
EGEnergySysIndex::kScaleStatUp
Definition: EGEnergySysIndex.h:16
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
edm::helper::Filler
Definition: ValueMap.h:22
ParameterSet.h
edm::Event
Definition: Event.h:73
EGEnergySysIndex::kSmearPhiUp
Definition: EGEnergySysIndex.h:24
CalibratedPhotonProducerT::valMapsToStore_
static const std::vector< int > valMapsToStore_
Definition: CalibratedPhotonProducers.cc:51
CalibratedPhotonProducerT
Definition: CalibratedPhotonProducers.cc:34
edm::InputTag
Definition: InputTag.h:15
CalibratedPhotonProducerT::~CalibratedPhotonProducerT
~CalibratedPhotonProducerT() override
Definition: CalibratedPhotonProducers.cc:37
edm::ConfigurationDescriptions::addWithDefaultLabel
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:87
CalibratedPhotonProducerT::recHitCollectionEBToken_
edm::EDGetTokenT< EcalRecHitCollection > recHitCollectionEBToken_
Definition: CalibratedPhotonProducers.cc:47