CMS 3D CMS Logo

EgammaIsoHcalDetIdCollectionProducer.cc
Go to the documentation of this file.
2 
5 
8 
10  : hcalHitSelector_(iConfig.getParameter<edm::ParameterSet>("hitSelection"), consumesCollector()) {
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 }
28 
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 }
42 
44  hcalHitSelector_.setup(iSetup);
45 }
46 
47 // ------------ method called to produce the data ------------
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 }
EGHcalRecHitSelector::setup
void setup(const edm::EventSetup &iSetup)
Definition: EGHcalRecHitSelector.h:29
MessageLogger.h
EgammaIsoHcalDetIdCollectionProducer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: EgammaIsoHcalDetIdCollectionProducer.cc:29
edm::Run
Definition: Run.h:45
edm
HLT enums.
Definition: AlignableModifier.h:19
EgammaIsoHcalDetIdCollectionProducer::minPhoEt_
float minPhoEt_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:58
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89353
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
EgammaIsoHcalDetIdCollectionProducer::minEleEt_
float minEleEt_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:57
EGHcalRecHitSelector::addDetIds
void addDetIds(const reco::SuperCluster &superClus, const HBHERecHitCollection &recHits, CollType &detIdsToStore) const
Definition: EGHcalRecHitSelector.h:49
edm::Handle
Definition: AssociativeIterator.h:50
HLT_FULL_cff.superClusters
superClusters
Definition: HLT_FULL_cff.py:15237
funct::sin
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
EgammaIsoHcalDetIdCollectionProducer::minSCEt_
float minSCEt_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:56
EGHcalRecHitSelector::makePSetDescription
static edm::ParameterSetDescription makePSetDescription()
Definition: EGHcalRecHitSelector.cc:13
EgammaIsoHcalDetIdCollectionProducer::interestingDetIdCollection_
std::string interestingDetIdCollection_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:54
EgammaIsoHcalDetIdCollectionProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: EgammaIsoHcalDetIdCollectionProducer.cc:48
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
EgammaIsoHcalDetIdCollectionProducer::phosToken_
edm::EDGetTokenT< reco::PhotonCollection > phosToken_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:52
CaloGeometryRecord.h
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
EgammaIsoHcalDetIdCollectionProducer.h
ParameterSet
Definition: Functions.h:16
EgammaIsoHcalDetIdCollectionProducer::EgammaIsoHcalDetIdCollectionProducer
EgammaIsoHcalDetIdCollectionProducer(const edm::ParameterSet &)
Definition: EgammaIsoHcalDetIdCollectionProducer.cc:9
EgammaIsoHcalDetIdCollectionProducer::hcalHitSelector_
EGHcalRecHitSelector hcalHitSelector_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:60
EgammaIsoHcalDetIdCollectionProducer::recHitsToken_
edm::EDGetTokenT< HBHERecHitCollection > recHitsToken_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:49
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup
Definition: EventSetup.h:57
EgammaIsoHcalDetIdCollectionProducer::superClustersToken_
edm::EDGetTokenT< reco::SuperClusterCollection > superClustersToken_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:50
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
eostools.move
def move(src, dest)
Definition: eostools.py:511
writedatasetfile.run
run
Definition: writedatasetfile.py:27
tier0.unique
def unique(seq, keepstr=True)
Definition: tier0.py:24
EventSetup.h
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
EgammaIsoHcalDetIdCollectionProducer::beginRun
void beginRun(edm::Run const &, const edm::EventSetup &) final
Definition: EgammaIsoHcalDetIdCollectionProducer.cc:43
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
EgammaIsoHcalDetIdCollectionProducer::elesToken_
edm::EDGetTokenT< reco::GsfElectronCollection > elesToken_
Definition: EgammaIsoHcalDetIdCollectionProducer.h:51
DetIdCollection.h