CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
EgammaHLTNxNClusterProducer Class Reference
Inheritance diagram for EgammaHLTNxNClusterProducer:
edm::stream::EDProducer<>

Public Member Functions

 EgammaHLTNxNClusterProducer (const edm::ParameterSet &ps)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~EgammaHLTNxNClusterProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

bool checkStatusOfEcalRecHit (const EcalChannelStatus &channelStatus, const EcalRecHit &rh)
 
void makeNxNClusters (edm::Event &evt, const edm::EventSetup &es, const EcalRecHitCollection *hits, const reco::CaloID::Detectors detector)
 

Private Attributes

const std::string barrelClusterCollection_
 
const edm::EDGetTokenT< EcalRecHitCollectionbarrelHitProducer_
 
const int clusEtaSize_
 
const int clusPhiSize_
 
const double clusSeedThr_
 
const double clusSeedThrEndCap_
 
const int debug_
 
const bool doBarrel_
 
const bool doEndcaps_
 
const std::string endcapClusterCollection_
 
const edm::EDGetTokenT< EcalRecHitCollectionendcapHitProducer_
 
const int flagLevelRecHitsToUse_
 
const int maxNumberofClusters_
 
const int maxNumberofSeeds_
 
PositionCalc posCalculator_
 
const int statusLevelRecHitsToUse_
 
const bool useDBStatus_
 
const bool useRecoFlag_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Description: simple NxN ( 3x3 etc) clustering ,( for low energy photon reconstrution, currently used for pi0/eta HLT path)

Implementation: <Notes on="" implementation>="">

Definition at line 46 of file EgammaHLTNxNClusterProducer.cc.

Constructor & Destructor Documentation

EgammaHLTNxNClusterProducer::EgammaHLTNxNClusterProducer ( const edm::ParameterSet ps)

Definition at line 88 of file EgammaHLTNxNClusterProducer.cc.

References barrelClusterCollection_, and endcapClusterCollection_.

89  : doBarrel_(ps.getParameter<bool>("doBarrel")),
90  doEndcaps_(ps.getParameter<bool>("doEndcaps")),
91  barrelHitProducer_(consumes<EcalRecHitCollection>(ps.getParameter<edm::InputTag>("barrelHitProducer"))),
92  endcapHitProducer_(consumes<EcalRecHitCollection>(ps.getParameter<edm::InputTag>("endcapHitProducer"))),
93  clusEtaSize_(ps.getParameter<int>("clusEtaSize")),
94  clusPhiSize_(ps.getParameter<int>("clusPhiSize")),
95  barrelClusterCollection_(ps.getParameter<std::string>("barrelClusterCollection")),
96  endcapClusterCollection_(ps.getParameter<std::string>("endcapClusterCollection")),
97  clusSeedThr_(ps.getParameter<double>("clusSeedThr")),
98  clusSeedThrEndCap_(ps.getParameter<double>("clusSeedThrEndCap")),
99  useRecoFlag_(ps.getParameter<bool>("useRecoFlag")),
100  flagLevelRecHitsToUse_(ps.getParameter<int>("flagLevelRecHitsToUse")),
101  useDBStatus_(ps.getParameter<bool>("useDBStatus")),
102  statusLevelRecHitsToUse_(ps.getParameter<int>("statusLevelRecHitsToUse")),
103  maxNumberofSeeds_(ps.getParameter<int>("maxNumberofSeeds")),
104  maxNumberofClusters_(ps.getParameter<int>("maxNumberofClusters")),
105  debug_(ps.getParameter<int>("debugLevel")),
106  posCalculator_(PositionCalc(ps.getParameter<edm::ParameterSet>("posCalcParameters"))) {
107  produces<reco::BasicClusterCollection>(barrelClusterCollection_);
108  produces<reco::BasicClusterCollection>(endcapClusterCollection_);
109 }
T getParameter(std::string const &) const
const edm::EDGetTokenT< EcalRecHitCollection > endcapHitProducer_
const edm::EDGetTokenT< EcalRecHitCollection > barrelHitProducer_
EgammaHLTNxNClusterProducer::~EgammaHLTNxNClusterProducer ( )
override

Definition at line 111 of file EgammaHLTNxNClusterProducer.cc.

111 {}

Member Function Documentation

