D0_2009_S8349509.cc
Go to the documentation of this file.
00001 // -*- C++ -*- 00002 #include "Rivet/Analysis.hh" 00003 #include "Rivet/Projections/FinalState.hh" 00004 #include "Rivet/Projections/ZFinder.hh" 00005 #include "Rivet/Projections/FastJets.hh" 00006 00007 namespace Rivet { 00008 00009 00010 /// @brief D0 Z+jets angular distributions 00011 class D0_2009_S8349509 : public Analysis { 00012 public: 00013 00014 /// @name Constructors etc. 00015 //@{ 00016 00017 /// Constructor 00018 D0_2009_S8349509() 00019 : Analysis("D0_2009_S8349509"), 00020 _inclusive_Z_sumofweights(0) 00021 { } 00022 00023 //@} 00024 00025 00026 /// @name Analysis methods 00027 //@{ 00028 00029 /// Book histograms 00030 void init() { 00031 Cut cut = Cuts::abseta < 1.7 && Cuts::pT > 15*GeV; 00032 ZFinder zfinder(FinalState(), cut, PID::MUON, 65*GeV, 115*GeV, 0.2, ZFinder::NOCLUSTER, ZFinder::TRACK); 00033 addProjection(zfinder, "ZFinder"); 00034 00035 FastJets conefinder(zfinder.remainingFinalState(), FastJets::D0ILCONE, 0.5); 00036 addProjection(conefinder, "ConeFinder"); 00037 00038 _h_dphi_jet_Z25 = bookHisto1D(1, 1, 1); 00039 _h_dphi_jet_Z45 = bookHisto1D(2, 1, 1); 00040 00041 _h_dy_jet_Z25 = bookHisto1D(3, 1, 1); 00042 _h_dy_jet_Z45 = bookHisto1D(4, 1, 1); 00043 00044 _h_yboost_jet_Z25 = bookHisto1D(5, 1, 1); 00045 _h_yboost_jet_Z45 = bookHisto1D(6, 1, 1); 00046 00047 _h_dphi_jet_Z25_xs = bookHisto1D(1, 1, 2); 00048 _h_dphi_jet_Z45_xs = bookHisto1D(2, 1, 2); 00049 00050 _h_dy_jet_Z25_xs = bookHisto1D(3, 1, 2); 00051 _h_dy_jet_Z45_xs = bookHisto1D(4, 1, 2); 00052 00053 _h_yboost_jet_Z25_xs = bookHisto1D(5, 1, 2); 00054 _h_yboost_jet_Z45_xs = bookHisto1D(6, 1, 2); 00055 00056 _inclusive_Z_sumofweights = 0; 00057 } 00058 00059 00060 void analyze(const Event& event) { 00061 const double weight = event.weight(); 00062 00063 const ZFinder& zfinder = applyProjection<ZFinder>(event, "ZFinder"); 00064 if (zfinder.bosons().size() == 1) { 00065 // count inclusive sum of weights for histogram normalisation 00066 _inclusive_Z_sumofweights += weight; 00067 00068 const FourMomentum& zmom = zfinder.bosons()[0].momentum(); 00069 if (zmom.pT() < 25*GeV) vetoEvent; 00070 00071 Jets jets; 00072 foreach (const Jet& j, applyProjection<JetAlg>(event, "ConeFinder").jetsByPt(20*GeV)) { 00073 if (j.abseta() < 2.8) { 00074 jets.push_back(j); 00075 break; 00076 } 00077 } 00078 00079 // Return if there are no jets: 00080 if (jets.size() < 1) { 00081 MSG_DEBUG("Skipping event " << numEvents() << " because no jets pass cuts "); 00082 vetoEvent; 00083 } 00084 00085 const FourMomentum& jetmom = jets[0].momentum(); 00086 const double yZ = zmom.rapidity(); 00087 const double yjet = jetmom.rapidity(); 00088 const double dphi = deltaPhi(zmom, jetmom); 00089 const double dy = deltaRap(zmom, jetmom); 00090 const double yboost = fabs(yZ+yjet)/2; 00091 00092 if (zmom.pT() > 25*GeV) { 00093 _h_dphi_jet_Z25->fill(dphi, weight); 00094 _h_dy_jet_Z25->fill(dy, weight); 00095 _h_yboost_jet_Z25->fill(yboost, weight); 00096 _h_dphi_jet_Z25_xs->fill(dphi, weight); 00097 _h_dy_jet_Z25_xs->fill(dy, weight); 00098 _h_yboost_jet_Z25_xs->fill(yboost, weight); 00099 } 00100 if (zmom.pT() > 45*GeV) { 00101 _h_dphi_jet_Z45->fill(dphi, weight); 00102 _h_dy_jet_Z45->fill(dy, weight); 00103 _h_yboost_jet_Z45->fill(yboost, weight); 00104 _h_dphi_jet_Z45_xs->fill(dphi, weight); 00105 _h_dy_jet_Z45_xs->fill(dy, weight); 00106 _h_yboost_jet_Z45_xs->fill(yboost, weight); 00107 } 00108 } 00109 00110 } 00111 00112 00113 void finalize() { 00114 if (_inclusive_Z_sumofweights == 0) return; 00115 scale(_h_dphi_jet_Z25, 1/_inclusive_Z_sumofweights); 00116 scale(_h_dphi_jet_Z45, 1/_inclusive_Z_sumofweights); 00117 scale(_h_dy_jet_Z25, 1/_inclusive_Z_sumofweights); 00118 scale(_h_dy_jet_Z45, 1/_inclusive_Z_sumofweights); 00119 scale(_h_yboost_jet_Z25, 1/_inclusive_Z_sumofweights); 00120 scale(_h_yboost_jet_Z45, 1/_inclusive_Z_sumofweights); 00121 00122 scale(_h_dphi_jet_Z25_xs, crossSectionPerEvent()); 00123 scale(_h_dphi_jet_Z45_xs, crossSectionPerEvent()); 00124 scale(_h_dy_jet_Z25_xs, crossSectionPerEvent()); 00125 scale(_h_dy_jet_Z45_xs, crossSectionPerEvent()); 00126 scale(_h_yboost_jet_Z25_xs, crossSectionPerEvent()); 00127 scale(_h_yboost_jet_Z45_xs, crossSectionPerEvent()); 00128 } 00129 00130 //@} 00131 00132 private: 00133 00134 // Data members like post-cuts event weight counters go here 00135 00136 private: 00137 00138 /// @name Histograms (normalised) 00139 //@{ 00140 Histo1DPtr _h_dphi_jet_Z25; 00141 Histo1DPtr _h_dphi_jet_Z45; 00142 00143 Histo1DPtr _h_dy_jet_Z25; 00144 Histo1DPtr _h_dy_jet_Z45; 00145 00146 Histo1DPtr _h_yboost_jet_Z25; 00147 Histo1DPtr _h_yboost_jet_Z45; 00148 //@} 00149 00150 /// @name Histograms (absolute cross sections) 00151 //@{ 00152 Histo1DPtr _h_dphi_jet_Z25_xs; 00153 Histo1DPtr _h_dphi_jet_Z45_xs; 00154 00155 Histo1DPtr _h_dy_jet_Z25_xs; 00156 Histo1DPtr _h_dy_jet_Z45_xs; 00157 00158 Histo1DPtr _h_yboost_jet_Z25_xs; 00159 Histo1DPtr _h_yboost_jet_Z45_xs; 00160 //@} 00161 00162 double _inclusive_Z_sumofweights; 00163 00164 }; 00165 00166 00167 00168 // The hook for the plugin system 00169 DECLARE_RIVET_PLUGIN(D0_2009_S8349509); 00170 00171 } Generated on Thu Mar 10 2016 08:29:49 for The Rivet MC analysis system by ![]() |