CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
L1EGammaEEProducer Class Reference
Inheritance diagram for L1EGammaEEProducer:
edm::stream::EDProducer<>

Public Member Functions

 L1EGammaEEProducer (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

L1EGammaEECalibrator calibrator_
 
edm::EDGetToken multiclusters_token_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Definition at line 38 of file L1EGammaEEProducer.cc.

Constructor & Destructor Documentation

L1EGammaEEProducer::L1EGammaEEProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 49 of file L1EGammaEEProducer.cc.

51  consumes<l1t::HGCalMulticlusterBxCollection>(iConfig.getParameter<edm::InputTag>("Multiclusters"))),
52  calibrator_(iConfig.getParameter<edm::ParameterSet>("calibrationConfig")) {
53  produces<BXVector<l1t::EGamma>>("L1EGammaCollectionBXVWithCuts");
54 }
edm::EDGetToken multiclusters_token_
L1EGammaEECalibrator calibrator_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303

Member Function Documentation

void L1EGammaEEProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 56 of file L1EGammaEEProducer.cc.

References funct::abs(), BXVector< T >::begin(), L1EGammaEECalibrator::calibrationFactor(), calibrator_, l1tp2::compare_cluster_pt(), reco::deltaPhi(), HLT_FULL_cff::EGamma, BXVector< T >::end(), get_eta_phi_bin(), edm::Event::getByToken(), eostools::move(), multiclusters_token_, DiDispStaMuonMonitor_cfi::pt, edm::Event::put(), l1t::L1Candidate::setHwIso(), l1t::L1Candidate::setHwQual(), and l1t::EGamma::setIsoEt().