bool EgammaHLTNxNClusterProducer::checkStatusOfEcalRecHit ( const EcalChannelStatus channelStatus,
const EcalRecHit rh 
)
private

from recoFlag()

good

good || PoorCalib

good || PoorCalib || LeadingEdgeRecovered || kNeighboursRecovered,

Definition at line 176 of file EgammaHLTNxNClusterProducer.cc.

References RemoveAddSevLevel::flag, flagLevelRecHitsToUse_, EcalRecHit::id(), createfilelist::int, DetId::rawId(), EcalRecHit::recoFlag(), mps_update::status, statusLevelRecHitsToUse_, useDBStatus_, and useRecoFlag_.

Referenced by makeNxNClusters().

177  {
178  if (useRecoFlag_) {
179  int flag = rh.recoFlag();
180  if (flagLevelRecHitsToUse_ == 0) {
181  if (flag != 0)
182  return false;
183  } else if (flagLevelRecHitsToUse_ == 1) {
184  if (flag != 0 && flag != 4)
185  return false;
186  } else if (flagLevelRecHitsToUse_ == 2) {
187  if (flag != 0 && flag != 4 && flag != 6 && flag != 7)
188  return false;
189  }
190  }
191  if (useDBStatus_) {
192  int status = int(channelStatus[rh.id().rawId()].getStatusCode());
193  if (status > statusLevelRecHitsToUse_)
194  return false;
195  }
196 
197  return true;
198 }
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
DetId id() const
get the id
Definition: EcalRecHit.h:77
Flags recoFlag() const
DEPRECATED provided for temporary backward compatibility.
Definition: EcalRecHit.h:205
void EgammaHLTNxNClusterProducer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 113 of file EgammaHLTNxNClusterProducer.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), and AlCaHLTBitMon_QueryRunRegistry::string.

