CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
EGPhotonImporter Class Reference
Inheritance diagram for EGPhotonImporter:
BlockElementImporterBase

Public Types

enum  SelectionChoices { SeparateDetectorIso, CombinedDetectorIso }
 
- Public Types inherited from BlockElementImporterBase
typedef std::vector< std::unique_ptr< reco::PFBlockElement > > ElementList
 

Public Member Functions

 EGPhotonImporter (const edm::ParameterSet &, edm::ConsumesCollector &)
 
void importToBlock (const edm::Event &, ElementList &) const override
 
- Public Member Functions inherited from BlockElementImporterBase
 BlockElementImporterBase (const BlockElementImporterBase &)=delete
 
 BlockElementImporterBase (const edm::ParameterSet &conf, edm::ConsumesCollector &sumes)
 
const std::string & name () const
 
BlockElementImporterBaseoperator= (const BlockElementImporterBase &)=delete
 
virtual void updateEventSetup (const edm::EventSetup &)
 
virtual ~BlockElementImporterBase ()=default
 

Private Attributes

SelectionChoices _selectionChoice
 
const std::unordered_map< std::string, SelectionChoices_selectionTypes
 
std::unique_ptr< const PhotonSelectorAlgo_selector
 
edm::EDGetTokenT< reco::PhotonCollection_src
 
bool _superClustersArePF
 

Detailed Description

Definition at line 11 of file EGPhotonImporter.cc.

Member Enumeration Documentation

◆ SelectionChoices

Enumerator
SeparateDetectorIso 
CombinedDetectorIso 

Definition at line 13 of file EGPhotonImporter.cc.

Constructor & Destructor Documentation

◆ EGPhotonImporter()

EGPhotonImporter::EGPhotonImporter ( const edm::ParameterSet conf,
edm::ConsumesCollector sumes 
)

Definition at line 29 of file EGPhotonImporter.cc.

30  : BlockElementImporterBase(conf, sumes),
33  {"CombinedDetectorIso", EGPhotonImporter::CombinedDetectorIso}}),
34  _superClustersArePF(conf.getParameter<bool>("superClustersArePF")) {
35  const std::string& selChoice = conf.getParameter<std::string>("SelectionChoice");
36  _selectionChoice = _selectionTypes.at(selChoice);
37  const edm::ParameterSet& selDef = conf.getParameterSet("SelectionDefinition");
38  const float minEt = selDef.getParameter<double>("minEt");
39  const float trackIso_const = selDef.getParameter<double>("trackIsoConstTerm");
40  const float trackIso_slope = selDef.getParameter<double>("trackIsoSlopeTerm");
41  const float ecalIso_const = selDef.getParameter<double>("ecalIsoConstTerm");
42  const float ecalIso_slope = selDef.getParameter<double>("ecalIsoSlopeTerm");
43  const float hcalIso_const = selDef.getParameter<double>("hcalIsoConstTerm");
44  const float hcalIso_slope = selDef.getParameter<double>("hcalIsoSlopeTerm");
45  const float hoe = selDef.getParameter<double>("HoverE");
46  const float loose_hoe = selDef.getParameter<double>("LooseHoverE");
47  const float combIso = selDef.getParameter<double>("combIsoConstTerm");
49  minEt,
50  trackIso_const,
51  trackIso_slope,
52  ecalIso_const,
53  ecalIso_slope,
54  hcalIso_const,
55  hcalIso_slope,
56  hoe,
57  combIso,
58  loose_hoe));
59 }

References CombinedDetectorIso, and SeparateDetectorIso.

Member Function Documentation

◆ importToBlock()

void EGPhotonImporter::importToBlock ( const edm::Event e,
BlockElementImporterBase::ElementList elems 
) const
overridevirtual

Implements BlockElementImporterBase.

Definition at line 61 of file EGPhotonImporter.cc.

