00001
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
00015 class CDF_2008_S8095620 : public Analysis {
00016 public:
00017
00018
00019
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
00030
00031
00032 void init() {
00033
00034 const FinalState fs(-3.6, 3.6);
00035 addProjection(fs, "FS");
00036
00037
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
00045 VetoedFinalState vfs(fs);
00046 vfs.addVetoOnThisFinalState(invfs);
00047 addProjection(vfs, "VFS");
00048 addProjection(FastJets(vfs, FastJets::CDFMIDPOINT, 0.7), "Jets");
00049
00050
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
00060 void analyze(const Event& event) {
00061
00062
00063 const InvMassFinalState& invMassFinalState = applyProjection<InvMassFinalState>(event, "INVFS");
00064 const ParticleVector& ZDecayProducts = invMassFinalState.particles();
00065
00066
00067 if (ZDecayProducts.size() < 2) vetoEvent;
00068 _sumWeightSelected += event.weight();
00069
00070 FourMomentum Zmom = ZDecayProducts[0].momentum() + ZDecayProducts[1].momentum();
00071
00072
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
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
00090
00091 for (PseudoJets::const_iterator jt = jets.begin(); jt != jets.end(); ++jt) {
00092
00093 if (jt->perp() > _JetPtCut && fabs(jt->rapidity()) <= _JetEtaCut) {
00094 numJet++;
00095
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 }
00103 if (bjet) {
00104 numBJet++;
00105 _dSdET->fill(jt->perp(),event.weight());
00106 _dSdETA->fill(jt->rapidity(),event.weight());
00107 }
00108 }
00109 }
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
00121 void finalize() {
00122
00123
00124
00125
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
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
00159 AnalysisBuilder<CDF_2008_S8095620> plugin_CDF_2008_S8095620;
00160
00161 }