|
[Rivet-svn] rivet: 3 new changesetsRivet Mercurial rivet at projects.hepforge.orgThu Dec 1 23:45:02 GMT 2016
details: https://rivet.hepforge.org/hg/rivet/rev/68801afd9fbb branches: release-2-5-x changeset: 5620:68801afd9fbb user: Andy Buckley <andy at insectnation.org> date: Mon Nov 28 22:24:57 2016 +0000 description: Add LHC Run 2 BSM analyses ATLAS_2016_CONF_2016_037 (3-lepton and same-sign 2-lepton), ATLAS_2016_CONF_2016_054 (1-lepton + jets), ATLAS_2016_CONF_2016_078 (ICHEP jets + MET), ATLAS_2016_CONF_2016_094 (1-lepton + many jets), CMS_2013_I1223519 (alphaT + b-jets), and CMS_2016_PAS_SUS_16_14 (jets + MET). details: https://rivet.hepforge.org/hg/rivet/rev/adac6914d9ce branches: release-2-5-x changeset: 5621:adac6914d9ce user: Andy Buckley <andy at insectnation.org> date: Wed Nov 30 12:29:02 2016 +0000 description: Fix bash bugs in rivet-buildplugin, including fixing the --cmd mode. details: https://rivet.hepforge.org/hg/rivet/rev/7e08817909f7 branches: release-2-5-x changeset: 5622:7e08817909f7 user: Andy Buckley <andy at insectnation.org> date: Thu Dec 01 23:41:49 2016 +0000 description: Adding ALICE_2012_I1116147 (eta and pi0 pTs and ratio) and ATLAS_2011_I929691 (7 TeV jet frag) diffs (truncated from 3016 to 50 lines): --- a/ChangeLog Mon Nov 28 10:19:02 2016 +0000 +++ b/ChangeLog Thu Dec 01 23:41:49 2016 +0000 @@ -1,5 +1,20 @@ +2016-12-01 Andy Buckley <andy.buckley at cern.ch> + + * Adding ALICE_2012_I1116147 (eta and pi0 pTs and ratio) and + ATLAS_2011_I929691 (7 TeV jet frag) + +2016-11-30 Andy Buckley <andy.buckley at cern.ch> + + * Fix bash bugs in rivet-buildplugin, including fixing the --cmd mode. + 2016-11-28 Andy Buckley <andy.buckley at cern.ch> + * Add LHC Run 2 BSM analyses ATLAS_2016_CONF_2016_037 (3-lepton + and same-sign 2-lepton), ATLAS_2016_CONF_2016_054 (1-lepton + + jets), ATLAS_2016_CONF_2016_078 (ICHEP jets + MET), + ATLAS_2016_CONF_2016_094 (1-lepton + many jets), CMS_2013_I1223519 + (alphaT + b-jets), and CMS_2016_PAS_SUS_16_14 (jets + MET). + * Provide convenience reversed-argument versions of apply and declare methods, to allow presentational choice of declare syntax in situations where the projection argument is very long, and --- a/bin/rivet-buildplugin.in Mon Nov 28 10:19:02 2016 +0000 +++ b/bin/rivet-buildplugin.in Thu Dec 01 23:41:49 2016 +0000 @@ -2,10 +2,12 @@ ## -*- sh -*- ## @configure_input@ -## Print help +## Get program name PROG=$(basename $0) -tmp=$(echo $* | egrep -- '--\<help\>|-\<h\>') -if test $# -lt 1 || test -n "$tmp"; then + +## Print help message +tmp=$(echo "$*" | egrep -- '--\<help\>|-\<h\>') +if test -n "$tmp"; then # || test $# -lt 1 echo "$PROG: compilation helper for Rivet analysis plugins" echo echo "Usage: $PROG [<libname>] <source1> [<source2> [compiler_flags] ...]" @@ -101,18 +103,17 @@ ## Link against ROOT if requested -with_root=$(echo $* | egrep -- '--\<with-root\>') +with_root=$(echo "$*" | egrep -- '--\<with-root\>') # echo $with_root -tmp=${@//--with-root/} -set $tmp #< Set positional params
More information about the Rivet-svn mailing list |