Skip to main content

Explaining the D0 detector





Fermilab is the world's highest energy particle accelerator. We create beams of high energy protons and antiprotons and bring them into collision with each other. These collisions allow us to see what holds protons together and what they are made of; the collisions also pack sufficient energy into a tiny point of space to create entirely new particles.

The collision points are surrounded by arrays of instrumentation called detectors. D0 is a fairly typical high energy physics detector. It measures thirty feet tall and fifty feet long and consists of four major parts.

1. Tracking system
The point where the beams collide is surrounded by "tracking detectors" to record the tracks (trajectories) of the high energy particles produced in the collision. The measurements closest to the collision are made using silicon detectors. These are flat wafers of silicon chip material. They give very precise information, but they are expensive, so we concentrate them closest to the beam where they don't have to cover so much area. The information from the silicon detector can be used to identify b-quarks (like the ones produced from the decay of a Higgs particle).
Outside the silicon, D0 has an outer tracker made using scintillating fibers, which produce photons of light when a particle passes through. The whole tracker is immersed in a powerful magnetic field so the particle tracks are curved; from the curvature we can deduce their momentum.

2. Calorimeter
Outside the tracker is a dense absorber to capture particles and measure their energies. This is called a calorimeter. It uses uranium metal bathed in liquefied argon; the uranium causes particles to interact and lose energy, and the argon detects the interactions and gives an electrical signal that we can measure.

3. Muon System
The outermost layer of the detector detects muons. Muons are unstable particles but they live long enough to leave the detector. High energy muons are quite rare and a good sign of interesting collisions. Unlike most common particles they don't get absorbed in the calorimeter so by putting particle detectors outside it, we can identify muons. Because the muon system has to surround all of the rest of the detector, it ends up being very large, and it is the first thing that you see when looking at D0.

4. Trigger system
Proton-antiproton collisions happen inside the detector 2.5 million times every second. We cannot record all those events; at most, perhaps 20 events per second can be stored on computer tape. The trigger is the system of fast electronics and computers than has to decide, in real time, whether an event is interesting enough to be worth keeping.

http://www.fnal.gov/pub/now/live_events/explain_det_dzero.html

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...