00001
00002 #include "Rivet/Analysis.hh"
00003 #include "Rivet/RivetAIDA.hh"
00004 #include "Rivet/Tools/Logging.hh"
00005 #include "Rivet/Tools/BinnedHistogram.hh"
00006 #include "Rivet/Projections/FinalState.hh"
00007 #include "Rivet/Projections/FastJets.hh"
00008
00009 namespace Rivet {
00010
00011
00012 class D0_2010_S8566488 : public Analysis {
00013 public:
00014
00015
00016
00017
00018
00019 D0_2010_S8566488()
00020 : Analysis("D0_2010_S8566488")
00021 {
00022 setBeams(PROTON, ANTIPROTON);
00023 setNeedsCrossSection(true);
00024 }
00025
00026
00027
00028
00029 public:
00030
00031
00032
00033
00034
00035 void init() {
00036
00037 FinalState fs;
00038 FastJets conefinder(fs, FastJets::D0ILCONE, 0.7);
00039 addProjection(conefinder, "ConeFinder");
00040
00041 _h_m_dijet.addHistogram(0.0, 0.4, bookHistogram1D(1, 1, 1));
00042 _h_m_dijet.addHistogram(0.4, 0.8, bookHistogram1D(2, 1, 1));
00043 _h_m_dijet.addHistogram(0.8, 1.2, bookHistogram1D(3, 1, 1));
00044 _h_m_dijet.addHistogram(1.2, 1.6, bookHistogram1D(4, 1, 1));
00045 _h_m_dijet.addHistogram(1.6, 2.0, bookHistogram1D(5, 1, 1));
00046 _h_m_dijet.addHistogram(2.0, 2.4, bookHistogram1D(6, 1, 1));
00047 }
00048
00049
00050
00051 void analyze(const Event& e) {
00052 const double weight = e.weight();
00053
00054 const Jets& jets = applyProjection<JetAlg>(e, "ConeFinder").jetsByPt(40.0*GeV);
00055 if (jets.size() < 2) vetoEvent;
00056
00057 FourMomentum j0(jets[0].momentum());
00058 FourMomentum j1(jets[1].momentum());
00059 double ymax = std::max(fabs(j0.rapidity()), fabs(j1.rapidity()));
00060 double mjj = FourMomentum(j0+j1).mass();
00061
00062 _h_m_dijet.fill(ymax, mjj/TeV, weight);
00063 }
00064
00065
00066
00067 void finalize() {
00068 double dymax=0.4;
00069 foreach (AIDA::IHistogram1D* hist, _h_m_dijet.getHistograms()) {
00070 scale(hist, crossSection()/sumOfWeights()/dymax);
00071 }
00072 }
00073
00074
00075
00076
00077 private:
00078
00079
00080
00081
00082 private:
00083
00084
00085
00086 BinnedHistogram<double> _h_m_dijet;
00087
00088
00089 };
00090
00091
00092
00093
00094 AnalysisBuilder<D0_2010_S8566488> plugin_D0_2010_S8566488;
00095
00096
00097 }