ParticlePtGreater

PythiaFilterGammaJetWithBg

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
/** \class PythiaFilterGammaJetWithBg
 *
 *  PythiaFilterGammaJet filter implements generator-level preselections
 *  for photon+jet like events to be used in jet energy calibration.
 *  Ported from fortran code written by V.Konoplianikov.
 *
 * \author A.Ulyanov, ITEP
 *
 ************************************************************/

#include "DataFormats/Common/interface/Handle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/global/EDFilter.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Utilities/interface/ESGetToken.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
#include "SimGeneral/HepPDTRecord/interface/ParticleDataTable.h"
#include "SimGeneral/HepPDTRecord/interface/PDTRecord.h"

#include <cmath>
#include <cstdlib>
#include <list>
#include <string>

class PythiaFilterGammaJetWithBg : public edm::global::EDFilter<> {
public:
  explicit PythiaFilterGammaJetWithBg(const edm::ParameterSet&);

  bool filter(edm::StreamID, edm::Event&, const edm::EventSetup&) const override;

private:
  const edm::EDGetTokenT<edm::HepMCProduct> token_;
  const edm::ESGetToken<ParticleDataTable, PDTRecord> particleDataTableToken_;

  const double etaMax;
  const double ptSeed;
  const double ptMin;
  const double ptMax;
  const double dphiMin;
  const double detaMax;
  const double etaPhotonCut2;

  const double cone;
  const double ebEtaMax;
  const double deltaEB;
  const double deltaEE;
};

namespace {

  double deltaR2(double eta0, double phi0, double eta, double phi) {
    double dphi = phi - phi0;
    if (dphi > M_PI)
      dphi -= 2 * M_PI;
    else if (dphi <= -M_PI)
      dphi += 2 * M_PI;
    return dphi * dphi + (eta - eta0) * (eta - eta0);
  }

  double deltaPhi(double phi0, double phi) {
    double dphi = phi - phi0;
    if (dphi > M_PI)
      dphi -= 2 * M_PI;
    else if (dphi <= -M_PI)
      dphi += 2 * M_PI;
    return dphi;
  }

  class ParticlePtGreater {
  public:
    int operator()(const HepMC::GenParticle* p1, const HepMC::GenParticle* p2) const {
      return p1->momentum().perp() > p2->momentum().perp();
    }
  };
}  // namespace

PythiaFilterGammaJetWithBg::PythiaFilterGammaJetWithBg(const edm::ParameterSet& iConfig)
    : token_(consumes<edm::HepMCProduct>(
          edm::InputTag(iConfig.getUntrackedParameter("moduleLabel", std::string("generator")), "unsmeared"))),
      particleDataTableToken_(esConsumes<ParticleDataTable, PDTRecord>()),
      etaMax(iConfig.getUntrackedParameter<double>("MaxPhotonEta", 2.8)),
      ptSeed(iConfig.getUntrackedParameter<double>("PhotonSeedPt", 5.)),
      ptMin(iConfig.getUntrackedParameter<double>("MinPhotonPt")),
      ptMax(iConfig.getUntrackedParameter<double>("MaxPhotonPt")),
      dphiMin(iConfig.getUntrackedParameter<double>("MinDeltaPhi", -1) / 180 * M_PI),
      detaMax(iConfig.getUntrackedParameter<double>("MaxDeltaEta", 10.)),
      etaPhotonCut2(iConfig.getUntrackedParameter<double>("MinPhotonEtaForwardJet", 1.3)),
      cone(0.5),
      ebEtaMax(1.479),
      deltaEB(0.01745 / 2 * 5),       // delta_eta, delta_phi
      deltaEE(2.93 / 317 / 2 * 5) {}  // delta_x/z, delta_y/z

