CMS 3D CMS Logo

PhotonPFIsolationWithConeVeto.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  _vertexIndex(c.getParameter<int>("vertexIndex")),
43  _isolateAgainst(c.getParameter<std::string>("isolateAgainst")) {
44  char buf[50];
45  sprintf(buf, "BarVeto%.2f-EndVeto%.2f", std::sqrt(_vetoConeSize2EB), std::sqrt(_vetoConeSize2EE));
47  auto decimal = _additionalCode.find('.');
48  while (decimal != std::string::npos) {
49  _additionalCode.erase(decimal, 1);
50  decimal = _additionalCode.find('.');
51  }
52  }
55 
57 
58  bool isInIsolationCone(const reco::CandidatePtr& photon, const reco::CandidatePtr& pfCandidate) const final;
59 
62 
63 private:
65  const std::vector<unsigned> _miniAODVertexCodes;
66  const unsigned _vertexIndex;
69 };
70 
72 
74  const reco::CandidatePtr& pfCandidate) const {
75  reco::recoPhotonPtr photonref(photon);
76  pat::PackedCandidatePtr aspacked(pfCandidate);
77  reco::PFCandidatePtr aspf(pfCandidate);
78  const reco::CaloClusterPtr& seed = photonref->superCluster()->seed();
79  bool isEB = (seed->seed().subdetId() == EcalBarrel);
80  const float deltar2 = reco::deltaR2(*photon, *pfCandidate);
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(_vertexIndex)) {
88  is_vertex_allowed = true;
89  break;
90  }
91  }
92  result &= (is_vertex_allowed);
93  }
94  result &= deltar2 > vetoConeSize2 && deltar2 < _coneSize2;
95  } else if (aspf.isNonnull() && aspf.get()) {
96  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 }
IsolationConeDefinitionBase(const edm::ParameterSet &c)
const std::vector< unsigned > _miniAODVertexCodes
edm::Ptr< pat::PackedCandidate > PackedCandidatePtr
Definition: HeavyIon.h:7
void setConsumes(edm::ConsumesCollector) override
PhotonPFIsolationWithConeVeto & operator=(const PhotonPFIsolationWithConeVeto &)=delete
T sqrt(T t)
Definition: SSEVec.h:23
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:148
edm::EDGetTokenT< reco::VertexCollection > _vtxToken
T const * get() const
Returns C++ pointer to the item.
Definition: Ptr.h:141
edm::Ptr< reco::Photon > recoPhotonPtr
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:16
~PhotonPFIsolationWithConeVeto() override
Destructor.
bool isInIsolationCone(const reco::CandidatePtr &photon, const reco::CandidatePtr &pfCandidate) const final
fixed size matrix
#define DEFINE_EDM_PLUGIN(factory, type, name)
PhotonPFIsolationWithConeVeto(const edm::ParameterSet &c)
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29