CMS 3D CMS Logo

ISRGammaWeightProducer.cc
Go to the documentation of this file.
1 #include <memory>
2 
5 
8 
10 
15 #include <Math/VectorUtil.h>
16 
17 //
18 // class declaration
19 //
21 public:
23  ~ISRGammaWeightProducer() override;
24 
25  void beginJob() override;
26  void produce(edm::Event&, const edm::EventSetup&) override;
27  void endJob() override;
28 
29 private:
31  std::vector<double> isrBinEdges_;
32  std::vector<double> ptWeights_;
33 };
34 
37  genToken_ = consumes<reco::GenParticleCollection>(
38  pset.getUntrackedParameter<edm::InputTag>("GenTag", edm::InputTag("genParticles")));
39 
40  produces<double>();
41 }
42 
45 
48 
51 
54  if (iEvent.isRealData())
55  return;
56 
58  iEvent.getByToken(genToken_, genParticles);
59  unsigned int gensize = genParticles->size();
60 
61  std::unique_ptr<double> weight(new double);
62 
63  // Set a default weight to start with
64  (*weight) = 1.;
65 
66  // Find the boson at the hard scattering level
67  const reco::GenParticle* boson = nullptr;
68  int parton1Key = -1;
69  int parton2Key = -1;
70  for (unsigned int i = 0; i < gensize; ++i) {
71  const reco::GenParticle& part = (*genParticles)[i];
72  int status = abs(part.status());
73  if (status != 3)
74  continue;
75  if (part.numberOfMothers() != 2)
76  continue;
77  int partId = abs(part.pdgId());
78  if (status == 3 && (partId == 23 || abs(partId) == 24)) {
79  boson = &(*genParticles)[i];
80  parton1Key = part.motherRef(0).key();
81  parton2Key = part.motherRef(1).key();
82  break;
83  }
84  }
85 
86  // Consider only photons near the hard-scattering process
87  const reco::GenParticle* photon = nullptr;
88  if (boson) {
89  for (unsigned int i = 0; i < gensize; ++i) {
90  photon = nullptr;
91  const reco::GenParticle& part = (*genParticles)[i];
92  int status = abs(part.status());
93  if (status != 1)
94  continue;
95  int partId = abs(part.pdgId());
96  if (partId != 22)
97  continue;
98  if (part.numberOfMothers() != 1)
99  continue;
100  int keyM = part.motherRef(0).key();
101  const reco::GenParticle* mother = &(*genParticles)[keyM];
102  if (mother->status() != 3)
103  continue;
104  int mId = mother->pdgId();
105  if (abs(mId) > 6 && mId != 2212)
106  continue;
107  for (unsigned int j = 0; j < mother->numberOfDaughters(); ++j) {
108  int keyD = mother->daughterRef(j).key();
109  if (keyD == parton1Key || keyD == parton2Key) {
110  photon = &part;
111  break;
112  }
113  }
114  if (photon)
115  break;
116  }
117  }
118 
119  if (boson && photon) {
120  math::XYZTLorentzVector smom = boson->p4() + photon->p4();
121  double s = smom.M2();
122  double sqrts = smom.M();
123 
124  // Go to CM using the boost direction of the boson+photon system
125  ROOT::Math::Boost cmboost(smom.BoostToCM());
126  math::XYZTLorentzVector photonCM(cmboost(photon->p4()));
127  double pcostheta = (smom.x() * photonCM.x() + smom.y() * photonCM.y() + smom.z() * photonCM.z()) / smom.P();
128 
129  // Determine kinematic invariants
130  double t = -sqrts * (photonCM.t() - pcostheta);
131  double MV = boson->mass();
132  double u = MV * MV - s - t;
133  (*weight) = 1. - 2 * t * u / (s * s + MV * MV * MV * MV);
134  //printf(">>>>>>>>> s %f t %f u %f, MV %f, weight = %f\n", s, t, u, MV, (*weight));
135  }
136 
137  iEvent.put(std::move(weight));
138 }
139 
muons2muons_cfi.photon
photon
Definition: muons2muons_cfi.py:28
mps_fire.i
i
Definition: mps_fire.py:428
reco::CompositeRefCandidateT::numberOfDaughters
size_t numberOfDaughters() const override
number of daughters
genParticles2HepMC_cfi.genParticles
genParticles
Definition: genParticles2HepMC_cfi.py:4
CompositeCandidate.h
EDProducer.h
reco::LeafCandidate::status
int status() const final
status word
Definition: LeafCandidate.h:180
ISRGammaWeightProducer::ISRGammaWeightProducer
ISRGammaWeightProducer(const edm::ParameterSet &)
Definition: ISRGammaWeightProducer.cc:36
ISRGammaWeightProducer::produce
void produce(edm::Event &, const edm::EventSetup &) override
Definition: ISRGammaWeightProducer.cc:53
reco::GenParticle
Definition: GenParticle.h:21
mps_update.status
status
Definition: mps_update.py:69
edm::EDGetTokenT< reco::GenParticleCollection >
reco::CompositeRefCandidateT::daughterRef
daughters::value_type daughterRef(size_type i) const
reference to daughter at given position
Definition: CompositeRefCandidateT.h:69
mps_merge.weight
weight
Definition: mps_merge.py:88
ISRGammaWeightProducer::isrBinEdges_
std::vector< double > isrBinEdges_
Definition: ISRGammaWeightProducer.cc:31
Booster.h
edm::Handle< reco::GenParticleCollection >
GenParticle.h
MakerMacros.h
alignCSCRings.s
s
Definition: alignCSCRings.py:92
part
part
Definition: HCALResponse.h:20
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
ISRGammaWeightProducer::ptWeights_
std::vector< double > ptWeights_
Definition: ISRGammaWeightProducer.cc:32
ISRGammaWeightProducer::endJob
void endJob() override
Definition: ISRGammaWeightProducer.cc:50
ISRGammaWeightProducer::genToken_
edm::EDGetTokenT< reco::GenParticleCollection > genToken_
Definition: ISRGammaWeightProducer.cc:30
edm::ParameterSet
Definition: ParameterSet.h:47
reco::LeafCandidate::mass
double mass() const final
mass
Definition: LeafCandidate.h:131
Event.h
reco::LeafCandidate::pdgId
int pdgId() const final
PDG identifier.
Definition: LeafCandidate.h:176
AddFourMomenta.h
iEvent
int iEvent
Definition: GenABIO.cc:224
reco::LeafCandidate::p4
const LorentzVector & p4() const final
four-momentum Lorentz vector
Definition: LeafCandidate.h:114
edm::EventSetup
Definition: EventSetup.h:57
ISRGammaWeightProducer
Definition: ISRGammaWeightProducer.cc:20
ISRGammaWeightProducer::beginJob
void beginJob() override
Definition: ISRGammaWeightProducer.cc:47
ISRGammaWeightProducer::~ISRGammaWeightProducer
~ISRGammaWeightProducer() override
Definition: ISRGammaWeightProducer.cc:44
eostools.move
def move(src, dest)
Definition: eostools.py:511
Frameworkfwd.h
math::XYZTLorentzVector
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
reco::CompositeRefCandidateT::motherRef
daughters::value_type motherRef(size_type i=0) const
reference to mother at given position
Definition: CompositeRefCandidateT.h:73
edm::EDProducer
Definition: EDProducer.h:35
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
ParameterSet.h
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
edm::Event
Definition: Event.h:73
submitPVValidationJobs.t
string t
Definition: submitPVValidationJobs.py:644
edm::InputTag
Definition: InputTag.h:15
weight
Definition: weight.py:1
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27