CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
EgammaIsoHcalDetIdCollectionProducer Class Reference

#include <EgammaIsoHcalDetIdCollectionProducer.h>

Inheritance diagram for EgammaIsoHcalDetIdCollectionProducer:
edm::stream::EDProducer<>

Public Member Functions

void beginRun (edm::Run const &, const edm::EventSetup &) final
 
 EgammaIsoHcalDetIdCollectionProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) 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 Attributes

edm::EDGetTokenT< reco::GsfElectronCollectionelesToken_
 
EGHcalRecHitSelector hcalHitSelector_
 
std::string interestingDetIdCollection_
 
float minEleEt_
 
float minPhoEt_
 
float minSCEt_
 
edm::EDGetTokenT< reco::PhotonCollectionphosToken_
 
edm::EDGetTokenT< HBHERecHitCollectionrecHitsToken_
 
edm::EDGetTokenT< reco::SuperClusterCollectionsuperClustersToken_
 

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

Original author: Sam Harper (RAL)

Make a collection of detids to be kept tipically in a AOD rechit collection Modified from the ECAL version "InterestingDetIdCollectionProducer" to be HCAL

Definition at line 39 of file EgammaIsoHcalDetIdCollectionProducer.h.

Constructor & Destructor Documentation

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

Definition at line 9 of file EgammaIsoHcalDetIdCollectionProducer.cc.

References elesToken_, edm::ParameterSet::getParameter(), interestingDetIdCollection_, minEleEt_, minPhoEt_, minSCEt_, phosToken_, recHitsToken_, AlCaHLTBitMon_QueryRunRegistry::string, and superClustersToken_.

10  : hcalHitSelector_(iConfig.getParameter<edm::ParameterSet>("hitSelection")) {
11  recHitsToken_ = consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("recHitsLabel"));
12  elesToken_ = consumes<reco::GsfElectronCollection>(iConfig.getParameter<edm::InputTag>("elesLabel"));
13 
14  phosToken_ = consumes<reco::PhotonCollection>(iConfig.getParameter<edm::InputTag>("phosLabel"));
15 
17  consumes<reco::SuperClusterCollection>(iConfig.getParameter<edm::InputTag>("superClustersLabel"));
18 
19  minSCEt_ = iConfig.getParameter<double>("minSCEt");
20  minEleEt_ = iConfig.getParameter<double>("minEleEt");
21  minPhoEt_ = iConfig.getParameter<double>("minPhoEt");
22 
23  interestingDetIdCollection_ = iConfig.getParameter<std::string>("interestingDetIdCollection");
24 
25  //register your products
26  produces<DetIdCollection>(interestingDetIdCollection_);
27 }
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::SuperClusterCollection > superClustersToken_
edm::EDGetTokenT< HBHERecHitCollection > recHitsToken_
edm::EDGetTokenT< reco::GsfElectronCollection > elesToken_
edm::EDGetTokenT< reco::PhotonCollection > phosToken_

Member Function Documentation

void EgammaIsoHcalDetIdCollectionProducer::beginRun ( edm::Run const &  run,
const edm::EventSetup iSetup 
)
final

Definition at line 43 of file EgammaIsoHcalDetIdCollectionProducer.cc.

References hcalHitSelector_, and EGHcalRecHitSelector::setup().

43  {
44  hcalHitSelector_.setup(iSetup);
45 }
void setup(const edm::EventSetup &iSetup)
void EgammaIsoHcalDetIdCollectionProducer::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 29 of file EgammaIsoHcalDetIdCollectionProducer.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), HLT_2018_cff::InputTag, EGHcalRecHitSelector::makePSetDescription(), and AlCaHLTBitMon_QueryRunRegistry::string.

