Lesson 14 of 15
Cross Section Units and Luminosity
Cross Section Units and Luminosity
In particle physics experiments the interaction probability between two particles is quantified by the cross section — a measure of the effective area for a given process.
The Barn and its Submultiples
The natural unit for cross sections is the barn:
Modern collider physics works with much smaller cross sections:
| Unit | Value |
|---|---|
| 1 mb (millibarn) | b |
| 1 μb (microbarn) | b |
| 1 nb (nanobarn) | b |
| 1 pb (picobarn) | b |
| 1 fb (femtobarn) | b |
Conversion from Natural Units
In natural units (where ), cross sections are computed in GeV. The conversion to physical units uses:
Luminosity and Event Rates
The instantaneous luminosity [cms] relates the event rate to the cross section:
The integrated luminosity [fb] gives the total number of events:
At the LHC, Run 2 (2015–2018) delivered about 140 fb of integrated luminosity at 13 TeV. Key benchmark cross sections:
- (Higgs production via gluon fusion): pb at 13 TeV
- : nb pb
Your Task
Implement:
GeV2_to_pb(sigma_GeV2)— convert cross section from GeV to pbevents_expected(sigma_pb, luminosity_fb_inv)— number of events (1 fb = 1000 pb)luminosity_from_rate(event_rate_per_s, sigma_cm2)— instantaneous luminosity in cms
All constants must be defined inside each function body.
Python runtime loading...
Loading...
Click "Run" to execute your code.