10 #include "TLorentzVector.h"
12 #include "CLHEP/Units/defs.h"
13 #include "CLHEP/Units/PhysicalConstants.h"
20 wmanager_(iPSet,consumesCollector()),
21 hepmcCollection_(iPSet.getParameter<edm::
InputTag>(
"hepmcCollection")),
22 _flavor(iPSet.getParameter<int>(
"decaysTo")),
23 _name(iPSet.getParameter<std::
string>(
"name"))
42 nEvt = i.
book1D(
"nEvt",
"n analyzed Events", 1, 0., 1.);
58 gamma_energy = i.
book1D(
"gamma_energy",
"photon energy in Z rest frame", 200, 0., 100.);
61 leadpt = i.
book1D(
"leadpt",
"leading lepton pt", 200, 0., 200.);
62 secpt = i.
book1D(
"secpt",
"second lepton pt", 200, 0., 200.);
63 leadeta = i.
book1D(
"leadeta",
"leading lepton eta", 100, -5., 5.);
64 seceta = i.
book1D(
"seceta",
"second lepton eta", 100, -5., 5.);
79 const HepMC::GenEvent *myGenEvent = evt->GetEvent();
87 std::vector<const HepMC::GenParticle*> allproducts;
94 for(HepMC::GenEvent::particle_const_iterator
iter = myGenEvent->particles_begin();
iter != myGenEvent->particles_end(); ++
iter) {
96 if ((*iter)->status()==3 &&
abs((*iter)->pdg_id() == 15) )
return;
98 if((*iter)->status()==requiredstatus) {
100 allproducts.push_back(*
iter);
105 if (allproducts.size() < 2)
return;
111 std::vector<const HepMC::GenParticle*>
products;
112 products.push_back(allproducts.front());
114 double charge1 = PData1->charge();
115 for (
unsigned int i = 1;
i < allproducts.size(); ++
i ){
117 double charge2 = PData2->charge();
118 if (charge1*charge2 < 0) products.push_back(allproducts[
i]);
122 if (products.size() < 2)
return;
124 assert(products[0]->momentum().
perp() >= products[1]->momentum().
perp());
127 if (products[0]->momentum().
perp() < 20.)
return;
130 TLorentzVector lep1(products[0]->momentum().
x(), products[0]->momentum().
y(), products[0]->momentum().
z(), products[0]->momentum().
t());
131 TLorentzVector lep2(products[1]->momentum().
x(), products[1]->momentum().
y(), products[1]->momentum().
z(), products[1]->momentum().
t());
132 TLorentzVector dilepton_mom = lep1 + lep2;
133 TLorentzVector dilepton_andphoton_mom = dilepton_mom;
136 if (dilepton_mom.M() < 60.)
return;
139 std::vector<const HepMC::GenParticle*> fsrphotons;
145 std::vector<TLorentzVector> gammasMomenta;
146 for (
unsigned int ipho = 0; ipho < fsrphotons.size(); ++ipho){
147 TLorentzVector phomom(fsrphotons[ipho]->momentum().
x(), fsrphotons[ipho]->momentum().
y(), fsrphotons[ipho]->momentum().
z(), fsrphotons[ipho]->momentum().
t());
148 dilepton_andphoton_mom += phomom;
150 gammasMomenta.push_back(phomom);
156 ZptLog->
Fill(log10(dilepton_andphoton_mom.Pt()),weight);
173 TVector3 boost = dilepton_andphoton_mom.BoostVector();
177 for (
unsigned int ipho = 0; ipho < gammasMomenta.size(); ++ipho){
178 gammasMomenta[ipho].Boost(boost);
180 std::sort(gammasMomenta.begin(), gammasMomenta.end(), HepMCValidationHelper::GreaterByE<TLorentzVector>);
183 if (gammasMomenta.size() != 0 && dilepton_andphoton_mom.M() > 50.) {
185 double dphi = lep1.DeltaR(gammasMomenta.front()) < lep2.DeltaR(gammasMomenta.front()) ?
186 lep1.DeltaPhi(gammasMomenta.front()) : lep2.DeltaPhi(gammasMomenta.front());
MonitorElement * gamma_energy
MonitorElement * dilep_rap
void findFSRPhotons(const std::vector< const HepMC::GenParticle * > &leptons, const std::vector< const HepMC::GenParticle * > &all, double deltaR, std::vector< const HepMC::GenParticle * > &photons)
virtual void dqmBeginRun(const edm::Run &r, const edm::EventSetup &c) override
virtual void bookHistograms(DQMStore::IBooker &i, edm::Run const &, edm::EventSetup const &) override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
edm::InputTag hepmcCollection_
MonitorElement * cos_theta_gamma_lepton
bool sortByPt(const HepMC::GenParticle *a, const HepMC::GenParticle *b)
void getData(T &iHolder) const
edm::ESHandle< HepPDT::ParticleDataTable > fPDGTable
PDT table.
MonitorElement * dilep_massPeak
virtual ~DrellYanValidation()
virtual void analyze(edm::Event const &, edm::EventSetup const &) override
ESProducts< T, S > products(const T &i1, const S &i2)
Cos< T >::type cos(const T &t)
MonitorElement * book1D(Args &&...args)
Abs< T >::type abs(const T &t)
MonitorElement * Zdaughters
MonitorElement * dilep_pt
HepPDT::ParticleData ParticleData
void setCurrentFolder(const std::string &fullpath)
edm::EDGetTokenT< edm::HepMCProduct > hepmcCollectionToken_
std::string _name
decay flavor name
T perp() const
Magnitude of transverse component.
MonitorElement * dilep_mass
MonitorElement * ZmassPeak
MonitorElement * dilep_ptLog
double weight(const edm::Event &)
DrellYanValidation(const edm::ParameterSet &)