bool PythiaFilterGammaJetWithBg::filter(edm::StreamID, edm::Event& iEvent, const edm::EventSetup& iSetup) const {
  bool accepted = false;
  edm::Handle<edm::HepMCProduct> evt;
  iEvent.getByToken(token_, evt);

  std::list<const HepMC::GenParticle*> seeds;
  const HepMC::GenEvent* myGenEvent = evt->GetEvent();

  for (HepMC::GenEvent::particle_const_iterator p = myGenEvent->particles_begin(); p != myGenEvent->particles_end();
       ++p) {
    if ((*p)->pdg_id() == 22 && (*p)->status() == 1 && (*p)->momentum().perp() > ptSeed &&
        std::abs((*p)->momentum().eta()) < etaMax)
      seeds.push_back(*p);
  }

  seeds.sort(ParticlePtGreater());

  for (std::list<const HepMC::GenParticle*>::const_iterator is = seeds.begin(); is != seeds.end(); is++) {
    double etaPhoton = (*is)->momentum().eta();
    double phiPhoton = (*is)->momentum().phi();

    HepMC::GenEvent::particle_const_iterator ppp = myGenEvent->particles_begin();
    for (int i = 0; i < 6; ++i)
      ppp++;
    HepMC::GenParticle* particle7 = (*ppp);
    ppp++;
    HepMC::GenParticle* particle8 = (*ppp);

    double dphi7 = std::abs(deltaPhi(phiPhoton, particle7->momentum().phi()));
    double dphi8 = std::abs(deltaPhi(phiPhoton, particle8->momentum().phi()));

    double etaJet = dphi7 > dphi8 ? particle7->momentum().eta() : particle8->momentum().eta();

    double eta1 = etaJet - detaMax;
    double eta2 = etaJet + detaMax;
    if (eta1 > etaPhotonCut2)
      eta1 = etaPhotonCut2;
    if (eta2 < -etaPhotonCut2)
      eta2 = -etaPhotonCut2;
    //    std::cout<<" Etaphoton "<<etaPhoton<<" "<<eta1<<" "<<eta2<<std::endl;
    if (etaPhoton < eta1 || etaPhoton > eta2) {
      //       std::cout<<"Reject eta"<<std::endl;
      continue;
    }
    bool inEB(false);
    double tgx(0);
    double tgy(0);
    if (std::abs(etaPhoton) < ebEtaMax)
      inEB = true;
    else {
      tgx = (*is)->momentum().px() / (*is)->momentum().pz();
      tgy = (*is)->momentum().py() / (*is)->momentum().pz();
    }

    double etPhoton = 0;
    double etPhotonCharged = 0;
    double etCone = 0;
    double etConeCharged = 0;
    double ptMaxHadron = 0;

    for (HepMC::GenEvent::particle_const_iterator p = myGenEvent->particles_begin(); p != myGenEvent->particles_end();
         ++p) {
      if ((*p)->status() != 1)
        continue;
      int apid = std::abs((*p)->pdg_id());
      if (apid > 11 && apid < 21)
        continue;  //get rid of muons and neutrinos
      double eta = (*p)->momentum().eta();
      double phi = (*p)->momentum().phi();
      if (deltaR2(etaPhoton, phiPhoton, eta, phi) > cone * cone)
        continue;
      double pt = (*p)->momentum().perp();

      ParticleDataTable const& pdt = iSetup.getData(particleDataTableToken_);

      int charge3 = ((pdt.particle((*p)->pdg_id()))->ID().threeCharge());

      etCone += pt;
      if (charge3 && pt < 2)
        etConeCharged += pt;

      //select particles matching a crystal array centered on photon
      if (inEB) {
        if (std::abs(eta - etaPhoton) > deltaEB || std::abs(deltaPhi(phi, phiPhoton)) > deltaEB)
          continue;
      } else if (std::abs((*p)->momentum().px() / (*p)->momentum().pz() - tgx) > deltaEE ||
                 std::abs((*p)->momentum().py() / (*p)->momentum().pz() - tgy) > deltaEE)
        continue;

      etPhoton += pt;
      if (charge3 && pt < 2)
        etPhotonCharged += pt;
      if (apid > 100 && apid != 310 && pt > ptMaxHadron)
        ptMaxHadron = pt;
    }

    if (etPhoton < ptMin || etPhoton > ptMax) {
      continue;
    }

    //isolation cuts

    //    double isocut1 = 5+etPhoton/20-etPhoton*etPhoton/1e4;
    double isocut2 = 3 + etPhoton / 20 - etPhoton * etPhoton * etPhoton / 1e6;
    double isocut3 = 4.5 + etPhoton / 40;
    if (etPhoton > 165.) {
      //     isocut1 = 5.+165./20.-165.*165./1e4;
      isocut2 = 3. + 165. / 20. - 165. * 165. * 165. / 1e6;
      isocut3 = 4.5 + 165. / 40.;
    }

    if (etCone - etPhoton > 5 + etPhoton / 20 - etPhoton * etPhoton / 1e4)
      continue;
    if (etCone - etPhoton - (etConeCharged - etPhotonCharged) > isocut2)
      continue;
    if (ptMaxHadron > isocut3)
      continue;

    accepted = true;
    break;

  }  //loop over seeds
  return accepted;
}

DEFINE_FWK_MODULE(PythiaFilterGammaJetWithBg);