56  {
57  float minEt_ = 0;
58 
59  std::unique_ptr<BXVector<l1t::EGamma>> l1EgammaBxCollection(new l1t::EGammaBxCollection);
60 
61  // retrieve clusters 3D
63  iEvent.getByToken(multiclusters_token_, multiclusters_h);
64  const l1t::HGCalMulticlusterBxCollection &multiclusters = *multiclusters_h;
65 
66  std::vector<const l1t::HGCalMulticluster *> selected_multiclusters;
67  std::map<std::pair<int, int>, std::vector<const l1t::HGCalMulticluster *>> etaphi_bins;
68 
69  // here we loop on the TPGs
70  for (auto cl3d = multiclusters.begin(0); cl3d != multiclusters.end(0); cl3d++) {
71  if (cl3d->hwQual()) {
72  if (cl3d->et() > minEt_) {
73  int hw_quality = 1; // baseline EG ID passed
74  if (std::abs(cl3d->eta()) >= 1.52) {
75  hw_quality = 2; // baseline EG ID passed + cleanup of transition region
76  }
77 
78  float calib_factor = calibrator_.calibrationFactor(cl3d->pt(), cl3d->eta());
79  l1t::EGamma eg =
80  l1t::EGamma(reco::Candidate::PolarLorentzVector(cl3d->pt() / calib_factor, cl3d->eta(), cl3d->phi(), 0.));
81  eg.setHwQual(hw_quality);
82  eg.setHwIso(1);
83  eg.setIsoEt(-1); // just temporarily as a dummy value
84  l1EgammaBxCollection->push_back(0, eg);
85  if (hw_quality == 2) {
86  // we build the EM interpreted EG object
88  cl3d->iPt(l1t::HGCalMulticluster::EnergyInterpretation::EM), cl3d->eta(), cl3d->phi(), 0.));
89  eg_emint.setHwQual(4);
90  eg_emint.setHwIso(1);
91  eg_emint.setIsoEt(-1); // just temporarily as a dummy value
92  l1EgammaBxCollection->push_back(0, eg_emint);
93  // we also prepare for the brem recovery procedure
94  selected_multiclusters.push_back(&(*cl3d));
95  auto eta_phi_bin = get_eta_phi_bin(&(*cl3d));
96  auto bucket = etaphi_bins.find(eta_phi_bin);
97  if (bucket == etaphi_bins.end()) {
98  std::vector<const l1t::HGCalMulticluster *> vec;
99  vec.push_back(&(*cl3d));
100  etaphi_bins[eta_phi_bin] = vec;
101  } else {
102  bucket->second.push_back(&(*cl3d));
103  }
104  }
105  }
106  }
107  }
108 
109  std::sort(selected_multiclusters.begin(), selected_multiclusters.end(), l1tp2::compare_cluster_pt);
110  std::set<const l1t::HGCalMulticluster *> used_clusters;
111  for (const auto &cl3d : selected_multiclusters) {
112  if (used_clusters.find(cl3d) == used_clusters.end()) {
113  float pt = cl3d->pt();
114  // we drop the Had component of the energy
115  if (cl3d->hOverE() != -1)
116  pt = cl3d->pt() / (1 + cl3d->hOverE());
117  reco::Candidate::PolarLorentzVector mom(pt, cl3d->eta(), cl3d->phi(), 0.);
119  cl3d->iPt(l1t::HGCalMulticluster::EnergyInterpretation::EM), cl3d->eta(), cl3d->phi(), 0.);
120 
121  // this is not yet used
122  used_clusters.insert(cl3d);
123  auto eta_phi_bin = get_eta_phi_bin(cl3d);
124 
125  for (int eta_bin : {eta_phi_bin.first - 1, eta_phi_bin.first, eta_phi_bin.first + 1}) {
126  for (int phi_bin : {eta_phi_bin.second - 1, eta_phi_bin.second, eta_phi_bin.second + 1}) {
127  auto bucket = etaphi_bins.find(std::make_pair(eta_bin, phi_bin));
128  if (bucket != etaphi_bins.end()) {
129  // this bucket is not empty
130  for (const auto &other_cl_ptr : bucket->second) {
131  if (used_clusters.find(other_cl_ptr) == used_clusters.end()) {
132  if (std::abs(other_cl_ptr->eta() - cl3d->eta()) < 0.02) {
133  if (std::abs(reco::deltaPhi(other_cl_ptr->phi(), cl3d->phi())) < 0.1) {
134  float pt_other = other_cl_ptr->pt();
135  if (other_cl_ptr->hOverE() != -1)
136  pt_other = other_cl_ptr->pt() / (1 + other_cl_ptr->hOverE());
137  mom += reco::Candidate::PolarLorentzVector(pt_other, other_cl_ptr->eta(), other_cl_ptr->phi(), 0.);
139  other_cl_ptr->iPt(l1t::HGCalMulticluster::EnergyInterpretation::EM),
140  other_cl_ptr->eta(),
141  other_cl_ptr->phi(),
142  0.);
143  used_clusters.insert(other_cl_ptr);
144  }
145  }
146  }
147  }
148  }
149  }
150  }
151  float calib_factor = calibrator_.calibrationFactor(mom.pt(), mom.eta());
152  l1t::EGamma eg =
153  l1t::EGamma(reco::Candidate::PolarLorentzVector(mom.pt() / calib_factor, mom.eta(), mom.phi(), 0.));
154  eg.setHwQual(3);
155  eg.setHwIso(1);
156  l1EgammaBxCollection->push_back(0, eg);
157 
158  l1t::EGamma eg_emint_brec =
159  l1t::EGamma(reco::Candidate::PolarLorentzVector(mom_eint.pt(), mom_eint.eta(), mom_eint.phi(), 0.));
160  eg_emint_brec.setHwQual(5);
161  eg_emint_brec.setHwIso(1);
162  l1EgammaBxCollection->push_back(0, eg_emint_brec);
163  }
164  }
165 
166  iEvent.put(std::move(l1EgammaBxCollection), "L1EGammaCollectionBXVWithCuts");
167 }
constexpr double deltaPhi(double phi1, double phi2)
Definition: deltaPhi.h:26
const_iterator end(int bx) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
float calibrationFactor(const float &pt, const float &eta) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
void setHwQual(int qual)
Definition: L1Candidate.h:31
edm::EDGetToken multiclusters_token_
L1EGammaEECalibrator calibrator_
pair< int, int > get_eta_phi_bin(const l1t::HGCalMulticluster *cl)
def move
Definition: eostools.py:511
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool compare_cluster_pt(const l1t::HGCalMulticluster *cl1, const l1t::HGCalMulticluster *cl2)
void setHwIso(int iso)
Definition: L1Candidate.h:32
void setIsoEt(short int iso)
Definition: EGamma.cc:34
const_iterator begin(int bx) const
math::PtEtaPhiMLorentzVector PolarLorentzVector
Lorentz vector.
Definition: Candidate.h:38

Member Data Documentation

L1EGammaEECalibrator L1EGammaEEProducer::calibrator_
private

Definition at line 46 of file L1EGammaEEProducer.cc.

Referenced by produce().

edm::EDGetToken L1EGammaEEProducer::multiclusters_token_
private

Definition at line 45 of file L1EGammaEEProducer.cc.

Referenced by produce().