00001
00002 #include "Rivet/Analysis.hh"
00003 #include "Rivet/RivetAIDA.hh"
00004 #include "Rivet/Tools/Logging.hh"
00005 #include "Rivet/Projections/VetoedFinalState.hh"
00006 #include "Rivet/Projections/TotalVisibleMomentum.hh"
00007 #include "Rivet/Projections/FastJets.hh"
00008
00009 namespace Rivet {
00010
00011
00012
00013
00014
00015
00016 class CDF_1994_S2952106 : public Analysis {
00017 public:
00018
00019
00020 CDF_1994_S2952106() : Analysis("CDF_1994_S2952106")
00021 {
00022 setBeams(PROTON, ANTIPROTON);
00023
00024 }
00025
00026
00027
00028
00029
00030 void init() {
00031 const FinalState fs(-4.2, 4.2);
00032 addProjection(fs, "FS");
00033 addProjection(FastJets(fs, FastJets::CDFJETCLU, 0.7), "ConeJets");
00034 addProjection(TotalVisibleMomentum(fs), "CalMET");
00035
00036
00037 VetoedFinalState vfs(fs);
00038 vfs.vetoNeutrinos();
00039 vfs.addVetoPairDetail(MUON, 1.0*GeV, MAXDOUBLE);
00040 addProjection(vfs, "VFS");
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052 _histJet1Et = bookHistogram1D("Jet1Et", 40, 0., 500.);
00053 _histJet2Et = bookHistogram1D("Jet2Et", 40, 0., 500.);
00054 _histR23 = bookHistogram1D("R23", 50, 0., 5.);
00055 _histJet3eta = bookHistogram1D("Jet3eta", 42, -4., 4.);
00056
00057
00058 _histAlpha = bookHistogram1D("alpha", 42, -PI/2., PI/2.);
00059
00060
00061
00062
00063
00064
00065 _histAlpaIdeal = bookHistogram1D("alphaIdeal", 42, -PI/2., PI/2.);
00066
00067
00068 _histAlpaCDF = bookHistogram1D("alphaCDF", 42, -PI/2., PI/2.);
00069
00070
00071 _histR23Ideal = bookHistogram1D("R23Ideal", 50, 0., 5.);
00072
00073
00074 _histR23CDF = bookHistogram1D("R23CDF", 50, 0., 5.);
00075
00076
00077 _histJet3etaIdeal = bookHistogram1D("Jet3etaIdeal", 42, -4., 4.);
00078
00079
00080 _histJet3etaCDF = bookHistogram1D("Jet3etaCDF", 42, -4., 4.);
00081 }
00082
00083
00084
00085
00086 void analyze(const Event & event) {
00087 const Jets jets = applyProjection<FastJets>(event, "ConeJets").jetsByPt();
00088 getLog() << Log::DEBUG << "Jet multiplicity before any cuts = " << jets.size() << endl;
00089
00090
00091 const TotalVisibleMomentum& caloMissEt = applyProjection<TotalVisibleMomentum>(event, "CalMET");
00092 getLog() << Log::DEBUG << "Missing pT = " << caloMissEt.momentum().pT()/GeV << " GeV" << endl;
00093 if ((caloMissEt.momentum().pT()/GeV)/sqrt(caloMissEt.scalarET()/GeV) > 6.0) vetoEvent;
00094
00095
00096 if (jets.size() < 3) vetoEvent;
00097 if (jets[0].momentum().pT() < 100*GeV) vetoEvent;
00098
00099
00100 FourMomentum pj1(jets[0].momentum()), pj2(jets[1].momentum()), pj3(jets[2].momentum());
00101 if (fabs(pj1.eta()) > 0.7 || fabs(pj2.eta()) > 0.7) vetoEvent;
00102 getLog() << Log::DEBUG << "Jet 1 & 2 eta, pT requirements fulfilled" << endl;
00103
00104 if (deltaPhi(pj1.phi(), pj2.phi()) > PI/18.0) vetoEvent;
00105 getLog() << Log::DEBUG << "Jet 1 & 2 phi requirement fulfilled" << endl;
00106
00107 const double weight = event.weight();
00108 _histJet1Et->fill(pj1.pT(), weight);
00109 _histJet2Et->fill(pj2.pT(), weight);
00110 _histR23->fill(deltaR(pj2, pj3), weight);
00111 _histJet3eta->fill(pj3.eta(), weight);
00112
00113
00114 if (pj3.pT()/GeV < 10.0) vetoEvent;
00115 getLog() << Log::DEBUG << "3rd jet passes alpha histo pT cut" << endl;
00116
00117
00118 const double dPhi = deltaPhi(pj3.phi(), pj2.phi());
00119 const double dH = sign(pj2.eta()) * (pj3.eta() - pj2.eta());
00120 const double alpha = atan(dH/dPhi);
00121 _histAlpha->fill(alpha, weight);
00122 }
00123
00124
00125
00126 void finalize() {
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143 normalize(_histJet1Et);
00144 normalize(_histJet2Et);
00145 normalize(_histR23);
00146 normalize(_histJet3eta);
00147 normalize(_histAlpha);
00148 }
00149
00150
00151
00152
00153 private:
00154
00155
00156
00157
00158
00159 AIDA::IHistogram1D* _histJet1Et;
00160 AIDA::IHistogram1D* _histJet2Et;
00161 AIDA::IHistogram1D* _histR23;
00162 AIDA::IHistogram1D* _histJet3eta;
00163 AIDA::IHistogram1D* _histAlpha;
00164
00165 AIDA::IHistogram1D* _histAlpaIdeal;
00166 AIDA::IHistogram1D* _histAlpaCDF;
00167 AIDA::IHistogram1D* _histR23Ideal;
00168 AIDA::IHistogram1D* _histR23CDF;
00169 AIDA::IHistogram1D* _histJet3etaIdeal;
00170 AIDA::IHistogram1D* _histJet3etaCDF;
00171
00172
00173 };
00174
00175
00176
00177
00178 AnalysisBuilder<CDF_1994_S2952106> plugin_CDF_1994_S2952106;
00179
00180 }