Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F7878592
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Subscribers
None
View Options
diff --git a/data/anainfo/CDF_2001_S4563131.info b/data/anainfo/CDF_2001_S4563131.info
--- a/data/anainfo/CDF_2001_S4563131.info
+++ b/data/anainfo/CDF_2001_S4563131.info
@@ -1,39 +1,39 @@
Name: CDF_2001_S4563131
Year: 2001
Summary: Inclusive jet cross section
Experiment: CDF
Collider: Tevatron Run 1
SpiresID: 4563131
-Status: UNVALIDATED
+Status: VALIDATED
Authors:
- Frank Siegert <frank.siegert@cern.ch>
References:
- Phys.Rev.D64:032001,2001
- doi:10.1103/PhysRevD.64.032001
- arXiv:hep-ph/0102074
RunInfo:
Dijet events at Tevatron with $\sqrt{s}=1.8$ TeV
NumEvents: 1000000
Beams: [p-, p+]
Energies: [1800]
PtCuts: [0]
Description:
Measurement of the inclusive jet cross section for jet transverse energies
from 40 to 465 GeV in the pseudo-rapidity range $0.1<|\eta|<0.7$.
The results are based on 87 $\mathrm{pb}^{-1}$ of data.
NeedCrossSection: yes
BibKey: Affolder:2001fa
BibTeX: '@Article{Affolder:2001fa,
author = "Affolder, Anthony Allen and others",
collaboration = "CDF",
title = "{Measurement of the inclusive jet cross section in
$\bar{p}p$ collisions at $\sqrt{s} = 1.8$ TeV}",
journal = "Phys. Rev.",
volume = "D64",
year = "2001",
pages = "032001",
eprint = "hep-ph/0102074",
archivePrefix = "arXiv",
doi = "10.1103/PhysRevD.64.032001",
SLACcitation = "%%CITATION = HEP-PH/0102074;%%"
}'
diff --git a/src/Analyses/CDF_2001_S4563131.cc b/src/Analyses/CDF_2001_S4563131.cc
--- a/src/Analyses/CDF_2001_S4563131.cc
+++ b/src/Analyses/CDF_2001_S4563131.cc
@@ -1,71 +1,71 @@
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/FastJets.hh"
namespace Rivet {
/// @brief CDF Run I inclusive jet cross-section
class CDF_2001_S4563131 : public Analysis {
public:
/// @name Constructors etc.
//@{
/// Constructor
CDF_2001_S4563131()
: Analysis("CDF_2001_S4563131")
{ }
//@}
public:
/// @name Analysis methods
//@{
/// Book histograms and initialise projections before the run
void init() {
FinalState fs(-4.2, 4.2);
addProjection(FastJets(fs, FastJets::CDFJETCLU, 0.7), "Jets");
_h_ET = bookHisto1D(1, 1, 1);
}
/// Perform the per-event analysis
void analyze(const Event& event) {
const double weight = event.weight();
- Jets jets = applyProjection<FastJets>(event, "Jets").jets(Cuts::pT > 40*GeV, cmpMomByEt);
+ Jets jets = applyProjection<FastJets>(event, "Jets").jets(Cuts::Et > 40*GeV, cmpMomByEt);
foreach (const Jet& jet, jets) {
if (inRange(jet.abseta(), 0.1, 0.7))
_h_ET->fill(jet.Et(), weight);
}
}
/// Normalise histograms etc., after the run
void finalize() {
const double deta = 1.2;
scale(_h_ET, crossSection()/sumOfWeights()/deta/nanobarn);
}
//@}
private:
/// @name Histograms
//@{
Histo1DPtr _h_ET;
//@}
};
// The hook for the plugin system
DECLARE_RIVET_PLUGIN(CDF_2001_S4563131);
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Tue, Nov 19, 6:25 PM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3805581
Default Alt Text
(3 KB)
Attached To
rRIVETHG rivethg
Event Timeline
Log In to Comment