29  {
31  desc.add<edm::InputTag>("recHitsLabel", edm::InputTag("hbhereco"));
32  desc.add<edm::InputTag>("elesLabel", edm::InputTag("gedGsfElectrons"));
33  desc.add<edm::InputTag>("phosLabel", edm::InputTag("gedPhotons"));
34  desc.add<edm::InputTag>("superClustersLabel", edm::InputTag("particleFlowEGamma"));
35  desc.add<double>("minSCEt", 20);
36  desc.add<double>("minEleEt", 20);
37  desc.add<double>("minPhoEt", 20);
38  desc.add<std::string>("interestingDetIdCollection", "");
40  descriptions.add(("interestingGedEgammaIsoHCALDetId"), desc);
41 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
static edm::ParameterSetDescription makePSetDescription()
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void EgammaIsoHcalDetIdCollectionProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 48 of file EgammaIsoHcalDetIdCollectionProducer.cc.

References EGHcalRecHitSelector::addDetIds(), elesToken_, SimCluster::energy(), edm::Event::getByToken(), hcalHitSelector_, interestingDetIdCollection_, edm::HandleBase::isValid(), minEleEt_, minPhoEt_, minSCEt_, eostools::move(), phosToken_, edm::Event::put(), FastTrackerRecHitMaskProducer_cfi::recHits, recHitsToken_, SimDataFormats::CaloAnalysis::sc, funct::sin(), HLT_2018_cff::superClusters, superClustersToken_, SimCluster::theta(), and tier0::unique().

48  {
50  iEvent.getByToken(superClustersToken_, superClusters);
51 
53  iEvent.getByToken(elesToken_, eles);
54 
56  iEvent.getByToken(phosToken_, phos);
57 
59  iEvent.getByToken(recHitsToken_, recHits);
60 
61  std::vector<DetId> indexToStore;
62  indexToStore.reserve(100);
63 
64  if (eles.isValid() && recHits.isValid()) {
65  for (auto& ele : *eles) {
66  float scEt = ele.superCluster()->energy() * std::sin(ele.superCluster()->position().theta());
67  if (scEt > minEleEt_ || ele.et() > minEleEt_) {
68  hcalHitSelector_.addDetIds(*ele.superCluster(), *recHits, indexToStore);
69  }
70  }
71  }
72  if (phos.isValid() && recHits.isValid()) {
73  for (auto& pho : *phos) {
74  float scEt = pho.superCluster()->energy() * std::sin(pho.superCluster()->position().theta());
75  if (scEt > minPhoEt_ || pho.et() > minPhoEt_) {
76  hcalHitSelector_.addDetIds(*pho.superCluster(), *recHits, indexToStore);
77  }
78  }
79  }
80  if (superClusters.isValid() && recHits.isValid()) {
81  for (auto& sc : *superClusters) {
82  float scEt = sc.energy() * std::sin(sc.position().theta());
83  if (scEt > minSCEt_) {
84  hcalHitSelector_.addDetIds(sc, *recHits, indexToStore);
85  }
86  }
87  }
88 
89  //unify the vector
90  std::sort(indexToStore.begin(), indexToStore.end());
91  std::unique(indexToStore.begin(), indexToStore.end());
92 
93  auto detIdCollection = std::make_unique<DetIdCollection>(indexToStore);
94 
95  iEvent.put(std::move(detIdCollection), interestingDetIdCollection_);
96 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
edm::EDGetTokenT< reco::SuperClusterCollection > superClustersToken_
def unique(seq, keepstr=True)
Definition: tier0.py:24
edm::EDGetTokenT< HBHERecHitCollection > recHitsToken_
float energy() const
Energy. Note this is taken from the first SimTrack only.
Definition: SimCluster.h:104
bool isValid() const
Definition: HandleBase.h:70
float theta() const
Momentum polar angle. Note this is taken from the first SimTrack only.
Definition: SimCluster.h:144
edm::EDGetTokenT< reco::GsfElectronCollection > elesToken_
void addDetIds(const reco::SuperCluster &superClus, const HBHERecHitCollection &recHits, CollType &detIdsToStore) const
edm::EDGetTokenT< reco::PhotonCollection > phosToken_
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

edm::EDGetTokenT<reco::GsfElectronCollection> EgammaIsoHcalDetIdCollectionProducer::elesToken_
private
EGHcalRecHitSelector EgammaIsoHcalDetIdCollectionProducer::hcalHitSelector_
private

Definition at line 60 of file EgammaIsoHcalDetIdCollectionProducer.h.

Referenced by beginRun(), and produce().

std::string EgammaIsoHcalDetIdCollectionProducer::interestingDetIdCollection_
private
float EgammaIsoHcalDetIdCollectionProducer::minEleEt_
private
float EgammaIsoHcalDetIdCollectionProducer::minPhoEt_
private
float EgammaIsoHcalDetIdCollectionProducer::minSCEt_
private
edm::EDGetTokenT<reco::PhotonCollection> EgammaIsoHcalDetIdCollectionProducer::phosToken_
private
edm::EDGetTokenT<HBHERecHitCollection> EgammaIsoHcalDetIdCollectionProducer::recHitsToken_
private
edm::EDGetTokenT<reco::SuperClusterCollection> EgammaIsoHcalDetIdCollectionProducer::superClustersToken_
private