|
[Rivet-svn] rivet: 2 new changesetsRivet Mercurial rivet at projects.hepforge.orgMon Oct 2 11:15:04 BST 2017
details: https://rivet.hepforge.org/hg/rivet/rev/ae5a46c35cc5 branches: changeset: 6056:ae5a46c35cc5 user: David Grellscheid <david.grellscheid at durham.ac.uk> date: Mon Oct 02 11:40:48 2017 +0200 description: Distcheck works details: https://rivet.hepforge.org/hg/rivet/rev/7affb72c33f8 branches: multiweight changeset: 6057:7affb72c33f8 user: David Grellscheid <david.grellscheid at durham.ac.uk> date: Mon Oct 02 11:49:27 2017 +0200 description: Merged from default to get distcheck working diffs (truncated from 65394 to 50 lines): --- a/analyses/Makefile.am Fri Sep 29 08:53:18 2017 +0200 +++ b/analyses/Makefile.am Mon Oct 02 11:49:27 2017 +0200 @@ -21,7 +21,7 @@ RivetHERAAnalyses.so : $(shell ls $(srcdir)/pluginHERA/*.cc) RivetLEPAnalyses.so : $(shell ls $(srcdir)/pluginLEP/*.cc) RivetLHCbAnalyses.so : $(shell ls $(srcdir)/pluginLHCb/*.cc) -RivetLHCfAnalyses.so : $(shell ls $(srcdir)/pluginLHCf/*.cc) +## RivetLHCfAnalyses.so : $(shell ls $(srcdir)/pluginLHCf/*.cc) RivetMCAnalyses.so : $(shell ls $(srcdir)/pluginMC/*.cc) RivetMiscAnalyses.so : $(shell ls $(srcdir)/pluginMisc/*.cc) RivetPetraAnalyses.so: $(shell ls $(srcdir)/pluginPetra/*.cc) @@ -46,6 +46,6 @@ uninstall-local: cd $(DESTDIR)$(libdir) && rm -f $(PLUGIN_LIBS) @echo "Uninstalling analysis data files..." - @cd $(DESTDIR)$(pkgdatadir) && for i in $(PLUGIN_DATAFILES); do ds="$$ds `basename $$i`"; done && rm -f $$dd + rm -f $(DESTDIR)$(pkgdatadir)/*.{info,plot,yoda} endif --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/analyses/binnedhistopluginLHCf/LHCF_2012_I1115479.cc.binnedhisto Mon Oct 02 11:49:27 2017 +0200 @@ -0,0 +1,64 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/UnstableFinalState.hh" +#include "Rivet/Tools/BinnedHistogram.hh" + +namespace Rivet { + + + class LHCF_2012_I1115479 : public Analysis { + public: + + LHCF_2012_I1115479() + : Analysis("LHCF_2012_I1115479") + { } + + + public: + + void init() { + declare(UnstableFinalState(),"UFS"); + + {Histo1DPtr tmp; _binnedHistos_y_pT.addHistogram( 8.9, 9.0, book(tmp, 1, 1, 1));} + {Histo1DPtr tmp; _binnedHistos_y_pT.addHistogram( 9.0, 9.2, book(tmp, 2, 1, 1));} + {Histo1DPtr tmp; _binnedHistos_y_pT.addHistogram( 9.2, 9.4, book(tmp, 3, 1, 1));} + {Histo1DPtr tmp; _binnedHistos_y_pT.addHistogram( 9.4, 9.6, book(tmp, 4, 1, 1));} + {Histo1DPtr tmp; _binnedHistos_y_pT.addHistogram( 9.6, 10.0, book(tmp, 5, 1, 1));} + {Histo1DPtr tmp; _binnedHistos_y_pT.addHistogram(10.0, 11.0, book(tmp, 6, 1, 1));} + }
More information about the Rivet-svn mailing list |