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 <vector>
29 #include <random>
30 
31 template <typename T>
33 public:
36  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
37  void produce(edm::Event&, const edm::EventSetup&) override;
38 
39 private:
40  void setSemiDetRandomSeed(const edm::Event& iEvent, const T& obj, size_t nrObjs, size_t objNr);
41 
44  std::unique_ptr<TRandom> semiDeterministicRng_;
48 
49  static const std::vector<int> valMapsToStore_;
50 };
51 
52 template <typename T>
53 const std::vector<int> CalibratedPhotonProducerT<T>::valMapsToStore_ = {
61 
62 namespace {
63  template <typename HandleType, typename ValType>
64  void fillAndStoreValueMap(edm::Event& iEvent,
65  HandleType objHandle,
66  const std::vector<ValType>& vals,
67  const std::string& name) {
68  auto valMap = std::make_unique<edm::ValueMap<ValType>>();
69  typename edm::ValueMap<ValType>::Filler filler(*valMap);
70  filler.insert(objHandle, vals.begin(), vals.end());
71  filler.fill();
72  iEvent.put(std::move(valMap), name);
73  }
74 } // namespace
75 
76 template <typename T>
78  : photonToken_(consumes<edm::View<T>>(conf.getParameter<edm::InputTag>("src"))),
79  energyCorrector_(conf.getParameter<std::string>("correctionFile")),
80  recHitCollectionEBToken_(consumes<EcalRecHitCollection>(conf.getParameter<edm::InputTag>("recHitCollectionEB"))),
81  recHitCollectionEEToken_(consumes<EcalRecHitCollection>(conf.getParameter<edm::InputTag>("recHitCollectionEE"))),
82  produceCalibratedObjs_(conf.getParameter<bool>("produceCalibratedObjs")) {
83  energyCorrector_.setMinEt(conf.getParameter<double>("minEtToCalibrate"));
84 
85  if (conf.getParameter<bool>("semiDeterministic")) {
86  semiDeterministicRng_.reset(new TRandom2());
88  }
89 
91  produces<std::vector<T>>();
92 
93  for (const auto& toStore : valMapsToStore_) {
94  produces<edm::ValueMap<float>>(EGEnergySysIndex::name(toStore));
95  }
96 }
97 
98 template <typename T>
101  desc.add<edm::InputTag>("src", edm::InputTag("gedGsfElectrons"));
102  desc.add<edm::InputTag>("recHitCollectionEB", edm::InputTag("reducedEcalRecHitsEB"));
103  desc.add<edm::InputTag>("recHitCollectionEE", edm::InputTag("reducedEcalRecHitsEE"));
104  desc.add<std::string>("correctionFile", std::string());
105  desc.add<double>("minEtToCalibrate", 5.0);
106  desc.add<bool>("produceCalibratedObjs", true);
107  desc.add<bool>("semiDeterministic", true);
108  std::vector<std::string> valMapsProduced;
109  for (auto varToStore : valMapsToStore_)
110  valMapsProduced.push_back(EGEnergySysIndex::name(varToStore));
111  desc.add<std::vector<std::string>>("valueMapsStored", valMapsProduced)
112  ->setComment(
113  "provides to python configs the list of valuemaps stored, can not be overriden in the python config");
114  descriptions.addWithDefaultLabel(desc);
115 }
116 
117 template <typename T>
119  edm::Handle<edm::View<T>> inHandle;
120  iEvent.getByToken(photonToken_, inHandle);
121 
122  edm::Handle<EcalRecHitCollection> recHitCollectionEBHandle;
123  edm::Handle<EcalRecHitCollection> recHitCollectionEEHandle;
124 
125  iEvent.getByToken(recHitCollectionEBToken_, recHitCollectionEBHandle);
126  iEvent.getByToken(recHitCollectionEEToken_, recHitCollectionEEHandle);
127 
128  std::unique_ptr<std::vector<T>> out = std::make_unique<std::vector<T>>();
129 
130  size_t nrObj = inHandle->size();
131  std::array<std::vector<float>, EGEnergySysIndex::kNrSysErrs> results;
132  for (auto& res : results)
133  res.reserve(nrObj);
134 
135  const PhotonEnergyCalibrator::EventType evtType =
137 
138  for (const auto& pho : *inHandle) {
139  out->emplace_back(pho);
140 
142  setSemiDetRandomSeed(iEvent, pho, nrObj, out->size());
143 
145  (pho.isEB()) ? recHitCollectionEBHandle.product() : recHitCollectionEEHandle.product();
146  std::array<float, EGEnergySysIndex::kNrSysErrs> uncertainties =
147  energyCorrector_.calibrate(out->back(), iEvent.id().run(), recHits, iEvent.streamID(), evtType);
148 
149  for (size_t index = 0; index < EGEnergySysIndex::kNrSysErrs; index++) {
150  results[index].push_back(uncertainties[index]);
151  }
152  }
153 
154  auto fillAndStore = [&](auto handle) {
155  for (const auto& mapToStore : valMapsToStore_) {
156  fillAndStoreValueMap(iEvent, handle, results[mapToStore], EGEnergySysIndex::name(mapToStore));
157  }
158  };
159 
161  fillAndStore(iEvent.put(std::move(out)));
162  } else {
163  fillAndStore(inHandle);
164  }
165 }
166 
167 //needs to be synced to CalibratedElectronProducers, want the same seed for a given SC
168 template <typename T>
170  const T& obj,
171  size_t nrObjs,
172  size_t objNr) {
173  if (obj.superCluster().isNonnull()) {
174  semiDeterministicRng_->SetSeed(egamma::getRandomSeedFromSC(iEvent, obj.superCluster()));
175  } else {
176  semiDeterministicRng_->SetSeed(egamma::getRandomSeedFromObj(iEvent, obj, nrObjs, objNr));
177  }
178 }
179 
182 
184 
RunNumber_t run() const
Definition: EventID.h:38
T getParameter(std::string const &) const
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
size_t size() const
Definition: Event.cc:242
std::unique_ptr< TRandom > semiDeterministicRng_
void initPrivateRng(TRandom *rnd)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
static const std::string & name(size_t index)
void produce(edm::Event &, const edm::EventSetup &) override
bool isRealData() const
Definition: EventBase.h:62
Definition: Electron.h:6
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
PhotonEnergyCalibrator energyCorrector_
void setSemiDetRandomSeed(const edm::Event &iEvent, const T &obj, size_t nrObjs, size_t objNr)
CalibratedPhotonProducerT(const edm::ParameterSet &)
edm::EDGetTokenT< EcalRecHitCollection > recHitCollectionEEToken_
static constexpr size_t kNrSysErrs
uint32_t getRandomSeedFromObj(const edm::Event &iEvent, const T &obj, size_t nrObjs, size_t objNr)
edm::EDGetTokenT< EcalRecHitCollection > recHitCollectionEBToken_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
T const * product() const
Definition: Handle.h:69
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::EDGetTokenT< edm::View< T > > photonToken_
edm::EventID id() const
Definition: EventBase.h:59
uint32_t getRandomSeedFromSC(const edm::Event &iEvent, const reco::SuperClusterRef scRef)
HLT enums.
StreamID streamID() const
Definition: Event.h:96
static const std::vector< int > valMapsToStore_
long double T
def move(src, dest)
Definition: eostools.py:511
std::array< float, EGEnergySysIndex::kNrSysErrs > calibrate(reco::Photon &photon, const unsigned int runNumber, const EcalRecHitCollection *recHits, edm::StreamID const &id, const EventType eventType) const