STAR_2009_UE_HELEN.cc

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #include "Rivet/Analysis.hh"
00003 #include "Rivet/RivetAIDA.hh"
00004 #include "Rivet/Tools/Logging.hh"
00005 #include "Rivet/Projections/ChargedFinalState.hh"
00006 #include "Rivet/Projections/NeutralFinalState.hh"
00007 #include "Rivet/Projections/MergedFinalState.hh"
00008 #include "Rivet/Projections/VetoedFinalState.hh"
00009 #include "Rivet/Projections/FastJets.hh"
00010 #include "fastjet/SISConePlugin.hh"
00011 
00012 namespace Rivet {
00013 
00014 
00015   /* STAR underlying event
00016    * @author Hendrik Hoeth
00017    */
00018   class STAR_2009_UE_HELEN : public Analysis {
00019   public:
00020 
00021     /// Constructor
00022     STAR_2009_UE_HELEN()
00023       : Analysis("STAR_2009_UE_HELEN")
00024     {
00025       setBeams(PROTON, PROTON);
00026     }
00027 
00028 
00029     /// @name Analysis methods
00030     //@{
00031 
00032     void init() {
00033       // Charged final state, |eta|<1, pT>0.2GeV
00034       const ChargedFinalState cfs(-1.0, 1.0, 0.2*GeV);
00035       addProjection(cfs, "CFS");
00036 
00037       // Neutral final state, |eta|<1, ET>0.2GeV (needed for the jets)
00038       const NeutralFinalState nfs(-1.0, 1.0, 0.2*GeV);
00039       addProjection(nfs, "NFS");
00040 
00041       // STAR can't see neutrons and K^0_L
00042       VetoedFinalState vfs(nfs);
00043       vfs.vetoNeutrinos();
00044       vfs.addVetoPairId(K0L);
00045       vfs.addVetoPairId(NEUTRON);
00046       addProjection(vfs, "VFS");
00047 
00048       // Jets are reconstructed from charged and neutral particles,
00049       // and the cuts are different (pT vs. ET), so we need to merge them.
00050       const MergedFinalState jfs(cfs, vfs);
00051       addProjection(jfs, "JFS");
00052 
00053       // SISCone, R = 0.7, overlap_threshold = 0.75
00054       addProjection(FastJets(jfs, FastJets::SISCONE, 0.7), "AllJets");
00055 
00056       // Book histograms
00057       _hist_pmaxnchg   = bookProfile1D( 1, 1, 1);
00058       _hist_pminnchg   = bookProfile1D( 2, 1, 1);
00059       _hist_anchg      = bookProfile1D( 3, 1, 1);
00060     }
00061 
00062 
00063     // Do the analysis
00064     void analyze(const Event& e) {
00065       const FinalState& cfs = applyProjection<ChargedFinalState>(e, "CFS");
00066       if (cfs.particles().size() < 1) {
00067         getLog() << Log::DEBUG << "Failed multiplicity cut" << endl;
00068         vetoEvent;
00069       }
00070 
00071       const Jets& alljets = applyProjection<FastJets>(e, "AllJets").jetsByPt();
00072       getLog() << Log::DEBUG << "Total jet multiplicity = " << alljets.size() << endl;
00073 
00074       // The jet acceptance region is |eta|<(1-R)=0.3  (with R = jet radius)
00075       // Jets also must have a neutral energy fraction of < 0.7
00076       Jets jets;
00077       foreach (const Jet jet, alljets) {
00078         if (jet.neutralEnergy() < 0.7 && fabs(jet.momentum().eta()) < 0.3)
00079           jets.push_back(jet);
00080       }
00081 
00082       // This analysis requires a di-jet like event.
00083       // WARNING: There is more data in preparation, some of which
00084       //          does _not_ have this constraint!
00085       if (jets.size() != 2) {
00086         getLog() << Log::DEBUG << "Failed jet multiplicity cut" << endl;
00087         vetoEvent;
00088       }
00089 
00090       // The di-jet constraints in this analysis are:
00091       // - 2 and only 2 jets in the acceptance region
00092       // - delta(Phi) between the jets is > 150 degrees
00093       // - Pt_awayjet/Pt_towards_jet > 0.7
00094       if (deltaPhi(jets[0].momentum().phi(), jets[1].momentum().phi()) <= 5*PI/6 ||
00095           jets[1].momentum().pT()/jets[0].momentum().pT() <= 0.7)
00096       {
00097         getLog() << Log::DEBUG << "Failed di-jet criteria" << endl;
00098         vetoEvent;
00099       }
00100 
00101       // Now lets start ...
00102       const double jetphi = jets[0].momentum().phi();
00103       const double jetpT  = jets[0].momentum().pT();
00104 
00105       // Get the event weight
00106       const double weight = e.weight();
00107 
00108       size_t numTrans1(0), numTrans2(0), numAway(0);
00109 
00110       // Calculate all the charged stuff
00111       foreach (const Particle& p, cfs.particles()) {
00112         const double dPhi = deltaPhi(p.momentum().phi(), jetphi);
00113         const double pT = p.momentum().pT();
00114         const double phi = p.momentum().phi();
00115         double rotatedphi = phi - jetphi;
00116         while (rotatedphi < 0) rotatedphi += 2*PI;
00117 
00118         // @TODO: WARNING: The following lines are a hack to correct
00119         //        for the STAR tracking efficiency. Once we have the
00120         //        final numbers (corrected to hadron level), we need
00121         //        to remove this!!!!
00122         if (1.0*rand()/RAND_MAX > 0.87834-exp(-1.48994-0.788432*pT)) {
00123           continue;
00124         }
00125         // -------- end of efficiency hack -------
00126 
00127         if (dPhi < PI/3.0) {
00128           // toward
00129         }
00130         else if (dPhi < 2*PI/3.0) {
00131           if (rotatedphi <= PI) {
00132             ++numTrans1;
00133           }
00134           else {
00135             ++numTrans2;
00136           }
00137         }
00138         else {
00139           ++numAway;
00140         }
00141       } // end charged particle loop
00142 
00143       // Fill the histograms
00144       _hist_pmaxnchg->fill(jetpT, (numTrans1>numTrans2 ? numTrans1 : numTrans2)/(2*PI/3), weight);
00145       _hist_pminnchg->fill(jetpT, (numTrans1<numTrans2 ? numTrans1 : numTrans2)/(2*PI/3), weight);
00146       _hist_anchg->fill(jetpT, numAway/(PI*0.7*0.7), weight); // jet area = pi*R^2
00147 
00148     }
00149 
00150 
00151     void finalize() {
00152       //
00153     }
00154 
00155     //@}
00156 
00157 
00158   private:
00159 
00160     AIDA::IProfile1D *_hist_pmaxnchg;
00161     AIDA::IProfile1D *_hist_pminnchg;
00162     AIDA::IProfile1D *_hist_anchg;
00163 
00164   };
00165 
00166 
00167   // This global object acts as a hook for the plugin system
00168   AnalysisBuilder<STAR_2009_UE_HELEN> plugin_STAR_2009_UE_HELEN;
00169 
00170 }