|
[Rivet-svn] rivet: 2 new changesetsRivet Mercurial rivet at projects.hepforge.orgTue Sep 12 11:00:03 BST 2017
details: https://rivet.hepforge.org/hg/rivet/rev/656503bab2ea branches: multiweight changeset: 6014:656503bab2ea user: David Grellscheid <david.grellscheid at durham.ac.uk> date: Tue Sep 12 10:55:54 2017 +0100 description: Disable BinnedHistogram analyses for now details: https://rivet.hepforge.org/hg/rivet/rev/2e275731dd60 branches: multiweight changeset: 6015:2e275731dd60 user: David Grellscheid <david.grellscheid at durham.ac.uk> date: Tue Sep 12 10:57:51 2017 +0100 description: Disable build of binnedhistogram for now diffs (truncated from 9419 to 50 lines): --- a/analyses/pluginATLAS/ATLAS_2010_S8817804.cc Mon Sep 11 16:14:03 2017 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,128 +0,0 @@ -// -*- C++ -*- - -#include "Rivet/Analysis.hh" -#include "Rivet/Tools/BinnedHistogram.hh" -#include "Rivet/Projections/FastJets.hh" - -namespace Rivet { - - - /// @brief ATLAS inclusive jet pT spectrum, di-jet Mass and di-jet chi - class ATLAS_2010_S8817804: public Analysis { - public: - - ATLAS_2010_S8817804() : Analysis("ATLAS_2010_S8817804") - { } - - - private: - - enum Alg { AKT4=0, AKT6=1 }; - - - public: - - void init() { - FinalState fs; - declare(fs, "FinalState"); - declare(FastJets(fs, FastJets::ANTIKT, 0.6), "AntiKT06"); - declare(FastJets(fs, FastJets::ANTIKT, 0.4), "AntiKT04"); - - double ybins[] = { 0.0, 0.3, 0.8, 1.2, 2.1, 2.8 }; - double massBinsForChi[] = { 340, 520, 800, 1200 }; - - - size_t ptDsOffset(0), massDsOffset(10), chiDsOffset(20); - for (size_t alg = 0; alg < 2; ++alg) { - for (size_t i = 0; i < 5; ++i) { - Histo1DPtr tmp; - book(tmp, i + 1 + ptDsOffset, 1, 1); - _pThistos[alg].addHistogram(ybins[i], ybins[i+1], tmp); - } - ptDsOffset += 5; - - for (size_t i = 0; i < 5; ++i) { - Histo1DPtr tmp; - book(tmp, i + 1 + massDsOffset, 1, 1); - _massVsY[alg].addHistogram(ybins[i], ybins[i+1], tmp);
More information about the Rivet-svn mailing list |