113  {
115  desc.add<bool>(("doBarrel"), true);
116  desc.add<bool>(("doEndcaps"), true);
117  desc.add<edm::InputTag>(("barrelHitProducer"), edm::InputTag("hltEcalRegionalPi0EtaRecHit", "EcalRecHitsEB"));
118  desc.add<edm::InputTag>(("endcapHitProducer"), edm::InputTag("hltEcalRegionalPi0EtaRecHit", "EcalRecHitsEE"));
119  desc.add<int>(("clusEtaSize"), 3);
120  desc.add<int>(("clusPhiSize"), 3);
121  desc.add<std::string>(("barrelClusterCollection"), "Simple3x3ClustersBarrel");
122  desc.add<std::string>(("endcapClusterCollection"), "Simple3x3ClustersEndcap");
123  desc.add<double>(("clusSeedThr"), 0.5);
124  desc.add<double>(("clusSeedThrEndCap"), 1.0);
125  desc.add<bool>(("useRecoFlag"), false);
126  desc.add<int>(("flagLevelRecHitsToUse"), 1);
127  desc.add<bool>(("useDBStatus"), true);
128  desc.add<int>(("statusLevelRecHitsToUse"), 1);
129 
130  edm::ParameterSetDescription posCalcPSET;
131  posCalcPSET.add<double>("T0_barl", 7.4);
132  posCalcPSET.add<double>("T0_endc", 3.1);
133  posCalcPSET.add<double>("T0_endcPresh", 1.2);
134  posCalcPSET.add<double>("W0", 4.2);
135  posCalcPSET.add<double>("X0", 0.89);
136  posCalcPSET.add<bool>("LogWeighted", true);
137  desc.add<edm::ParameterSetDescription>("posCalcParameters", posCalcPSET);
138 
139  desc.add<int>(("maxNumberofSeeds"), 1000);
140  desc.add<int>(("maxNumberofClusters"), 200);
141  desc.add<int>(("debugLevel"), 0);
142  descriptions.add(("hltEgammaHLTNxNClusterProducer"), desc);
143 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void EgammaHLTNxNClusterProducer::makeNxNClusters ( edm::Event evt,
const edm::EventSetup es,
const EcalRecHitCollection hits,
const reco::CaloID::Detectors  detector 
)
private

get status from DB

if too much clusters made, then return 0 also

Definition at line 200 of file EgammaHLTNxNClusterProducer.cc.

References barrelClusterCollection_, edm::SortedCollection< T, SORT >::begin(), PositionCalc::Calculate_Location(), checkStatusOfEcalRecHit(), clusEtaSize_, clusPhiSize_, clusSeedThr_, clusSeedThrEndCap_, bsc_activity_cfg::clusters, debug_, DEFINE_FWK_MODULE, reco::CaloID::DET_ECAL_BARREL, DetId::Ecal, EcalBarrel, EcalEndcap, EcalPreshower, edm::SortedCollection< T, SORT >::end(), endcapClusterCollection_, HCALHighEnergyHPDFilter_cfi::energy, edm::EventID::event(), spr::find(), edm::SortedCollection< T, SORT >::find(), edm::EventSetup::get(), CaloGeometry::getSubdetectorGeometry(), edm::EventBase::id(), reco::CaloCluster::island, LogDebug, maxNumberofClusters_, maxNumberofSeeds_, eostools::move(), posCalculator_, edm::Event::put(), edm::EventID::run(), useDBStatus_, x, and y.

Referenced by produce().

203  {
206  if (useDBStatus_)
207  es.get<EcalChannelStatusRcd>().get(csHandle);
208  const EcalChannelStatus &channelStatus = *csHandle;
209 
210  std::vector<EcalRecHit> seeds;
211 
212  double clusterSeedThreshold;
214  clusterSeedThreshold = clusSeedThr_;
215  } else {
216  clusterSeedThreshold = clusSeedThrEndCap_;
217  }
218 
219  for (EcalRecHitCollection::const_iterator itt = hits->begin(); itt != hits->end(); itt++) {
220  double energy = itt->energy();
221  if (!checkStatusOfEcalRecHit(channelStatus, *itt))
222  continue;
223  if (energy > clusterSeedThreshold)
224  seeds.push_back(*itt);
225 
226  if (int(seeds.size()) > maxNumberofSeeds_) { //too many seeds, like beam splash events
227  seeds.clear();
228  break;
229  }
230  }
231 
232  // get the geometry and topology from the event setup:
233  edm::ESHandle<CaloGeometry> geoHandle;
234  es.get<CaloGeometryRecord>().get(geoHandle);
235 
236  const CaloSubdetectorGeometry *geometry_p;
237  std::unique_ptr<CaloSubdetectorTopology> topology_p;
239  geometry_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalBarrel);
240  topology_p = std::make_unique<EcalBarrelTopology>(*geoHandle);
241  } else {
242  geometry_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalEndcap);
243  topology_p = std::make_unique<EcalEndcapTopology>(*geoHandle);
244  }
245 
246  const CaloSubdetectorGeometry *geometryES_p;
247  geometryES_p = geoHandle->getSubdetectorGeometry(DetId::Ecal, EcalPreshower);
248 
249  std::vector<reco::BasicCluster> clusters;
250  std::vector<DetId> usedXtals;
251 
252  // sort seed according to Energy
253  sort(seeds.begin(), seeds.end(), [](auto const &x, auto const &y) { return (x.energy() > y.energy()); });
254 
255  for (std::vector<EcalRecHit>::iterator itseed = seeds.begin(); itseed != seeds.end(); itseed++) {
256  DetId seed_id = itseed->id();
257 
258  std::vector<DetId>::iterator itdet = find(usedXtals.begin(), usedXtals.end(), seed_id);
259  if (itdet != usedXtals.end())
260  continue;
261 
262  std::vector<DetId> clus_v = topology_p->getWindow(seed_id, clusEtaSize_, clusPhiSize_);
263  std::vector<std::pair<DetId, float> > clus_used;
264 
265  float clus_energy = 0;
266 
267  for (std::vector<DetId>::iterator det = clus_v.begin(); det != clus_v.end(); det++) {
268  DetId detid = *det;
269 
270  //not yet used
271  std::vector<DetId>::iterator itdet = find(usedXtals.begin(), usedXtals.end(), detid);
272  if (itdet != usedXtals.end())
273  continue;
274  //inside the collection
276  if (hit == hits->end())
277  continue;
278 
279  if (!checkStatusOfEcalRecHit(channelStatus, *hit))
280  continue;
281 
282  usedXtals.push_back(detid);
283  clus_used.push_back(std::pair<DetId, float>(detid, 1.));
284  clus_energy += hit->energy();
285 
286  }
287 
288  if (clus_energy <= 0)
289  continue;
290 
291  math::XYZPoint clus_pos = posCalculator_.Calculate_Location(clus_used, hits, geometry_p, geometryES_p);
292 
293  if (debug_ >= 2)
294  LogDebug("") << "nxn_cluster in run " << evt.id().run() << " event " << evt.id().event()
295  << " energy: " << clus_energy << " eta: " << clus_pos.Eta() << " phi: " << clus_pos.Phi()
296  << " nRecHits: " << clus_used.size() << std::endl;
297 
298  clusters.push_back(reco::BasicCluster(
299  clus_energy, clus_pos, reco::CaloID(detector), clus_used, reco::CaloCluster::island, seed_id));
300  if (int(clusters.size()) > maxNumberofClusters_) {
301  clusters.clear();
302  break;
303  }
304  }
305 
306  //Create empty output collections
307  auto clusters_p = std::make_unique<reco::BasicClusterCollection>();
308  clusters_p->assign(clusters.begin(), clusters.end());
310  if (debug_ >= 1)
311  LogDebug("") << "nxnclusterProducer: " << clusters_p->size() << " made in barrel" << std::endl;
312  evt.put(std::move(clusters_p), barrelClusterCollection_);
313  } else {
314  if (debug_ >= 1)
315  LogDebug("") << "nxnclusterProducer: " << clusters_p->size() << " made in endcap" << std::endl;
316  evt.put(std::move(clusters_p), endcapClusterCollection_);
317  }
318 }
#define LogDebug(id)
RunNumber_t run() const
Definition: EventID.h:38
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34
EventNumber_t event() const
Definition: EventID.h:40
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
std::vector< EcalRecHit >::const_iterator const_iterator
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
const_iterator end() const
Definition: DetId.h:17
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
edm::EventID id() const
Definition: EventBase.h:59
iterator find(key_type k)
math::XYZPoint Calculate_Location(const HitsAndFractions &iDetIds, const edm::SortedCollection< HitType > *iRecHits, const CaloSubdetectorGeometry *iSubGeom, const CaloSubdetectorGeometry *iESGeom=0)
Definition: PositionCalc.h:65
T get() const
Definition: EventSetup.h:73
bool checkStatusOfEcalRecHit(const EcalChannelStatus &channelStatus, const EcalRecHit &rh)
def move(src, dest)
Definition: eostools.py:511
const_iterator begin() const
void EgammaHLTNxNClusterProducer::produce ( edm::Event evt,
const edm::EventSetup es 
)
override