61  {
63  auto photons = e.getHandle(_src);
64  elems.reserve(elems.size() + photons->size());
65  // setup our elements so that all the SCs are grouped together
66  auto SCs_end = std::partition(
67  elems.begin(), elems.end(), [](const ElementType& a) { return a->type() == reco::PFBlockElement::SC; });
68  //now add the photons
69  auto bphoton = photons->cbegin();
70  auto ephoton = photons->cend();
71  reco::PFBlockElementSuperCluster* scbe = nullptr;
72  reco::PhotonRef phoref;
73  for (auto photon = bphoton; photon != ephoton; ++photon) {
74  if (_selector->passPhotonSelection(*photon)) {
75  phoref = reco::PhotonRef(photons, std::distance(bphoton, photon));
76  const reco::SuperClusterRef& scref = photon->superCluster();
77  PFBlockElementSCEqual myEqual(scref);
78  auto sc_elem = std::find_if(elems.begin(), SCs_end, myEqual);
79  if (sc_elem != SCs_end) {
80  scbe = static_cast<reco::PFBlockElementSuperCluster*>(sc_elem->get());
81  scbe->setFromPhoton(true);
82  scbe->setPhotonRef(phoref);
83  scbe->setTrackIso(photon->trkSumPtHollowConeDR04());
84  scbe->setEcalIso(photon->ecalRecHitSumEtConeDR04());
85  scbe->setHcalIso(photon->hcalTowerSumEtConeDR04());
86  scbe->setHoE(photon->hadronicOverEm());
87  } else {
88  scbe = new reco::PFBlockElementSuperCluster(scref);
89  scbe->setFromPhoton(true);
91  scbe->setPhotonRef(phoref);
92  scbe->setTrackIso(photon->trkSumPtHollowConeDR04());
93  scbe->setEcalIso(photon->ecalRecHitSumEtConeDR04());
94  scbe->setHcalIso(photon->hcalTowerSumEtConeDR04());
95  scbe->setHoE(photon->hadronicOverEm());
96  SCs_end = elems.insert(SCs_end, ElementType(scbe));
97  ++SCs_end; // point to element *after* the new one
98  }
99  }
100  } // loop on photons
101  elems.shrink_to_fit();
102 }

References _selector, _src, _superClustersArePF, a, HLT_2018_cff::distance, MillePedeFileConverter_cfg::e, muons2muons_cfi::photon, BPHMonitor_cfi::photons, reco::PFBlockElement::SC, reco::PFBlockElementSuperCluster::setEcalIso(), reco::PFBlockElementSuperCluster::setFromPFSuperCluster(), reco::PFBlockElementSuperCluster::setFromPhoton(), reco::PFBlockElementSuperCluster::setHcalIso(), reco::PFBlockElementSuperCluster::setHoE(), reco::PFBlockElementSuperCluster::setPhotonRef(), and reco::PFBlockElementSuperCluster::setTrackIso().

Member Data Documentation

◆ _selectionChoice

SelectionChoices EGPhotonImporter::_selectionChoice
private

Definition at line 22 of file EGPhotonImporter.cc.

◆ _selectionTypes

const std::unordered_map<std::string, SelectionChoices> EGPhotonImporter::_selectionTypes
private

Definition at line 21 of file EGPhotonImporter.cc.

◆ _selector

std::unique_ptr<const PhotonSelectorAlgo> EGPhotonImporter::_selector
private

Definition at line 23 of file EGPhotonImporter.cc.

Referenced by importToBlock().

◆ _src

edm::EDGetTokenT<reco::PhotonCollection> EGPhotonImporter::_src
private

Definition at line 20 of file EGPhotonImporter.cc.

Referenced by importToBlock().

◆ _superClustersArePF

bool EGPhotonImporter::_superClustersArePF
private

Definition at line 24 of file EGPhotonImporter.cc.

Referenced by importToBlock().

