|
[Rivet-svn] rivet: 8 new changesetsRivet Mercurial rivet at projects.hepforge.orgTue Sep 5 14:00:02 BST 2017
details: https://rivet.hepforge.org/hg/rivet/rev/2572cb9393ee branches: changeset: 5992:2572cb9393ee user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 11:48:33 2017 +0100 description: Fix typo details: https://rivet.hepforge.org/hg/rivet/rev/df7f65dc21a2 branches: changeset: 5993:df7f65dc21a2 user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 11:49:40 2017 +0100 description: Add CMS SUSY 0-lepton search CMS_2017_I1594909 (unofficial implementation, validated vs. published cutflows) details: https://rivet.hepforge.org/hg/rivet/rev/15a91db006ac branches: changeset: 5994:15a91db006ac user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 12:02:15 2017 +0100 description: Add ATLAS_2017_I1598613 J/psi + mu analysis. details: https://rivet.hepforge.org/hg/rivet/rev/567a1c8b79ef branches: changeset: 5995:567a1c8b79ef user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 12:19:48 2017 +0100 description: Add missing analysis files details: https://rivet.hepforge.org/hg/rivet/rev/3eb8dd1e79f7 branches: changeset: 5996:3eb8dd1e79f7 user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 12:20:39 2017 +0100 description: Add vectorMissingEt/Pt and vectorMET/MPT convenience methods to MissingMomentum. details: https://rivet.hepforge.org/hg/rivet/rev/8ece6fd6cfb5 branches: changeset: 5997:8ece6fd6cfb5 user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 13:22:26 2017 +0100 description: Add ATLAS_2017_I1609448 Z->ll + pTmiss analysis. details: https://rivet.hepforge.org/hg/rivet/rev/8521259527da branches: changeset: 5998:8521259527da user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 13:43:58 2017 +0100 description: Add CMS_2017_I1467451 Higgs -> WW -> emu + MET in 8 TeV pp analysis. details: https://rivet.hepforge.org/hg/rivet/rev/04d76548418a branches: changeset: 5999:04d76548418a user: Andy Buckley <andy at insectnation.org> date: Tue Sep 05 13:47:34 2017 +0100 description: Add CMS_2016_PAS_TOP_15_006 jet multiplicity in lepton+jets ttbar at 8 TeV analysis. diffs (truncated from 31100 to 50 lines): --- a/ChangeLog Mon Sep 04 15:52:32 2017 +0100 +++ b/ChangeLog Tue Sep 05 13:47:34 2017 +0100 @@ -1,3 +1,17 @@ +2017-09-05 Andy Buckley <andy.buckley at cern.ch> + + * Add CMS_2016_PAS_TOP_15_006 jet multiplicity in lepton+jets ttbar at 8 TeV analysis. + + * Add CMS_2017_I1467451 Higgs -> WW -> emu + MET in 8 TeV pp analysis. + + * Add ATLAS_2017_I1609448 Z->ll + pTmiss analysis. + + * Add vectorMissingEt/Pt and vectorMET/MPT convenience methods to MissingMomentum. + + * Add ATLAS_2017_I1598613 J/psi + mu analysis. + + * Add CMS SUSY 0-lepton search CMS_2017_I1594909 (unofficial implementation, validated vs. published cutflows) + 2017-09-04 Andy Buckley <andy.buckley at cern.ch> * Change license explicitly to GPLv3, cf. MCnet3 agreement. --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/analyses/pluginATLAS/ATLAS_2017_I1598613.cc Tue Sep 05 13:47:34 2017 +0100 @@ -0,0 +1,270 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/HeavyHadrons.hh" +#include "Rivet/Projections/DressedLeptons.hh" +#include "Rivet/Projections/FinalState.hh" +#include "Rivet/Projections/PromptFinalState.hh" +#include "Rivet/Projections/IdentifiedFinalState.hh" + +namespace Rivet { + + + class ATLAS_2017_I1598613 : public Analysis { + public: + + /// Constructor + ATLAS_2017_I1598613(string name="ATLAS_2017_I1598613") + : Analysis(name) + { + //default to the 3-muon mode: + _mode = 0; + } + + + struct HistoHandler { + Histo1DPtr histo; + Scatter2DPtr scatter; + unsigned int d, x, y;
More information about the Rivet-svn mailing list |