00001
00002 #include "Rivet/Analysis.hh"
00003 #include "Rivet/Tools/Logging.hh"
00004 #include "Rivet/Projections/ChargedFinalState.hh"
00005 #include "Rivet/RivetAIDA.hh"
00006
00007 namespace Rivet {
00008
00009
00010 class STAR_2008_S7993412 : public Analysis {
00011 public:
00012
00013 STAR_2008_S7993412() : Analysis("STAR_2008_S7993412")
00014 {
00015 setBeams(PROTON, PROTON);
00016 }
00017
00018
00019
00020
00021
00022
00023 void init() {
00024 ChargedFinalState fs(-1.0, 1.0, 1.0*GeV);
00025 addProjection(fs, "FS");
00026
00027 _h_Y_jet_trigger = bookProfile1D(1, 1, 1);
00028 _h_Y_jet_associated = bookProfile1D(2, 1, 1);
00029 }
00030
00031
00032
00033 void analyze(const Event& event) {
00034
00035 const FinalState& fs = applyProjection<FinalState>(event, "FS");
00036 if (fs.empty()) {
00037 getLog() << Log::DEBUG << "Skipping event " << event.genEvent().event_number()
00038 << " because no final state found " << endl;
00039 vetoEvent;
00040 }
00041
00042 const double weight = event.weight();
00043
00044 foreach (const Particle& tp, fs.particles()) {
00045 const double triggerpT = tp.momentum().pT();
00046 if (triggerpT >= 2.0 && triggerpT < 5.0) {
00047 int n_associated = 0;
00048 foreach (const Particle& ap, fs.particles()) {
00049 if (!inRange(ap.momentum().pT()/GeV, 1.5, triggerpT)) continue;
00050 if (deltaPhi(tp.momentum().phi(), ap.momentum().phi()) > 1) continue;
00051 if (fabs(tp.momentum().eta() - ap.momentum().eta()) > 1.75) continue;
00052 n_associated += 1;
00053 }
00054
00055
00056 _h_Y_jet_trigger->fill(triggerpT, n_associated, weight);
00057 }
00058 }
00059 }
00060
00061
00062
00063 void finalize() {
00064 }
00065
00066
00067
00068
00069 private:
00070
00071
00072
00073 AIDA::IProfile1D * _h_Y_jet_trigger;
00074 AIDA::IProfile1D * _h_Y_jet_associated;
00075
00076
00077 };
00078
00079
00080
00081
00082 AnalysisBuilder<STAR_2008_S7993412> plugin_STAR_2008_S7993412;
00083
00084 }