CDF_1994_S2952106.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/VetoedFinalState.hh"
00006 #include "Rivet/Projections/TotalVisibleMomentum.hh"
00007 #include "Rivet/Projections/FastJets.hh"
00008 
00009 namespace Rivet {
00010 
00011 
00012   /* @brief CDF Run I color coherence analysis
00013    * @author Lars Sonnenschein
00014    * @todo BROKEN!
00015    */
00016   class CDF_1994_S2952106 : public Analysis {
00017   public:
00018 
00019     /// Constructor
00020     CDF_1994_S2952106() : Analysis("CDF_1994_S2952106")
00021     {
00022       setBeams(PROTON, ANTIPROTON);
00023       // setNeedsCrossSection(true);
00024     }
00025 
00026 
00027     /// @name Analysis methods
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       // Veto (anti)neutrinos, and muons with pT above 1.0 GeV
00037       VetoedFinalState vfs(fs);
00038       vfs.vetoNeutrinos();
00039       vfs.addVetoPairDetail(MUON, 1.0*GeV, MAXDOUBLE);
00040       addProjection(vfs, "VFS");
00041 
00042       /// @todo Use histogram auto-booking
00043    
00044       //const string hname = "HvsDphi";
00045       //const string htitle = "H vs Delta phi";
00046       //_histHvsDphi = bookHistogram2D(hname, htitle, 40, -4., 4., 32, 0., 3.2);
00047    
00048       //const string hname2 = "RvsAlpha";
00049       //const string htitle2 = "R vs alpha";
00050       //_histRvsAlpha = bookHistogram2D(hname2, htitle2, 50, 0., 5., 32, -1.6, 1.6);
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       /// @todo Need better title
00058       _histAlpha = bookHistogram1D("alpha", 42, -PI/2., PI/2.);
00059    
00060       //const string hname8 = "alphaMCvsDat";
00061       //const string htitle8 = "alpha MC vs. Data ";
00062       //_histAlphaMCvsDat = bookHistogram1D(hname8, htitle8, 42, -PI/2., PI/2.);
00063    
00064       /// @todo Need better title
00065       _histAlpaIdeal = bookHistogram1D("alphaIdeal", 42, -PI/2., PI/2.);
00066    
00067       /// @todo Need better title
00068       _histAlpaCDF = bookHistogram1D("alphaCDF", 42, -PI/2., PI/2.);
00069    
00070       /// @todo Need better title
00071       _histR23Ideal = bookHistogram1D("R23Ideal", 50, 0., 5.);
00072    
00073       /// @todo Need better title
00074       _histR23CDF = bookHistogram1D("R23CDF", 50, 0., 5.);
00075    
00076       /// @todo Need better title
00077       _histJet3etaIdeal = bookHistogram1D("Jet3etaIdeal", 42, -4., 4.);
00078    
00079       /// @todo Need better title
00080       _histJet3etaCDF = bookHistogram1D("Jet3etaCDF", 42, -4., 4.);
00081     }
00082  
00083  
00084  
00085     // Do the analysis
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       // Check there isn't too much missing Et
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       // Check jet requirements
00096       if (jets.size() < 3) vetoEvent;
00097       if (jets[0].momentum().pT() < 100*GeV) vetoEvent;
00098    
00099       // More jet 1,2,3 checks
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       // Next cut only required for alpha studies
00114       if (pj3.pT()/GeV < 10.0) vetoEvent;
00115       getLog() << Log::DEBUG << "3rd jet passes alpha histo pT cut" << endl;
00116    
00117       // Calc and plot alpha
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     /// Finalize
00126     void finalize() {
00127       /// @todo Apply correction
00128       // double a, b, c, erra, errb, errc;
00129       // for (int ibin = 0;  ibin < _histAlpha->getNbins(); ++ibin) {
00130       // a = _histAlpha->GetBinContent(ibin);
00131       // erra = _histAlpha->GetBinError(ibin);
00132       // b = _histAlpaIdeal->GetBinContent(ibin);
00133       // errb = _histAlpaIdeal->GetBinError(ibin);
00134       // c = _histAlpaCDF->GetBinContent(ibin);
00135       // errc = _histAlpaCDF->GetBinError(ibin);
00136       // _histAlpha->SetBinContent(ibin, b/c);
00137       // _histAlpha->SetBinError(ibin, sqrt(sqr(b)/sqr(c)*sqr(erra) + sqr(a)/sqr(c)*sqr(errb) +
00138       // sqr(a*b/(sqr(c)))*sqr(errc) ) );
00139       // }
00140       /// @todo Same correction to be applied for _hisR23 and _histJet3eta histograms
00141    
00142       //getLog() << Log::INFO << "Cross-section = " << crossSection()/picobarn << " pb" << endl;
00143       normalize(_histJet1Et);
00144       normalize(_histJet2Et);
00145       normalize(_histR23);
00146       normalize(_histJet3eta);
00147       normalize(_histAlpha);
00148     }
00149 
00150     //@}
00151 
00152 
00153   private:
00154 
00155     /// @name Histogram collections
00156     //@{
00157     // AIDA::IHistogram2D* _histHvsDphi;
00158     // AIDA::IHistogram2D* _histRvsAlpha;
00159     AIDA::IHistogram1D* _histJet1Et;
00160     AIDA::IHistogram1D* _histJet2Et;
00161     AIDA::IHistogram1D* _histR23;
00162     AIDA::IHistogram1D* _histJet3eta;
00163     AIDA::IHistogram1D* _histAlpha;
00164     // AIDA::IHistogram1D* _histAlphaMCvsDat;
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   // This global object acts as a hook for the plugin system
00178   AnalysisBuilder<CDF_1994_S2952106> plugin_CDF_1994_S2952106;
00179 
00180 }