|
[Rivet-svn] rivet: CMS_2016_I1421646.cc: Add patch from CMS to veto if leadi...Rivet Mercurial rivet at projects.hepforge.orgMon May 7 20:30:02 BST 2018
details: https://rivet.hepforge.org/hg/rivet/rev/f1e7ea3d2ca2 branches: release-2-6-x changeset: 6288:f1e7ea3d2ca2 user: Andy Buckley <andy at insectnation.org> date: Mon May 07 20:27:01 2018 +0100 description: CMS_2016_I1421646.cc: Add patch from CMS to veto if leading jets outside |y| < 2.5, rather than only considering jets in that acceptance. Thanks to CMS and Markus Seidel. diffs (26 lines): --- a/ChangeLog Fri Apr 27 16:03:42 2018 +0100 +++ b/ChangeLog Mon May 07 20:27:01 2018 +0100 @@ -1,3 +1,9 @@ +2018-05-07 Andy Buckley <andy.buckley at cern.ch> + + * CMS_2016_I1421646.cc: Add patch from CMS to veto if leading jets + outside |y| < 2.5, rather than only considering jets in that + acceptance. Thanks to CMS and Markus Seidel. + 2018-04-27 Andy Buckley <andy.buckley at cern.ch> * Tidy keywords and luminosity entries, and add both to BSM search .info files. --- a/analyses/pluginCMS/CMS_2016_I1421646.cc Fri Apr 27 16:03:42 2018 +0100 +++ b/analyses/pluginCMS/CMS_2016_I1421646.cc Mon May 07 20:27:01 2018 +0100 @@ -33,9 +33,10 @@ /// Per-event analysis void analyze(const Event & event) { - const Jets& jets = apply<JetAlg>(event, "antikT").jetsByPt(Cuts::absrap < 2.5 && Cuts::pT > 100*GeV); + const Jets& jets = apply<JetAlg>(event, "antikT").jetsByPt(Cuts::absrap < 5.0 && Cuts::pT > 100*GeV); if (jets.size() < 2) vetoEvent; if (jets[0].pT() < 200*GeV) vetoEvent; + if (jets[0].absrap() > 2.5 || jets[1].absrap() > 2.5) vetoEvent; const double dphi = deltaPhi(jets[0].phi(), jets[1].phi()); _h_deltaPhi.fill(jets[0].pT(), dphi, event.weight());
More information about the Rivet-svn mailing list |