00001
00002 #include "Rivet/Analysis.hh"
00003 #include "Rivet/RivetAIDA.hh"
00004 #include "Rivet/Projections/ChargedFinalState.hh"
00005 #include "Rivet/Tools/Logging.hh"
00006
00007 namespace Rivet {
00008
00009
00010 class ATLAS_2010_S8591806 : public Analysis {
00011 public:
00012
00013 ATLAS_2010_S8591806() : Analysis("ATLAS_2010_S8591806"), _Nevt_after_cuts(0.0) {
00014 setNeedsCrossSection(false);
00015 }
00016
00017
00018 void init() {
00019 ChargedFinalState cfs(-2.5, 2.5, 0.5*GeV);
00020 addProjection(cfs, "CFS");
00021
00022 _h_dNch_deta = bookHistogram1D(2, 1, 1);
00023 _h_dNch_dpT = bookHistogram1D(3, 1, 1);
00024 _h_dNevt_dNch = bookHistogram1D(4, 1, 1);
00025 _p_meanpT_Nch = bookProfile1D(5, 1, 1);
00026 }
00027
00028
00029 void analyze(const Event& event) {
00030 const double weight = event.weight();
00031
00032 const ChargedFinalState& charged = applyProjection<ChargedFinalState>(event, "CFS");
00033 if (charged.particles().size()<1) {
00034 vetoEvent;
00035 }
00036 _Nevt_after_cuts += weight;
00037
00038 _h_dNevt_dNch->fill(charged.particles().size(), weight);
00039 foreach (const Particle& p, charged.particles()) {
00040 double pT = p.momentum().pT()/GeV;
00041 _h_dNch_deta->fill(p.momentum().eta(), weight);
00042 _h_dNch_dpT->fill(pT, weight/pT);
00043 _p_meanpT_Nch->fill(charged.particles().size(), pT, weight);
00044 }
00045 }
00046
00047
00048 void finalize() {
00049 double deta = 5.0;
00050 scale(_h_dNch_deta, 1.0/_Nevt_after_cuts);
00051 scale(_h_dNch_dpT, 1.0/_Nevt_after_cuts/2.0/M_PI/deta);
00052 scale(_h_dNevt_dNch, 1.0/_Nevt_after_cuts);
00053 }
00054
00055
00056 private:
00057
00058 AIDA::IHistogram1D* _h_dNch_deta;
00059 AIDA::IHistogram1D* _h_dNch_dpT;
00060 AIDA::IHistogram1D* _h_dNevt_dNch;
00061 AIDA::IProfile1D* _p_meanpT_Nch;
00062
00063 double _Nevt_after_cuts;
00064
00065 };
00066
00067
00068
00069
00070 AnalysisBuilder<ATLAS_2010_S8591806> plugin_ATLAS_2010_S8591806;
00071
00072 }
00073