|
[Rivet-svn] r1676 - trunk/src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgMon Jul 13 16:30:45 BST 2009
Author: buckley Date: Mon Jul 13 16:30:44 2009 New Revision: 1676 Log: Tidying up phase space element definition Modified: trunk/src/Analyses/CDF_2009_S8233977.cc Modified: trunk/src/Analyses/CDF_2009_S8233977.cc ============================================================================== --- trunk/src/Analyses/CDF_2009_S8233977.cc Mon Jul 13 14:09:51 2009 (r1675) +++ trunk/src/Analyses/CDF_2009_S8233977.cc Mon Jul 13 16:30:44 2009 (r1676) @@ -67,9 +67,13 @@ //// FIXME: The pT and sum(ET) distributions look slightly different from //// Niccolo's Monte Carlo plots. Still waiting for his answer. - const double apT = 1.1752012 * pT; - const double root = sqrt(0.019479785*GeV*GeV + 2.1752012*pT*pT); - _hist_pt->fill(pT, weight/(pT*2*M_PI*std::log((root+apT)/(root-apT)))); + const double sinh1 = 1.1752012; + const double apT = sinh1 * pT; + const double mPi = 139.57*MeV; + const double root = sqrt(mPi*mPi + (1+sinh1)*pT*pT); + const double dy = std::log((root+apT)/(root-apT)); + const double dphi = 2*M_PI; + _hist_pt->fill(pT, weight/(pT*dphi*dy)); } double sumEt = 0.; foreach (const Particle& p, fs.particles()) {
More information about the Rivet-svn mailing list |