CMS 3D CMS Logo

ElectronPFIsolationWithConeVeto.cc
Go to the documentation of this file.
2 
5 
8 
11 
13 
16 
19 
22 
24 
25 #include <unordered_map>
26 
27 namespace reco {
29 }
30 
31 namespace pat {
33 }
34 
36 public:
39  _vetoConeSize2EB(std::pow(c.getParameter<double>("VetoConeSizeBarrel"), 2.0)),
40  _vetoConeSize2EE(std::pow(c.getParameter<double>("VetoConeSizeEndcaps"), 2.0)),
41  _miniAODVertexCodes(c.getParameter<std::vector<unsigned> >("miniAODVertexCodes")),
42  _isolateAgainst(c.getParameter<std::string>("isolateAgainst")) {
43  char buf[50];
44  sprintf(buf, "BarVeto%.2f-EndVeto%.2f", std::sqrt(_vetoConeSize2EB), std::sqrt(_vetoConeSize2EE));
46  auto decimal = _additionalCode.find('.');
47  while (decimal != std::string::npos) {
48  _additionalCode.erase(decimal, 1);
49  decimal = _additionalCode.find('.');
50  }
51  }
54 
56 
57  bool isInIsolationCone(const reco::CandidatePtr& physob, const reco::CandidatePtr& other) const final;
58 
61 
62 private:
64  const std::vector<unsigned> _miniAODVertexCodes;
67 };
68 
71  "ElectronPFIsolationWithConeVeto");
72 
74  const reco::CandidatePtr& iso_obj) const {
75  reco::GsfElectronPtr eleref(physob);
76  pat::PackedCandidatePtr aspacked(iso_obj);
77  reco::PFCandidatePtr aspf(iso_obj);
78  const reco::CaloClusterPtr& seed = eleref->superCluster()->seed();
79  bool isEB = (seed->seed().subdetId() == EcalBarrel);
80  const float deltar2 = reco::deltaR2(*physob, *iso_obj);
81  const float vetoConeSize2 = (isEB ? _vetoConeSize2EB : _vetoConeSize2EE);
82  bool result = true;
83  if (aspacked.isNonnull() && aspacked.get()) {
84  if (aspacked->charge() != 0) {
85  bool is_vertex_allowed = false;
86  for (const unsigned vtxtype : _miniAODVertexCodes) {
87  if (vtxtype == aspacked->fromPV()) {
88  is_vertex_allowed = true;
89  break;
90  }
91  }
92  result = result && (is_vertex_allowed);
93  }
94  result = result && (deltar2 > vetoConeSize2 && deltar2 < _coneSize2);
95  } else if (aspf.isNonnull() && aspf.get()) {
96  result = result && (deltar2 > vetoConeSize2 && deltar2 < _coneSize2);
97  } else {
98  throw cms::Exception("InvalidIsolationInput") << "The supplied candidate to be used as isolation "
99  << "was neither a reco::PFCandidate nor a pat::PackedCandidate!";
100  }
101  return result;
102 }
pat::PackedCandidatePtr
edm::Ptr< pat::PackedCandidate > PackedCandidatePtr
Definition: PATMuonMerger.cc:18
ElectronPFIsolationWithConeVeto::~ElectronPFIsolationWithConeVeto
~ElectronPFIsolationWithConeVeto() override
Destructor.
Definition: ElectronPFIsolationWithConeVeto.cc:60
IsoDepositVetos.h
PFCandidate.h
edm::EDGetTokenT< reco::VertexCollection >
IsoDepositVetoFactory.h
edm::Ptr::get
T const * get() const
Returns C++ pointer to the item.
Definition: Ptr.h:139
reco
fixed size matrix
Definition: AlignmentAlgorithmBase.h:45
ElectronPFIsolationWithConeVeto::ElectronPFIsolationWithConeVeto
ElectronPFIsolationWithConeVeto(const edm::ParameterSet &c)
Definition: ElectronPFIsolationWithConeVeto.cc:37
EcalBarrel
Definition: EcalSubdetector.h:10
citk
Definition: CITKIsolationConeDefinitionBase.h:16
CandidateFwd.h
deltaR.h
citk::IsolationConeDefinitionBase
Definition: CITKIsolationConeDefinitionBase.h:17
ElectronPFIsolationWithConeVeto::operator=
ElectronPFIsolationWithConeVeto & operator=(const ElectronPFIsolationWithConeVeto &)=delete
ElectronPFIsolationWithConeVeto::_vetoConeSize2EB
const float _vetoConeSize2EB
Definition: ElectronPFIsolationWithConeVeto.cc:60
mathSSE::sqrt
T sqrt(T t)
Definition: SSEVec.h:19
trackingPlots.other
other
Definition: trackingPlots.py:1465
GsfElectron.h
DEFINE_EDM_PLUGIN
#define DEFINE_EDM_PLUGIN(factory, type, name)
Definition: PluginFactory.h:124
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
EcalSubdetector.h
ElectronPFIsolationWithConeVeto
Definition: ElectronPFIsolationWithConeVeto.cc:35
ElectronPFIsolationWithConeVeto::_vetoConeSize2EE
const float _vetoConeSize2EE
Definition: ElectronPFIsolationWithConeVeto.cc:60
GsfElectronFwd.h
edm::ParameterSet
Definition: ParameterSet.h:36
reco::GsfElectronPtr
edm::Ptr< reco::GsfElectron > GsfElectronPtr
Definition: CutApplicatorBase.h:32
ElectronPFIsolationWithConeVeto::setConsumes
void setConsumes(edm::ConsumesCollector) override
Definition: ElectronPFIsolationWithConeVeto.cc:55
Event.h
CITKIsolationConeDefinitionBase.h
ElectronPFIsolationWithConeVeto::_vtxToken
edm::EDGetTokenT< reco::VertexCollection > _vtxToken
Definition: ElectronPFIsolationWithConeVeto.cc:66
edmplugin::PluginFactory
Definition: PluginFactory.h:34
PackedCandidate.h
reco::deltaR2
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:16
pat
Definition: HeavyIon.h:7
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
visDQMUpload.buf
buf
Definition: visDQMUpload.py:154
ElectronPFIsolationWithConeVeto::_miniAODVertexCodes
const std::vector< unsigned > _miniAODVertexCodes
Definition: ElectronPFIsolationWithConeVeto.cc:64
ElectronPFIsolationWithConeVeto::isInIsolationCone
bool isInIsolationCone(const reco::CandidatePtr &physob, const reco::CandidatePtr &other) const final
Definition: ElectronPFIsolationWithConeVeto.cc:73
edm::Ptr< reco::GsfElectron >
ElectronPFIsolationWithConeVeto::_isolateAgainst
const std::string _isolateAgainst
Definition: ElectronPFIsolationWithConeVeto.cc:65
citk::IsolationConeDefinitionBase::_coneSize2
const float _coneSize2
Definition: CITKIsolationConeDefinitionBase.h:36
std
Definition: JetResolutionObject.h:76
citk::IsolationConeDefinitionBase::_additionalCode
std::string _additionalCode
Definition: CITKIsolationConeDefinitionBase.h:40
Exception
Definition: hltDiff.cc:246
EventSetup.h
edm::Ptr::isNonnull
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:146
reco::GsfElectron::superCluster
SuperClusterRef superCluster() const override
reference to a SuperCluster
Definition: GsfElectron.h:163
funct::pow
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:30
mps_fire.result
result
Definition: mps_fire.py:303
ConsumesCollector.h
Candidate.h
ParameterSet.h
edm::ConsumesCollector
Definition: ConsumesCollector.h:39
SurveyInfoScenario_cff.seed
seed
Definition: SurveyInfoScenario_cff.py:295
citk::IsolationConeDefinitionBase::IsolationConeDefinitionBase
IsolationConeDefinitionBase(const edm::ParameterSet &c)
Definition: CITKIsolationConeDefinitionBase.h:19