reco::PFBlockElementSuperCluster::setTrackIso
void setTrackIso(float val)
set the track Iso
Definition: PFBlockElementSuperCluster.h:44
muons2muons_cfi.photon
photon
Definition: muons2muons_cfi.py:28
EGPhotonImporter::_selectionChoice
SelectionChoices _selectionChoice
Definition: EGPhotonImporter.cc:22
reco::PFBlockElementSuperCluster
Cluster Element.
Definition: PFBlockElementSuperCluster.h:15
reco::PFBlockElementSuperCluster::setHoE
void setHoE(float val)
set H/E
Definition: PFBlockElementSuperCluster.h:53
reco::PFBlockElement::SC
Definition: PFBlockElement.h:41
HLT_2018_cff.distance
distance
Definition: HLT_2018_cff.py:6417
BlockElementImporterBase::BlockElementImporterBase
BlockElementImporterBase(const edm::ParameterSet &conf, edm::ConsumesCollector &sumes)
Definition: BlockElementImporterBase.h:17
edm::Ref< PhotonCollection >
EGPhotonImporter::_superClustersArePF
bool _superClustersArePF
Definition: EGPhotonImporter.cc:24
PhotonSelectorAlgo
Definition: PhotonSelectorAlgo.h:8
PFBlockElementSCEqual
Definition: PFBlockElementSCEqual.h:7
EgHLTOffEleSelection_cfi.minEt
minEt
Definition: EgHLTOffEleSelection_cfi.py:10
reco::PFBlockElementSuperCluster::setEcalIso
void setEcalIso(float val)
set the ecal Iso
Definition: PFBlockElementSuperCluster.h:47
edm::ConsumesCollector::consumes
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: ConsumesCollector.h:49
EGPhotonImporter::CombinedDetectorIso
Definition: EGPhotonImporter.cc:13
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
reco::PFBlockElementSuperCluster::setFromPFSuperCluster
void setFromPFSuperCluster(bool val)
Definition: PFBlockElementSuperCluster.h:61
edm::ParameterSet
Definition: ParameterSet.h:36
a
double a
Definition: hdecay.h:119
BPHMonitor_cfi.photons
photons
Definition: BPHMonitor_cfi.py:91
reco::JetExtendedAssociation::value_type
Container::value_type value_type
Definition: JetExtendedAssociation.h:30
electrons_cff.hoe
hoe
Definition: electrons_cff.py:404
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
reco::PhotonRef
edm::Ref< PhotonCollection > PhotonRef
reference to an object in a collection of Photon objects
Definition: PhotonFwd.h:15
reco::PFBlockElementSuperCluster::setHcalIso
void setHcalIso(float val)
set the had Iso
Definition: PFBlockElementSuperCluster.h:50
reco::PFBlockElementSuperCluster::setPhotonRef
void setPhotonRef(const PhotonRef &ref)
set photonRef
Definition: PFBlockElementSuperCluster.h:64
reco::PhotonCollection
std::vector< Photon > PhotonCollection
collectin of Photon objects
Definition: PhotonFwd.h:9
EGPhotonImporter::_src
edm::EDGetTokenT< reco::PhotonCollection > _src
Definition: EGPhotonImporter.cc:20
EGPhotonImporter::_selector
std::unique_ptr< const PhotonSelectorAlgo > _selector
Definition: EGPhotonImporter.cc:23
EGPhotonImporter::_selectionTypes
const std::unordered_map< std::string, SelectionChoices > _selectionTypes
Definition: EGPhotonImporter.cc:21
reco::PFBlockElementSuperCluster::setFromPhoton
void setFromPhoton(bool val)
set provenance
Definition: PFBlockElementSuperCluster.h:59
edm::InputTag
Definition: InputTag.h:15
edm::ParameterSet::getParameterSet
ParameterSet const & getParameterSet(std::string const &) const
Definition: ParameterSet.cc:2121
EGPhotonImporter::SeparateDetectorIso
Definition: EGPhotonImporter.cc:13
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37