rivet is hosted by Hepforge, IPPP Durham
SFM_1984_S1178091.cc
Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #include "Rivet/Analysis.hh"
00003 #include "Rivet/Projections/ChargedFinalState.hh"
00004 
00005 namespace Rivet {
00006 
00007 
00008   /// @brief SFM charged multiplicities in NSD and inelastic minbias events
00009   class SFM_1984_S1178091 : public Analysis {
00010   public:
00011 
00012     /// Constructor
00013     SFM_1984_S1178091() : Analysis("SFM_1984_S1178091") {
00014       _sumW = 0;
00015       _sumWDiff = 0;
00016     }
00017 
00018 
00019     /// @name Analysis methods
00020     //@{
00021 
00022     void init() {
00023       // Projections
00024       /// @todo Corrected to full phase space?
00025       addProjection(ChargedFinalState(), "FS");
00026 
00027       // Histograms
00028       if (fuzzyEquals(sqrtS()/GeV, 30.4, 1E-1)) {
00029         _hist_multiplicity_inel = bookHisto1D(1, 1, 1);
00030         _hist_multiplicity_nsd = bookHisto1D(2, 1, 1);
00031       } else if (fuzzyEquals(sqrtS(), 44.5, 1E-1)) {
00032         _hist_multiplicity_inel = bookHisto1D(1, 1, 2);
00033         _hist_multiplicity_nsd = bookHisto1D(2, 1, 2);
00034       } else if (fuzzyEquals(sqrtS(), 52.2, 1E-1)) {
00035         _hist_multiplicity_inel = bookHisto1D(1, 1, 3);
00036         _hist_multiplicity_nsd = bookHisto1D(2, 1, 3);
00037       } else if (fuzzyEquals(sqrtS(), 62.2, 1E-1)) {
00038         _hist_multiplicity_inel = bookHisto1D(1, 1, 4);
00039         _hist_multiplicity_nsd = bookHisto1D(2, 1, 4);
00040       }
00041 
00042     }
00043 
00044 
00045     // Analyse each event
00046     void analyze(const Event& event) {
00047       const double weight = event.weight();
00048       const ChargedFinalState& fs = applyProjection<ChargedFinalState>(event, "FS");
00049       const size_t numParticles = fs.particles().size();
00050 
00051       /// @todo Any trigger?
00052 
00053       // Decide whether event is of diffractive type or not
00054       // @todo It is not so clear in the paper how this distinction is made.
00055       // They seem to require either exactly one particle with Feynman x larger
00056       // than 0.8 to call an event diffractive or that there are no tracks
00057       // reconstructed in either of the two hemispheres. For the latter
00058       // they require in addition also the number of charged particles
00059       // to be smaller than 8.
00060       int n_left(0), n_right(0), n_large_x(0);
00061       foreach (const Particle& p, fs.particles()) {
00062         // Calculate the particles' Feynman x
00063         const double x_feyn = 2.0 * fabs(p.momentum().pz())/sqrtS();
00064         if (x_feyn > 0.8 ) n_large_x += 1;
00065 
00066         // Pseudorapidity
00067         const double eta = p.momentum().pseudorapidity();
00068         if (eta > 0.0) n_right += 1;
00069         else if (eta < 0.0) n_left += 1;
00070       }
00071       MSG_DEBUG("N_left: " << n_left << ", "
00072                 << "N_right: " << n_right << ", "
00073                 << "N_large_x: " << n_large_x);
00074 
00075       // Not sure about the "=="!
00076       // @todo Not sure about the "== 1", the paper says no charged particle
00077       // that was reconstructed so the incoming protons must run down the beam
00078       // pipe. Since we look a the complete final state here no particle being
00079       // reconstructed should be equal to one particle (proton) in each
00080       // hemisphere.  The "< 8" is also not certain.
00081       const bool isDiffractive = (n_large_x == 1) ||
00082         ((n_left == 1 || n_right == 1) && numParticles < 8 );
00083 
00084       // Increment weight counters
00085       _sumW += weight;
00086       _sumWDiff += weight;
00087 
00088       // Fill histos of charged multiplicity distributions
00089       _hist_multiplicity_inel->fill(numParticles, weight);
00090       if (!isDiffractive) _hist_multiplicity_nsd->fill(numParticles, weight);
00091     }
00092 
00093 
00094     void finalize() {
00095       scale(_hist_multiplicity_inel, 1.0/_sumWDiff);
00096       scale(_hist_multiplicity_nsd, 1.0/_sumW );
00097     }
00098 
00099     //@}
00100 
00101 
00102   private:
00103 
00104     /// @name Weight counters
00105     //@{
00106     double _sumW, _sumWDiff;
00107     //@}
00108 
00109     /// @name Histograms
00110     //@{
00111     Histo1DPtr _hist_multiplicity_inel;
00112     Histo1DPtr _hist_multiplicity_nsd;
00113     //@}
00114 
00115   };
00116 
00117 
00118 
00119   // The hook for the plugin system
00120   DECLARE_RIVET_PLUGIN(SFM_1984_S1178091);
00121 
00122 }