Definition at line 145 of file EgammaHLTNxNClusterProducer.cc.

References barrelHitProducer_, debug_, reco::CaloID::DET_ECAL_BARREL, reco::CaloID::DET_ECAL_ENDCAP, doBarrel_, doEndcaps_, endcapHitProducer_, edm::EventID::event(), edm::Event::getByToken(), edm::EventBase::id(), edm::HandleBase::isValid(), LogDebug, makeNxNClusters(), edm::Handle< T >::product(), edm::EventID::run(), and edm::SortedCollection< T, SORT >::size().

145  {
146  if (doBarrel_) {
147  edm::Handle<EcalRecHitCollection> barrelRecHitsHandle;
148  evt.getByToken(barrelHitProducer_, barrelRecHitsHandle);
149  if (!barrelRecHitsHandle.isValid()) {
150  LogDebug("") << "EgammaHLTNxNClusterProducer Error! can't get product eb hit!" << std::endl;
151  }
152 
153  const EcalRecHitCollection *hits_eb = barrelRecHitsHandle.product();
154  if (debug_ >= 2)
155  LogDebug("") << "EgammaHLTNxNClusterProducer nEBrechits: " << evt.id().run() << " event " << evt.id().event()
156  << " " << hits_eb->size() << std::endl;
157 
159  }
160 
161  if (doEndcaps_) {
162  edm::Handle<EcalRecHitCollection> endcapRecHitsHandle;
163  evt.getByToken(endcapHitProducer_, endcapRecHitsHandle);
164  if (!endcapRecHitsHandle.isValid()) {
165  LogDebug("") << "EgammaHLTNxNClusterProducer Error! can't get product ee hit!" << std::endl;
166  }
167 
168  const EcalRecHitCollection *hits_ee = endcapRecHitsHandle.product();
169  if (debug_ >= 2)
170  LogDebug("") << "EgammaHLTNxNClusterProducer nEErechits: " << evt.id().run() << " event " << evt.id().event()
171  << " " << hits_ee->size() << std::endl;
173  }
174 }
#define LogDebug(id)
RunNumber_t run() const
Definition: EventID.h:38
EventNumber_t event() const
Definition: EventID.h:40
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
const edm::EDGetTokenT< EcalRecHitCollection > endcapHitProducer_
bool isValid() const
Definition: HandleBase.h:70
T const * product() const
Definition: Handle.h:69
edm::EventID id() const
Definition: EventBase.h:59
void makeNxNClusters(edm::Event &evt, const edm::EventSetup &es, const EcalRecHitCollection *hits, const reco::CaloID::Detectors detector)
size_type size() const
const edm::EDGetTokenT< EcalRecHitCollection > barrelHitProducer_

