CDF_2008_S8095620.cc

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #include "Rivet/Analysis.hh"
00003 #include "Rivet/Tools/Logging.hh"
00004 #include "Rivet/RivetAIDA.hh"
00005 #include "Rivet/Tools/ParticleIdUtils.hh"
00006 #include "Rivet/Projections/FastJets.hh"
00007 #include "Rivet/Projections/FinalState.hh"
00008 #include "Rivet/Projections/VetoedFinalState.hh"
00009 #include "Rivet/Projections/InvMassFinalState.hh"
00010 
00011 namespace Rivet {
00012 
00013 
00014   /// Implementation of CDF Run II Z + b-jet cross section paper
00015   class CDF_2008_S8095620 : public Analysis {
00016   public:
00017      
00018     /// Constructor.
00019     /// jet cuts: |eta| <= 1.5
00020     CDF_2008_S8095620()
00021       : Analysis("CDF_2008_S8095620"),
00022         _Rjet(0.7), _JetPtCut(20.), _JetEtaCut(1.5),
00023         _sumWeightSelected(0.0)
00024     {
00025       setBeams(PROTON, ANTIPROTON);
00026     }
00027  
00028 
00029     /// @name Analysis methods
00030     //@{
00031  
00032     void init() {
00033       // Set up projections
00034       const FinalState fs(-3.6, 3.6);
00035       addProjection(fs, "FS");
00036       // Create a final state with any e+e- or mu+mu- pair with
00037       // invariant mass 76 -> 106 GeV and ET > 20 (Z decay products)
00038       vector<pair<PdgId,PdgId> > vids;
00039       vids.push_back(make_pair(ELECTRON, POSITRON));
00040       vids.push_back(make_pair(MUON, ANTIMUON));
00041       FinalState fs2(-3.6, 3.6);
00042       InvMassFinalState invfs(fs2, vids, 76*GeV, 106*GeV);
00043       addProjection(invfs, "INVFS");
00044       // Make a final state without the Z decay products for jet clustering
00045       VetoedFinalState vfs(fs);
00046       vfs.addVetoOnThisFinalState(invfs);
00047       addProjection(vfs, "VFS");
00048       addProjection(FastJets(vfs, FastJets::CDFMIDPOINT, 0.7), "Jets");
00049 
00050       // Book histograms
00051       _dSdET    = bookHistogram1D(1, 1, 1);
00052       _dSdETA   = bookHistogram1D(2, 1, 1);
00053       _dSdNJet  = bookHistogram1D(3, 1, 1);
00054       _dSdNbJet = bookHistogram1D(4, 1, 1);
00055       _dSdZpT   = bookHistogram1D(5, 1, 1);
00056     }
00057  
00058 
00059     // Do the analysis
00060     void analyze(const Event& event) {
00061       // Check we have an l+l- pair that passes the kinematic cuts
00062       // Get the Z decay products (mu+mu- or e+e- pair)
00063       const InvMassFinalState& invMassFinalState = applyProjection<InvMassFinalState>(event, "INVFS");
00064       const ParticleVector&  ZDecayProducts =  invMassFinalState.particles();
00065    
00066       // make sure we have 2 Z decay products (mumu or ee)
00067       if (ZDecayProducts.size() < 2) vetoEvent;
00068       _sumWeightSelected += event.weight();
00069       // @todo: write out a warning if there are more than two decay products
00070       FourMomentum Zmom = ZDecayProducts[0].momentum() +  ZDecayProducts[1].momentum();
00071    
00072       // Put all b-quarks in a vector
00073       ParticleVector bquarks;
00074       foreach (const GenParticle* p, particles(event.genEvent())) {
00075         if (fabs(p->pdg_id()) == BQUARK) {
00076           bquarks += Particle(*p);
00077         }
00078       }
00079    
00080       // Get jets
00081       const FastJets& jetpro = applyProjection<FastJets>(event, "Jets");
00082       getLog() << Log::DEBUG << "Jet multiplicity before any pT cut = " << jetpro.size() << endl;
00083    
00084       const PseudoJets& jets = jetpro.pseudoJetsByPt();
00085       getLog() << Log::DEBUG << "jetlist size = " << jets.size() << endl;
00086    
00087       int numBJet = 0;
00088       int numJet  = 0;
00089       // for each b-jet plot the ET and the eta of the jet, normalise to the total cross section at the end
00090       // for each event plot N jet and pT(Z), normalise to the total cross section at the end
00091       for (PseudoJets::const_iterator jt = jets.begin(); jt != jets.end(); ++jt) {
00092         // select jets that pass the kinematic cuts
00093         if (jt->perp() > _JetPtCut && fabs(jt->rapidity()) <= _JetEtaCut) {
00094           numJet++;
00095           // does the jet contain a b-quark?
00096           bool bjet = false;
00097           foreach (const Particle& bquark,  bquarks) {
00098             if (deltaR(jt->rapidity(), jt->phi(), bquark.momentum().rapidity(),bquark.momentum().azimuthalAngle()) <= _Rjet) {
00099               bjet = true;
00100               break;
00101             }
00102           } // end loop around b-jets
00103           if (bjet) {
00104             numBJet++;
00105             _dSdET->fill(jt->perp(),event.weight());
00106             _dSdETA->fill(jt->rapidity(),event.weight());
00107           }
00108         }
00109       } // end loop around jets
00110    
00111       if(numJet > 0) _dSdNJet->fill(numJet,event.weight());
00112       if(numBJet > 0) {
00113         _dSdNbJet->fill(numBJet,event.weight());
00114         _dSdZpT->fill(Zmom.pT(),event.weight());
00115       }
00116     }
00117  
00118 
00119 
00120     // Finalize
00121     void finalize() {
00122       // normalise histograms
00123       // scale by 1 / the sum-of-weights of events that pass the Z cuts
00124       // since the cross sections are normalized to the inclusive
00125       // Z cross sections.
00126       double Scale = 1.0;
00127       if (_sumWeightSelected != 0.0) Scale = 1.0/_sumWeightSelected;
00128       _dSdET->scale(Scale);
00129       _dSdETA->scale(Scale);
00130       _dSdNJet->scale(Scale);
00131       _dSdNbJet->scale(Scale);
00132       _dSdZpT->scale(Scale);
00133     }
00134 
00135     //@}
00136 
00137 
00138   private:
00139 
00140     double _Rjet;
00141     double _JetPtCut;
00142     double _JetEtaCut;
00143     double _sumWeightSelected;
00144 
00145     //@{
00146     /// Histograms
00147     AIDA::IHistogram1D* _dSdET;
00148     AIDA::IHistogram1D* _dSdETA;
00149     AIDA::IHistogram1D* _dSdNJet;
00150     AIDA::IHistogram1D* _dSdNbJet;
00151     AIDA::IHistogram1D* _dSdZpT;
00152 
00153     //@}
00154 
00155   };
00156 
00157 
00158   // This global object acts as a hook for the plugin system
00159   AnalysisBuilder<CDF_2008_S8095620> plugin_CDF_2008_S8095620;
00160 
00161 }