Member Data Documentation

const std::string EgammaHLTNxNClusterProducer::barrelClusterCollection_
private

Definition at line 70 of file EgammaHLTNxNClusterProducer.cc.

Referenced by EgammaHLTNxNClusterProducer(), and makeNxNClusters().

const edm::EDGetTokenT<EcalRecHitCollection> EgammaHLTNxNClusterProducer::barrelHitProducer_
private

Definition at line 66 of file EgammaHLTNxNClusterProducer.cc.

Referenced by produce().

const int EgammaHLTNxNClusterProducer::clusEtaSize_
private

Definition at line 68 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters().

const int EgammaHLTNxNClusterProducer::clusPhiSize_
private

Definition at line 69 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters().

const double EgammaHLTNxNClusterProducer::clusSeedThr_
private

Definition at line 72 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters().

const double EgammaHLTNxNClusterProducer::clusSeedThrEndCap_
private

Definition at line 73 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters().

const int EgammaHLTNxNClusterProducer::debug_
private

Definition at line 83 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters(), and produce().

const bool EgammaHLTNxNClusterProducer::doBarrel_
private

Definition at line 64 of file EgammaHLTNxNClusterProducer.cc.

Referenced by produce().

const bool EgammaHLTNxNClusterProducer::doEndcaps_
private

Definition at line 65 of file EgammaHLTNxNClusterProducer.cc.

Referenced by produce().

const std::string EgammaHLTNxNClusterProducer::endcapClusterCollection_
private

Definition at line 71 of file EgammaHLTNxNClusterProducer.cc.

Referenced by EgammaHLTNxNClusterProducer(), and makeNxNClusters().

const edm::EDGetTokenT<EcalRecHitCollection> EgammaHLTNxNClusterProducer::endcapHitProducer_
private

Definition at line 67 of file EgammaHLTNxNClusterProducer.cc.

Referenced by produce().

const int EgammaHLTNxNClusterProducer::flagLevelRecHitsToUse_
private

Definition at line 76 of file EgammaHLTNxNClusterProducer.cc.

Referenced by checkStatusOfEcalRecHit().

const int EgammaHLTNxNClusterProducer::maxNumberofClusters_
private

Definition at line 81 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters().

const int EgammaHLTNxNClusterProducer::maxNumberofSeeds_
private

Definition at line 80 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters().

PositionCalc EgammaHLTNxNClusterProducer::posCalculator_
private

Definition at line 85 of file EgammaHLTNxNClusterProducer.cc.

Referenced by makeNxNClusters().

const int EgammaHLTNxNClusterProducer::statusLevelRecHitsToUse_
private

Definition at line 78 of file EgammaHLTNxNClusterProducer.cc.

Referenced by checkStatusOfEcalRecHit().

const bool EgammaHLTNxNClusterProducer::useDBStatus_
private

Definition at line 77 of file EgammaHLTNxNClusterProducer.cc.

Referenced by checkStatusOfEcalRecHit(), and makeNxNClusters().

const bool EgammaHLTNxNClusterProducer::useRecoFlag_
private

Definition at line 75 of file EgammaHLTNxNClusterProducer.cc.

Referenced by checkStatusOfEcalRecHit().