• USLHC
  • USLHC
  • USA

Latest Posts

  • Frank
  • Simon
  • MPI for Physics
  • Germany

Latest Posts

  • Aidan
  • Randle-Conde
  • USLHC
  • USA

Latest Posts

  • TRIUMF
  • Vancouver, BC
  • Canada

Latest Posts

  • Richard
  • Ruiz
  • UW - Madison
  • U.S.A.

Latest Posts

  • Byron
  • Jennings
  • TRIUMF
  • Canada

Latest Posts

  • Seth
  • Zenz
  • USLHC
  • USA

Latest Posts

  • Anna
  • Phan
  • USLHC
  • USA

Latest Posts

  • Alexandre
  • Fauré
  • CEA/IRFU
  • FRANCE

Latest Posts

  • Jim
  • Rohlf
  • USLHC
  • USA

Latest Posts

  • Zoe Louise
  • Matthews
  • ASY-EOS
  • UK

Latest Posts

  • Ken
  • Bloom
  • USLHC
  • USA

Latest Posts

Archive for the ‘Uncategorized’ Category

Jet spotting

Saturday, April 30th, 2011

Every week I try to take a few hours to study something different. The idea being that this will give me a broader sense of what’s going on within the ATLAS collaboration and the world of particle physics at large. Last week I was mostly watching Gavin Salam’s superb lectures on jets. They’re available as videos from here.

So what is a jet? It’s certainly nothing to do with aeroplanes. Jets are what we observe at ATLAS when a highly energetic quark or a gluon (collectively referred to here as partons) is produced in a collision.

I won’t take the time to explain the physics behind a jet and how they come into being. Those interested can see Flip’s excellent post. In essence, instead of the individual partons, what we see in the detector is a spray of collimated particles. This is what we refer to as a “jet”.

At hadron colliders, such as the LHC, jets are everywhere. In fact the vast majority of interactions at a hadron collider will result in the creation of multiple jets. They are our window on partons and on to the strong force itself.

Being so ubiquitous it’s important that we’re able to reliably identify these within our detector. Unfortunately this isn’t always such an easy task. The event display below illustrates a typical jet event. How many jets do you see?

 


 

Here is ATLAS’s answer.

 


 

In this case the jets have helpfully been colour coded. In real life, this doesn’t happen.

As you can tell the definition of a jet can be somewhat ambiguous. At ATLAS the trigger system has to quickly identify thousands of jets a second in order to pick out the interesting events to record. Identifying such a large number of jets is no easy feat.

To solve this problem we use jet algorithms. These are pieces of software which define jets based on what we see in the detector. They come in all sorts of shapes and sizes, from “simple” versions where a jet is defined as all the particles inside a cone, to more advanced versions which sequentially combine together individual particles based on their separation and energy.

Different algorithms have different strengths and weaknesses. Cone based jets are relatively simple and provide nice, round jets. Unfortunately though, the jets they identify can easily be altered by changes within the jet itself, or by small amounts of energy coming from unrelated collisions. This makes them very hard to compare to the predictions from theory. More complicated algorithms such as the “kT” algorithm remove these ambiguities, but often result in “ugly” irregularly shaped jets.

The current vogue algorithm both at CMS and ATLAS is the so called “anti-kT” algorithm. This starts from the most energetic single particles and sequentially combines them with everything nearby, stopping at some pre-defined distance. This algorithm results in the identification of nice, round jets, and does this consistently regardless of the small amounts of additional energy or the structure of the jets themselves.

Science friendly browsing

Wednesday, April 27th, 2011

(Note: This post requires JavaScript to be enabled on your browser.)

For years the internet has been a wonderful tool for people all over the world, bringing distant communities together, changing the way think about communication and information and having a huge impact for the better in nearly every aspect of our lives. Unfortunately there are still major problems when it comes to sharing scientific knowledge. This is changing very quickly though, making this an exciting time for internet-savvy scientists.

LaTeX sets the high standards we have come to expect for mathematical markup.

How did this kind of situation arise? Science journals have had their own markup language, LaTeX, for decades, predating the internet by many years. LaTeX is available to anyone makes it very easy to generate simple, attractive documents with excellent support for a wide variety of mathematical symbols. (Making complicated documents isn’t quite so easy, but still possible!) Making documents like this can be very intensive, as every margin and the space between every character is analyzed, with restrictions imposed by paper sizes.

On the other hand, the hypertext markup language (HTML) and cascading style sheets (CSS) are the standards which are widely used on the internet, and they are focused mainly on the aesthetics of more popular kinds of journalism. The HTML standards are intended to work on any operating system, and they should give a semantic description of the content of a webpage, without consideration for style. The CSS then take over and decide how the information is displayed on the screen. (Check out the CSS Zen Garden to see the power of CSS.) In principle, writing a webpage that follows the HTML and CSS standards is quite easy, but in reality it’s it can be a very problematic and tedious task. The internet is a dynamic medium, with different developers trying different tricks, different browsers supporting different features and no real control concerning the best practices. Groups such as W3C have tried to standardize HTML and CSS, with quite a lot of success, but it’s a slow process and it has taken years to get to where we are today.

CSS makes the internet an aesthetically compelling medium. (CSS Zen Garden)

Trying to get mathematical markup with these kinds of constraints is quite tricky! Math is inherently two dimensional, making good use of subscripts, superscripts, indices, fraction, square roots… HTML is much better at handling long passages of text which flow from one line to the next, without much scope for anything as exciting as a nested superscript. And so for a long time it became very awkward to include math on a webpage.

Over the years there have been many approaches to this problem, including LaTeX2HTML, MathML, using images, or expecting the poor user to interpret LaTeX markup! Eventually, the CSS standards settled down, browsers started to conform to the same behavior, and it became possible to display math without the use of any images, plugins or other suboptimal solutions.

With the exciting developments of Web 2.0, we have access to MathJAX. We can take LaTeX markup and put it directly into a webpage and MathJAX can turn this:

\[
  \nabla \times \vec{H} & = & \vec{J} + \frac{\partial \vec{D}}{\partial t}
\]

into this:

\[
\nabla \times \vec{H} = \vec{J} + \frac{\partial \vec{D}}{\partial t}
\]

Beautiful! It also works inline like this: \(E=mc^2\) becomes \(E=mc^2\). (None of this will work if JavaScript is disabled on your browser, which is a shame for you, because it looks very pretty on the page!) Using MathJAX is as simple as writing normal LaTeX between \[ and \] symbols for block-level text, \( and \) symbols for inline text.

We finally have a way to show equations on any browser, with any operating system, that complies with all the standards laid out by the W3C. So much for math markup. What about technical drawings and graphs? Scientists have been using vector graphics in their work for decades, so it would also be nice to have a way to show these kinds of images.

This is the kind of image we can make with the canvas! Making graphs can be easy, and the output can be beautiful and interactive.

Some browsers have supported vector graphics for a few years, but once again, different browsers behave differently, and vector graphics have been developed rather late, so there are large performance issues. However, with the development of the next generation of HTML browsers should support a brand new kind of image, the HMTL5 canvas. It allows designers of websites to draw detailed images on the fly, even allowing the user to interact with the images! It will take some time before most of the users on the internet can have access to the HTML5 canvas, so until then we can’t rely on these new features to share information.

On the other hand it means that we living in a very exciting time where anyone can develop their own work using the canvas, and help shape our experiences with the internet in the future! The standards used online have always lagged behind how the latest developers are using the tools at their disposal, and when the standards get updated the ingenuity of the developers is taken into account. Soon the canvas will support 3D graphics, making our online experiences even richer! Want to help shape how this is developed? Then get involved! Try out the canvas today and see what you can create! There are dozens of fascinating examples at Canvas Demos. Here are some of my favorites:

  • MolGrabber 3D- a great way to visualize molecules in three dimensions.
  • Flot- how to show graphs on a webpage.
  • Pacman- a clone of the classic arcade game!

The internet is going to get very cool in the near future, giving us the ability to share information like never before! When anyone can create animations and simulations, blogs like this will become even more interactive, even more compelling and even more useful. I can’t wait to see what MathJAX and the HTML5 canvas will deliver!

The CERN Accelerator Complex

Sunday, April 24th, 2011

With all the buzz this past week regarding the breaking of the world instantaneous luminosity record, I thought it might be interesting for our readers to get an idea of how we as physicists achieved this goal.

Namely, how do we accelerate particles?

(This may be a review for some of our veteran readers due to this older post by Regina)

 

The Physics of Acceleration

Firstly, physicists rely on a principle many of us learn in our introductory physics courses, the Lorentz Force Law.  This result, from classical electromagnetism, states that a charged particle in the presence of external electric and/or magnetic fields will experience a force.  The direction and magnitude (how strong) of the force depends on the sign of the particle’s electric charge and its velocity (or direction its moving, and with what speed).

So how does this relate to accelerators?  Accelerators use radio frequency cavities to accelerate particles.  A cavity has several conductors that are hooked up to an alternating current source.  Between conductors there is empty space, but this space is spanned by a uniform electric field.  This field will accelerate a particle in a specific direction (again, depending on the sign of the particle’s electric charge).  The trick is to flip this current source such that as a charged particle goes through a succession of cavities it continues to accelerate, rather than be slowed down at various points.

A cool Java Applet that will help you visualize this acceleration process via radio frequency cavities can be found here, courtesy of CERN.

Now that’s the electric field portion of the Lorentz Force Law, what about the magnetic?  Well, magnetic fields are closed circular loops, as you get farther and farther away from their source the radii of these loops continually increases.  Whereas electric fields are straight lines that extend out to infinity (and never intersect) in all directions from their source.  This makes the physics of magnetic fields very different from that of electric fields.  We can use magnetic fields to bend the track (or path) of charged particles.  A nice demonstration of this can be found here (or any of the other thousands of hits I got for Googling “Cathode Ray Tube + YouTube”).

Imagine, if you will, a beam of light; you can focus the beam (make it smaller) by using a glass lens, you can also change the direction of the beam using a simple mirror.  Now, the LHC ring uses what are called dipole and quadropole magnets to steer and focus the beam.  If you combine the effects of these magnets you can make what is called a magnetic lens, or more broadly termed “Magnetic Optics.”  In fact, the LHC’s magnetic optics currently focus the beam to a diameter of ~90 micro-meters  (the diameter of a human hair is ~100 micro-meters, although it varies from person to person, and where on the body the hair is taken from).  However, the magnetic optics system was designed to focus the beam to a diameter of ~33 micro-meters.

In fact, the LHC uses 1232 dipole magnets, and 506 quadrupole magnets.  These magnets have  a peak magnetic field of 8.3 Tesla, or 100,000 times stronger than Earth’s magnetic field.  An example of the typical magnetic field emitted by the dipole magnets of the LHC ring is shown here [1]:

Image courtesy of CERN

 

The colored portions of the diagram indicate the magnetic flux, or the amount of magnetic field passing through a given area.  Whereas the arrows indicate the direction of the magnetic field.  The two circles (in blue) in the center of the diagram indicate the beam pipes for beams one and two.  Notice how the arrows (direction of the magnetic field) point in opposite directions!  This allows CERN Accelerator physicists to control two counter-rotating beams of protons in the same beam pipe (Excellent Question John Wells)!

Thus, accelerator physicists at CERN use electric fields to accelerate the LHC proton/lead-ion beams and the magnetic fields to steer and squeeze these beams (Also, these “magnetic optics” systems are responsible for “Lumi Leveling” discussed by Anna Phan earlier this week).

However, this isn’t the complete story, things like length contraction, and synchrotron radiation affect the acceleration process, and design of our accelerators.  But these are stories best left for another time.

 

The Accelerator Complex

But where does this process start?  Well, to answer this let’s start off with the schematic of this system:

Image courtesy of CERN

One of our readers (thanks GP!) has given us this helpful link that visualizes the acceleration process at the LHC (however, when this video was made, the LHC was going to be operating at design specifications…but more on that later).

A proton’s journey starts in a tank of research grade hydrogen gas (impurities are measured in parts per million, or parts per billion).  We first take molecular hydrogen (a diatomic molecule for those of you keeping track) and break it down into atomic hydrogen (individual atoms).  Next, we strip hydrogen’s lone electron from the atom (0:00 in the video linked above).  We are now left with a sample of pure protons.  These protons are then passed into the LINear ACcelerator 2 (LINAC2, 0:50 in the video linked above), which is the tiny purple line in the bottom middle of the above figure.

The LINAC 2 then accelerates these protons to an energy of 50 MeV, or to a 31.4% percent of the speed of light [2].  The “M” stands for mega-, or times one million.  The “eV” stands for electron-volts, which is the conventional unit of high energy physics.  But what is an electron-volt, and how does it relate to everyday life?  Well, for that answer, Christine Nattrass has done such a good job comparing the electron-volt to a chocolate bar, that any description I could give pales in comparison to hers.

Moving right along, now thanks to special relativity, we know that as objects approach the speed of light, they “gain mass.”  This is because energy and mass are equivalent currencies in physics.  An object at rest has a specific mass, and a specific energy.  But when the object is in motion, it has a kinetic energy associated with it.  The faster the object is moving, the more kinetic energy, and thus the more mass it has.  At 31.4% the speed of light, a proton’s mass is ~1.05 times its rest mass (or the proton’s mass when it is not moving).

So this is a cruel fact of nature.  As objects increase in speed, it becomes increasingly more difficult to accelerate them further!  This is a direct result of Newton’s Second Law.  If a force is applied to a light object (one with little mass) it will accelerate very rapidly; however, the same force applied to a massive object will cause a very small acceleration.

Now at an energy of 50 MeV, travelling at 31.4% the speed of light, and with a mass of 1.05 times its rest mass, the protons are injected into the Proton Synchrotron (PS) Booster (1:07 in the video).  This is the ellipse, labeled BOOSTER, in the diagram above.  The PS Booster then accelerates the protons to an energy of 1.4 GeV (where  the “G” stands for giga- or a billion times!), and a velocity that is 91.6% the speed of light [2].  The proton’s mass is now ~2.49 times its rest mass.

The PS Booster then feeds into the Proton Synchrotron (labeled as PS above, see 2:03 in video), which was CERN’s first synchrotron (and was brought online in November of 1959).  The PS then further accelerates the protons to an energy of 25 GeV, and a velocity that is 99.93% the speed of light [2].  The proton’s mass is now ~26.73 times its rest mass!  Wait, WHAT!?

At 31.4% the speed of light, the proton’s mass has barely changed from its rest mass.  Then at 91.6% the speed of light (roughly three times the previous speed), the proton’s mass was only two and a half times its rest mass.  Now, we increased speed by barely 8%, and the proton’s mass was increase by a factor of 10!?

This comes back to the statement earlier, objects become increasingly more difficult to accelerate the faster they are moving.  But this is clearly a non-linear affect.  To get an idea of what this looks like mathematically, take a look at this link here [3].  In this plot, the Y-axis is in multiples of rest mass (or Energy), and the x-axis is velocity, in multiples of the speed of light, c.  The red line is this relativistic effect that we are seeing, as we go from ~91% to 99% the speed of light, the mass increases gigantically!

But back to the proton’s journey, the PS injects the protons into the Super Proton Synchrotron (names in high energy physics are either very generic, and bland, or very outlandish, e.g. matter can be charming).  The Super Proton Synchrotron (SPS, also labeled as such in above diagram, 3:10 in video above) came online in 1976, and it was in 1983 that the W and Z bosons (mediators of the weak nuclear force) were discovered when the SPS was colliding protons with anti-protons.  In today’s world however, the SPS accelerates protons to an energy of 450 GeV, with a velocity of 99.9998% the speed of light [2].  The mass of the proton is now ~500 times its rest mass.

The SPS then injects the proton beams directly into the Large Hadron Collider.  This occurs at 3:35 in video linked above, however, when this video was recorded the LHC was operating at design energy, with each proton having an energy of 7 TeV (“T” for tera-, a million million times).  However, presently the LHC accelerates the proton to half of the design energy, and a velocity of 99.9999964% the speed of light.  The protons are then made to collide in the heart of the detectors.  At this point the protons have a mass that is ~3730 times their rest mass!

 

 

So, the breaking of the world instantaneous luminosity record was not the result of one single instrument, but the combined might of CERN’s full accelerator complex, and in no small part by the magnetic optics systems in these accelerators (I realize I haven’t gone into much detail regarding this, my goal was simply to introduce you to the acceleration process that our beams undergo before collisions).

 

Until next time,

-Brian

 

 

 

References:

[1] CERN, “LHC Design Report,” https://ab-div.web.cern.ch/ab-div/Publications/LHC-DesignReport.html

[2] CERN, “CERN faq: The LHC Guide,” http://cdsweb.cern.ch/record/1165534/files/CERN-Brochure-2009-003-Eng.pdf

[3]  School of Physics, University of Southern Wales, Sydney Australia, http://www.phys.unsw.edu.au/einsteinlight/jw/module5_equations.htm

We’ve mentioned jets a few times here on the US LHC blog, so I’d like to go into bit more detail about these funny unavoidable objects in hadron colliders. Fortunately, Cornell recently had a visit from David Krohn, a Simons Fellow at Harvard University who is an expert at jet substructure. With his blessing, I’d like to recap parts of his talk to highlight a few jet basics an mention some of the cutting edge work being done in the field.

Before jumping in, a public service announcement for physicists in this field: David is one of the co-organizers of the Boost 2011 workshop next month. It looks like it’ll be a great event for both theorists and experimentalists.

Hadronic Junk

Let’s review what we know about quantum chromodynamics (QCD). Protons and neutrons are composite objects built out of quarks which are bound together by gluons. Like electrons and photons in quantum electrodynamics (QED), quarks and gluons are assumed to be “fundamental” particles. Unlike electrons and photons, however, we do not observe individual quarks or gluons in isolation. You can pull an electron off of a Hydrogen atom without much ado, but you cannot pull a quark out of a proton without shattering the proton into a bunch of other very different looking things (things like pions).

The reason is that QCD is very nonperturbative at low energies. QCD hates to have color-charged particles floating around, it wants them to immediately bind into color-neutral composite objects, even if that means producing new particles out of the quantum vacuum to make everything neutral. These color-neutral composite objects are called hadrons. Unfortunately, usually the process of hadronizing a quark involves radiating off other quarks of gluons which themselves hadronize. This process continues until you end up with a messy spray of particles in place of the original colored object. This spray is called a jet. (Every time I write about jets I feel like I have to reference West Side Story.)

 

Jets

Simulated event from ATLAS Experiment © 2011 CERN

As one can see in the image above, the problem is that the nice Feynman diagrams that we know how to calculate do not directly correspond to the actual mess of particles that form the jets which the LHC experiments measure. And it really is mess. One cannot effectively measure every single particle within each jet and even if one could, it is impractically difficult to calculate Feynman diagrams for very large numbers of particles.

Thus we’re stuck having to work with the jets themselves. High energy jets usually correspond to the production of a single high-energy colored particle, so it makes sense to talk about jets as “single objects” even though they’re really a spray of hadrons.

Update 4/24: David has corrected me and explained that while the process of jet formation is associated with strong coupling, it isn’t really a consequence of non-perturbative physics. At the level of this blog, the distinction is perhaps too subtle to harp over. For experts, however, I should note for complete honesty that it is indeed true that a lot of jet physics is calculable using perturbative techniques while tiptoeing around soft and collinear singularities. David notes that a nice way to think about this is to imagine QED in the limit where the electromagnetic force were stronger, but not incalculably strong (“non-perturbative”). In this case we could still draw Feynman diagrams for the production of electrons, but as we dial up the strength of the electromagnetic force, the actual observation in our detectors won’t be single electrons, but a “jet” formed form an electron and a spray of photons.

Identifying Jets

So we’ve accepted the following fact of life for QCD at a particle collider:

Even though our high energy collisions produce ‘fundamental’ particles like quarks and gluons, the only thing we get to observe are jets: messy sprays of hadrons.

Thus one very important task is trying to make the correspondence between the ‘fundamental’ particles in our Feynman diagrams and the hadronic slop that we actually measure. In fact, it’s already very hard to provide a technical definition of a jet. Our detectors can identify most of the “hadronic slop,” but how do we go from this to a measurement of some number of jets?

This process is called clustering and involves developing algorithms to divide hadrons into groups which are each likely to have come from a single high energy colored particle (quarks or gluons). For example, for the simple picture above, one could develop a set of rules that cluster hadrons together by drawing narrow cones around the most energetic directions and defining everything within the cone to be part of the jet:

Jet Clustering

Simulated event from ATLAS Experiment © 2011 CERN

One can then measure the energy contained within the cone and say that this must equal the energy of the initial particle which produced the jets, and hence we learn something about fundamental object. I’ll note that this kind of “cone algorithms” for jet clustering can be a little crude and there are more sophisticated techniques on the market (“sequential recombination”).

Boosted Jets

Even though the above cartoon was very nice, you can imagine how things can become complicated. For example, what if the two cones started to approach each other? How would you know if there was one big jet or two narrow jets right next to each other? In fact, this is precisely what happens when you have a highly boosted object decaying into jets.

By “boosted” I mean that the decaying particle has a lot of kinetic energy. This means that even though the particle decays into two colored objects—i.e. two jets—the jets don’t have much time to separate from one another before hitting the detector. Thus instead of two well-separated jets as we saw in the example above, we end up with two jets that overlap:

Collimation of two jets into a single jet as the decaying particle is boosted. Image from D. Krohn.

Now things become very tricky. Here’s a concrete example. At the LHC we expect to produce a lot of top/anti-top pairs (tt-bar). Each of these tops immediately decays into a b-quark and a W. Thus we have

t, t-bar → b, b-bar, W W

(As an exercise, you can draw a Feynman diagram for top pair production and the subsequent decay.) These Ws are also fairly massive particles and can each decay into either a charged lepton and a neutrino, or a pair of quarks. Leptons are not colored objects and so they do not form jets; thus the charged lepton (typically a muon) is a very nice signal. One promising channel to look for top pair production, then, is the case where one of the Ws decays into a lepton and neutrino and the other decays into two quarks:

t, t-bar → b, b-bar, W Wb, b-bar, q, q-bar, lepton, ν

The neutrino is not detected, and all of the quarks (including the bottoms) turn into jets. We thus can search for top pair production by counting the number of four jet events with a high energy lepton. For this discussion we won’t worry about background events, but suffice it to say that one of the reasons why we require a lepton is to help discriminate against background.

Here’s what such an event might look like:

Simulated event from ATLAS Experiment © 2011 CERN

Here “pT” refers to the energy (momentum perpendicular to the beam) of the top quarks. In the above event the tops have a modest kinetic energy. On the other hand, it might be the case that the tops are highly boosted—for example, they might have come from the decay of a very heavy particle which thus gives them a lot of kinetic energy. In the following simulated event display, the tops have a pT that is ten times larger than the previous event:

Simulated event from ATLAS Experiment © 2011 CERN

Now things are tricky! Instead of four clean jets, it looks like two slightly fat jets. Even though this simulated event actually had the “b, b-bar, q, q-bar, lepton, ν” signal we were looking for, we probably wouldn’t have counted this event because the jets are collimated.

There are other ways that jets tend to be miscounted. For example, if a jet (or anything really) is pointed in the direction of the beam, then it is not detected. This is why it’s something of an art to identify the kinds of signals that one should look for at a hadron collider. One will often find searches where the event selection criteria requires “at least” some number of jets (rather than a fixed number) with some restriction on the minimum jet energy.

Jet substructure

One thing you might say is that even though the boosted top pair seemed to only produce two jets, shouldn’t there be some relic that they’re actually two small jets rather than one big jet? There has been a lot of recent progress in this field.

Distinguishing jets from a boosted heavy particle (two collimated jets) from a "normal" QCD jet with no substructure. The plot is a cylindrical cross section of the detector---imagine wrapping it around a toilet paper roll aligned with the beam. Image from D. Krohn.

The main point is that one can hope to use the “internal radiation distribution” to determine whether a “spray of hadrons” contains a single jet or more than one jets. As you can see from the plots above, this is an art that is similar to reading tea leaves. (… and I only say that with the slightest hint of sarcasm!)

[For experts: the reason why the QCD jets look so different are the Alterelli-Parisi splitting functions: quarks and gluons really want to emit soft, collinear stuff.]

There’s now a bit of an industry for developing ways to quantify the likelihood that a jet is really a jet (rather than two jets). This process is called jet substructure. Typically one defines an algorithm that takes detector data and spits out a number called a jet shape variable that tells you something about the internal distribution of hadrons within the jet. The hope is that some of these variables will be reliable and efficient enough to help us squeeze as much useful information as we can out of each of our events. There also seems to be a rule in physics that the longer you let theorists play with an idea, the more likely it is that they’ll give it a silly name. One recent example is the “N-subjettiness” variable.

Jet superstructure

In addition to substructure, there has also been recent progress in the field of jet superstructure, where one looks at correlations between two or more jets. The basic idea boils down to something very intuitive. We know that the Hydrogen atom is composed of a proton and an electron. As a whole, the Hydrogen atom is electrically neutral so it doesn’t emit an electric field. (Of course, this isn’t quite true; there is a dipole field which comes from the fact that the atom is actually composed of smaller things which are charged.) The point, however, is that far away from the atom, it looks like a neutral object so we wouldn’t expect it to emit an electric field.

We can say the same thing about color-charged particles. We already know that quarks and gluons want to recombine into color-neutral objects. Before this happens, however, we have high energy collisions with quarks flying all over the place trying to figure out how to become color neutral. Focusing on this time scale, we can imagine that certain intermediate configurations of quarks might already be color neutral and hence would be less likely to emit gluons (since gluons are the color-field). On the other hand, other intermediate configurations might be color-charged, and so would be more likely to emit gluons. This ends up changing the distribution of jet slop.

Here’s a nice example from one of the first papers in this line of work. Consider the production of a Higgs boson through “quark fusion,” i.e. a quark and an antiquark combining into a Higgs boson. We already started to discuss the Higgs in a recent post, where we made two important points: (1) once we produce a Higgs, it is important to figure out how it decays, and (2) once we identify a decay channel, we also have to account for the background (non-Higgs events that contribute to that signal).

One nice decay channel for the Higgs is b b-bar. The reason is that bottom quark jets have a distinct signature—you can often see that the b quark traveled a small distance in the detector before it started showering into more quarks and gluons. Thus the signal we’re looking for is two b-jets. There’s a background for this: instead of qq-bar → Higgs → b-jets, you could also have qq-bar → gluon → b-jets.

The gluon-mediated background is typically very large, so we would like to find a clever way to remove these background events from our data. It turns out that jet superstructure may be able to help out. The difference between the Higgs → b-jets decay versus the gluon → b-jets decay is that the gluon is color-charged. Thus when the gluon decays, the two b-quarks are also color-charged. On the other hand, the Higgs is color-neutral, so that the two b-quarks are also color neutral.

One can draw this heuristically as “color lines” which represent which quarks have the same color charge. In the image below, the first diagram represents the case where an intermediate Higgs is produced, while the second diagram represents an intermediate gluon.

Color lines for qq-bar → Higgs → b-jets and qq-bar → gluon → b-jets. Image from 1001.5027

For the intermediate Higgs, the two b-jets must have the same color (one is red, the other is anti-red) so that the combined object is color neutral. For the intermediate gluon, the color lines of the two b-jets are tied up to the remnants of the protons (the thick lines at the top and bottom). The result is that the hadronic spray that makes up the jets tend to be pulled together for the Higgs decays, while pushed apart for the gluon decays. This is shown heuristically below, where again we should understand the plot as being a cylindrical cross section of the detector:

Higgs decays into two b-jets (signal) versus gluon decays (background). Image from 1001.5027

One can thus define a jet superstructure variable (called ‘pull‘) to quantify how much two jets are pulled together or pushed apart. The hope is that this variable can be used to discriminate between signal and background and give us better statistics for our searches for new particles.

Anyway, that’s just a sample of the types of neat things that people have been working on to improve the amount of information we can get out of each event at hadron colliders like the LHC. I’d like to thank David Krohn, once again, for a great talk and very fun discussions. For experts, let me make one more plug for his workshop next month: Boost 2011.

OK, the second part of the title isn’t actually true, but more on that in a moment….

The fill that is currently in the LHC started at an instantaneous luminosity over 4E32:

Not only is this the highest collision rate ever achieved at the LHC, it’s also the highest ever at a hadron collider, exceeding the largest instantaneous luminosity ever recorded by Fermilab’s venerable Tevatron collider. As has been discussed by many of the US LHC bloggers, luminosity is key at this point — the larger it is, the more collisions we record, and the greater the chance that we can observe something truly new. In the four hours since the fill started, CMS has already recorded about one sixth of the useful data that was recorded in all of 2010!

As for the Pulitzer, this week Mike Keefe of the Denver Post won the 2011 Pulitzer for editorial cartooning for a portfolio of twenty cartoons that included this one about the LHC. (I’d rather not actually run the cartoon here, as I’m not sure we have the rights to it.) Good to see that we are part of journalism history!

Night and Day, Robert Weigand

 

My first note’s byline is UC Davis:

Good evening from California!

Well, it’s evening here (10:30 pm), but it’s already tomorrow on the east coast of the U.S., and in fact already time to wake up at CERN.  Here is where I usually face my conundrum: Do I stay awake and watch for the first email reports on the activities at the LHC?  Should I wait for our postdocs and students who live at CERN to respond to my emails?  If I go to sleep, what will I miss?

Unfortunately, I have an 8:00 am video meeting tomorrow, in which our postdocs on the CDF experiment at Fermilab are presenting an introduction to our new analysis, searching for signs of light dark matter in the CDF data.  (CDF has been in the news recently for an interesting result that has previously been discussed by Flip Tanedo and Michael Schmitt.)

The CDF meeting is followed by a 9:30 am video meeting with fellow CMS colleagues who are working on searches for fourth generation quarks, and it looks like one of our CMS postdocs may have something short to present there.  But this isn’t so bad: on Fridays my first meeting is at 6:30 am, which is 3:30 pm in Geneva, and many meetings are earlier than that, so I usually have to miss them. I am grateful that at least for tomorrow’s CMS meeting at 9:30, those at CERN are willing to have it at 6:30 pm, their time, which for me means I can at least get the kid to daycare and get to work formally before it begins.

Of course, even after these early meetings, the California workday still lies ahead for me, and it sometimes turns in to a very long day.  But the time is worth it— as you have gathered in these blogs, there are lots of exciting things going on in the world of particle physics these days, and I wouldn’t want to miss it!

With that, I’d better say “good night” (*yawn*) and get some sleep… the sun is fast approaching.

 

Day and Night, Google Earth

 

What the L?!

Tuesday, April 19th, 2011

There are few things that particle physicists like to talk about more than luminosity (know affectionately as “L”). We measure it obsessively, we boast about it shamelessly and we never forget to mention it in our papers, plots and talks. So what’s the big deal? What is luminosity and why is it important?

The concept of instantaneous luminosity is borrowed from the field of astrophysics, and in that field it’s used to describe how much energy a star gives off. To calculate the instantaneous luminosity, simple measure how much energy flows through a surface in an interval of time. To get the instantaneous luminosity in particle physics simply swap energy for the number of particles and the definition is the same!

The instantaneous luminosity is a measure of how many particles (blue) pass through a surface of unit area (yellow) in unit time (not shown.)

Well, not quite. If you take a quick look at any of the experiments at the LHC you’ll notice that there are two beams, so to get any meaningful measurement of luminosity you’ll have to take the flows of particles in both beams, a task which doesn’t seem easy! In order to use the concept of instantaneous luminosity we need to apply some knowledge of special relativity. We imagine that the protons in one of the beams are all at rest, and see how many protons from the other beam pass through per unit area and unit time. (The instantaneous luminosity makes more sense for fixed target experiments, where there is only one beam and the other matter is kept at rest. This is how most early experiments operated, and we’ve been stuck using luminosity ever since!)

In itself, the instantaneous luminosity is useless to us, and to make any real use of it we must combine it with a cross section. A cross section used to describe how often some process happens, and the analogy is very simple! Imagine placing lots of targets in front of the beam of particles, each one representing a different process. The larger targets will be hit by more protons, so we’ll see those processes more often. A larger cross section means a higher rate of process! To get the number of events where that process happens (per unit time) we just multiply the cross section by the luminosity, and that tells us how many “hits” we can expect. Simple!

Since having a larger instantaneous luminosity means having more events, we want to do everything we can to increase instantaneous luminosity. We can do that in quite a few ways, and the most obvious way is to increase the number of protons in the beam. After all, each proton has its own tiny (very very tiny) targets, and since the cross section of a given process is the same for each proton, you can increase the total size of a given target by increasing the numbers of protons. Another way to increase the instantaneous luminosity is to cram the same number of protons into a narrower beam, and this is called squeezing. After a while we start to reach physical limits of what we can achieve (this is due to phase space factors, beam shape parameters and all sorts of fascinating properties of the beam that would make for another blog post!) so we need to resort to simpler methods. One of the most effective methods is to increase the number of bunches in the LHC ring, and this means that instead of cramming more protons into the same part of the ring at the LHC, we put more protons in the empty regions of the ring.

The protons presents many different processes, and each process has its own cross section. This diagram is not at all to scale, and the QCD cross section is much larger than the other cross section shown!

As usual, things aren’t quite as simple as this. There are many different processes and each with its own cross section. Some of them are much, much larger than others, and most of the larger cross sections are boring to us, so if we want to get to the interesting physics we need a way to artificially reduce the sizes of the boring cross sections. (It would be nice if we could increase the sizes of the interesting cross sections instead, but that’s not physically possible at the LHC!) The notoriously large cross section at the LHC is the quantum chromodynamical (QCD) cross section, which dominates everything we see and for most people it’s an annoyance that makes it harder to find the interesting physics. To reduce the cross sections of these processes we use a prescale, which is very simple. We only record events that fire the trigger, and the trigger looks for different kinds of events. A prescale tells the trigger to ignore a proportion of a specific kind of decay, and that way we can record fewer boring events and save our precious resources for the most interesting ones.

Now if you see a plot from a collaboration you’ll often see the luminosity written on the plot, but this is not the instantaneous luminosity, it’s the integrated luminosity. To get the integrated luminosity we multiply the instantaneous luminosity by the time interval when the instantaneous luminosity was delivered. This means that it has units of inverse area, and when we multiply it by a cross section we get a number of events. This is why the integrated luminosity is so important to us- if we know the cross section for a process, and we know the integrated luminosity we can work out how many events we expect to see, and compare that to how many we actually see. This tells us when to expect a discovery, and when we find something truly new and interesting!

A typical mass spectrum plot, proudly declaring the integrated luminosity for all to see. arXiv:1103.6218v1 hep-ex

It seems elegant and simple, but personally I find the whole thing is spoiled by the choice of units and converting things ever so slightly baffling (probably not something I should admit to in public!) Instantaneous luminosity is usually measured in cm2s-1, which is an odd choice. In these units a typical value is 1033, which is an unimaginably large number! This is almost inevitable because luminosity varies so widely between experiments and as new technologies become available. If we choose new units now to make the numbers more manageable, they’ll still become ridiculously large in the future. To confuse things further the integrated luminosity is usually measured in inverse barns (as in “You can’t hit a barn with that!”). A barn is 10-28m2, so this makes the integrated luminosity a little bit easier to express in terms that don’t make my head spin. But even after that, our integrated luminosities need prefixes to make the numbers nice, so you’ll often see integrated luminosities written in inverse picobarns (pb-1) or inverse femtobarns (fb-1) and then the smaller the prefix, the large the amount of integrated luminosity! I find that the easiest way to remember whether I need to multiply or divide by 1,000 to convert the units is to just go with what feels wrong and it’ll be right.  Smaller inverse areas mean larger numbers of events. If that isn’t a crazy choice of units, I don’t know what is!

To get an idea of a typical integrated luminosity, let’s think about how much data we’d need to see a standard model Higgs boson of mass 200GeV. Let’s imagine we see 100 events which are not consistent with known backgrounds. To make our job easier, let’s think about the “gold plated” decay of H→ZZ and Z→ll, where l is a charged lepton. The branching fraction for this decay is about 25% for H→ZZ and about 7% for Z→ll, and let’s assume we are 50% efficient at reconstructing a Z. Altogether we’d need to produce about 80,000 Higgs bosons to see 100 events of this type. Dividing by the cross section of Higgs production at 200GeV gives us an integrated luminosity of 16ab-1. That’s a lot of events! Luckily, there are many more final states we can explore, and when we add it all up, it turns out we’ll have enough data to be sensitive to a standard model Higgs before too long.

That’s all very impressive, but the punchline comes from the world of “low high energy physics”, for example the BaBar experiment. Whenever I want to tease my friends at the LHC, I remind them that my previous experiment had 550fb-1 of data, about 5,000 times what we have right now, and a number the LHC will not reach any time soon!

You can usually tell what kind of physicist you’re talking to immediately by asking them what the luminosity is at the LHC. An experimental physicist will tell you in terms of data (ie inverse barns) where as an accelerator physicist will tell you in terms of beams (ie cm-2s-1.) I find it quite amusing that the accelerator physicists generally find everything up to the point of collision deeply fascinating, and everything after that a frightful bore that makes their work even more complicated, whereas the experimental physicists thinks the other way around!

For all our electro-weak enthusiasts, this past week has been a very exciting time.  The CMS Collaboration has just published our first study measuring the W+W- production cross section at 7 TeV. This study, titled “Measurement of W+W- Production and Search for the Higgs Boson in pp Collisions at sqrt(s) = 7 TeV,” is available on arXiv.org and has been accepted for publication by Physics Letters B (a peer-review journal for those who are wondering).


But before we delve into the paper proper, let’s take a moment and ask ourselves: “Why study W+W- production at all?”


For this answer, let’s take a page out of one of Flip Tanedo’s posts, “An Idiosyncratic Introduction to the Higgs,” and study the Higg’s Branching Ratios (or the percent of Higgs particles decaying by method X out of all possible decays Y).  Now one question you might be asking is: “Do particles really decay in more then one way?”


The answer is, yes.  The name of the game is that heavy particles always decay into lighter particles, unless a conservation law prevents it.  And particles will decay by different methods based on probability; it’s all random and up to chance.  However, some decay methods for a particle are more likely then others.  Looking at the plot of the Branching Ratio for the Higgs boson (which I took from Flip), the curves that are above everything else in the plot represent the decay methods that are more likely then the others (So the Branching Ratio is also a statement about probability!).


The Higgs, being a theoretically massive particle (since we have yet to observe it in a collider), can decay in numerous ways.  In the plot below, the possible ways the Higgs can decay are:

  • A quark an anti-quark (b and the b with a bar over it; c and the c with a bar over it).
  • Two W bosons (with opposite electric charged because the Higgs has zero electric charge).
  • Two tau (ττ) leptons (with opposite electric charge).
  • Two gluons (the gg symbol).
  • Two Z bosons (the Z is also electrically neutral).
  • Two photons (γγ)
  • A Z and a photon

 

 

But, since the Higgs hasn’t been found yet experimentally, physicists are unsure of its actual mass (and thus what it will decay into).  The theory does give us clues though (as do other experiments, more on this later).


But how do particle physicists look for a new particle?  One way to find them is to search for peaks in a mass distribution.


Now since energy and mass are related, the more energetic an object is, the more mass it has.  This doesn’t really matter in our everyday lives, because the increase is very, very small; but if you’re a sub-atomic particle (or an atomic scale particle) it matters a lot!  As an example, when protons are accelerated in the LHC, they become several thousand times more massive to when they are at rest!


But how do you make a mass distribution?  Well, physicists take two objects (say a W+W-, or a μ+μ-) and look at the sum of their masses.  On the x-axis you plot the mass of the pair, and on the y-axis you plot the number of times you found a pair with that mass value.  Here is an example of what you would get for a pair of muons (μ+μ-):


Courtsey of the CMS Collaboration, arXiv:1012.5545v1, 26 Dec 2010

 

So in this plot of “Events” vs. “Muon Pair (μ+μ-) Mass” (read Y vs. X), we see three peaks!  These peaks correspond to three different mesons (a meson is a class of particles made up of a quark and anti-quark); in order they are the Υ(1S), Υ(2S), and Υ(3S).  Sadly in particle physics we started to run out of symbols. It is common now to name particles based on how the quarks bind together to form the particle, hence the (1S), (2S) and (3S) after the symbol “Υ”.  These represent three different “bound-states” (and thus three different particles) of the quarks making up the Upsilon (“Υ”).

 

Anyway…

 

Now back to our Branching Ratio plot above.  Notice how the W+W- line is above all the other lines for masses greater than ~130 GeV/c2.  This means that the Higgs has a higher probability of decaying into a W+W- pair for this region (mass > 130 GeV/c2)!  Therefore, if you’re an experimentalist looking to find the Higgs, one of the best places to look is in events with a W+W- pair coming out of the proton-proton collision!!!


Perhaps its also interesting to take a look at the current constraints placed on the Higgs mass.  The LHC’s ancestor, the Large Electron Positron (LEP) Collider, has placed a lower limit on the Standard Model (SM) Higgs Boson mass of 114.4 GeV/c2 with a 95% Confidence Level (C.L.).  Previous precision electroweak measurements have constrained the SM Higgs mass to be less than 185 GeV/c2 (95% C.L.).  And the US’s Tevatron Collider has excluded the mass range of 158-175 GeV/c2 (95% C.L.).  In summary, the current unexplored regions of the SM Higgs mass are 114.4-158 GeV/c2 and 175-185 GeV/c2. Or more precisely, if the SM Higgs boson does exist, then it will most likely have a mass between 114.4-158 GeV/c2 or 175-185 GeV/c^2, and for some portions of these ranges the Higgs will decay over 90% of the time to a W+W- Pair!!!


As a note on book keeping, this study used all of the data collected by the CMS Detector in 2010!


So, what did my colleagues in the electro-weak sector of CMS look for?  Since a W will decay into a charged lepton and the corresponding lepton-neutrino, (i.e. W± → l±vl); CMS Physicists looked for events containing e+e-, μ+μ-, e+μ- (or e-μ+) pairs which have a large component of their momentum in the plane perpendicular to the two proton beams.  In addition, CMS Physicists also looked for events containing large missing transverse energy.


Since two neutrinos are present in these W+W- events; and the CMS Detector cannot detect neutrinos directly (they just interact too weakly!), physicists must infer their presence by looking for this “missing transverse energy”.

But what is missing transverse energy?  To measure missing transverse energy, we look at the energy coming out in all directions in the transverse plane, the plane perpendicular to the beam pipe where the protons collide.  If the energy going out in one direction does not balance the energy going out in the opposite direction, we know that a particle escaped detection.

Or more simply, Ta-da, a neutrino went that-a-way. This is also how we would detect other particles that do not interact with matter in an ordinary way.


Now that’s the basics of Event Selection, the full details can be found in section 3 of the paper (and if anyone has any questions I will try to answer them!), but let’s move on for now.

CMS Researchers found 13 events total, in which a W+W- pair was produced (this is in agreement with simulation, where 13.5 events where found).  Now, let’s take a moment to ponder this.  Researchers looked at all of the data from 2010, and only found 13 events! This shows that W+W- production is an incredibly rare process!

 

Now, for some results!  Experimentalists have found the W+W- production cross-section at a center of mass energy of 7 TeV in proton-proton collisions to be σ = 41.1 ± 15.3 ± 5.8 ± 4.5 pico-barn (pb, for an idea of what a barn is, see this post by Ken Bloom).  The uncertainties listed on this cross-section value are due to statistical, systematic, and luminosity factors, respectively.

So what!?  Well, this is in agreement with the theoretical prediction given by the Standard Model (SM) at Next-to-Leading Order (NLO).  The SM prediction was 43.0 ± 2.0 pb.

So our theory is correct!  It matches the experimental data!

 

Also, to reduce uncertainties, CMS Physicists also took the ratio of the W+W- to W± production cross sections.  In this case, the uncertainty in the proton beam’s luminosity cancels out.  The experimental ratio of these two cross sections was found to be 4.46 ± 1.66 ± 0.64 ·10-4 (uncertainties are again due to statistical & systematic factors, respectively), whereas the theoretical value of this ratio was given to be 4.45 ± 0.30 · 10-4.  Now this is even better agreement! Which is why experimentalists choose to compare these two ratios instead.

 

Now onto the “Glorious Higgs!”  The process we are now interested in is:

H → W+W- → 2l 2vl

Where: l is a lepton, and vl is the corresponding neutrino.

CMS Physicists modified the event selection slightly for this.  The theory tells us when the Higgs decays into a W+W- pair the angle between the two outgoing oppositely charged (electric) leptons is very small (close to zero degrees), whereas when we are just looking at background processes (such as pure W+W- production, top quark events, ect…) the angle is very large (close to 180 degrees).  So experimentalists made a measurement of the angle between these two leptons to get an idea if a Higgs boson had decayed into a W+W- pair, shown here:

So in this plot we have our 13 selected W+W- events, they are the black experimental data points (and their uncertainties), the colored portions are the theoretical predictions given by the SM for various known processes.

Now for our  Higgs search, W+W- is a background (shown in brown)! Our other backgrounds being:

  • Dark Blue: production of a Z boson plus jets (hadronic activity).
  • Pink:  top quark pair production or single top quark with a W boson production
  • Green: di-boson production, like WZ, or ZZ, or γZ, etc…
  • Light Blue: W plus jets (hadronic activity).

 

Now if we assume the Higgs Boson has a mass of 160 GeV/c2 then the theoretical prediction of the angle between the two charged leptons in our events is shown as the solid black line (which has a peak near zero, the angle between the outgoing leptons is small for Higgs production). So from this plot, we see that we haven’t found any evidence that a Higgs Boson with a mass of 160 GeV/c2 has been found (i.e. there are not a lot of points near the peak in the black solid line).

 

But that was just one value for the Higgs mass.  What about the others?  As particle physicists we need to look at all possible ranges for the mass of the Higgs.  CMS Physicists decided to look at a large range, of 120-600 GeV/c2.  This is shown here:

 

 

So this is a very colorful plot, but what does it mean?

 

The Y-Axis is the Higgs production cross section multiplied by the Higgs Branching Ratio to W+W- pairs.  The X-axis is the Higgs Mass.  The blue line is experimental observation.  This is the region of the “phase-space” we where able to see with this study.  The “phase-space” is the possible ways something can happen.  When you’re playing Monopoly, and you roll two dice, the most likely outcome for the sum of the dice roll is 7.  This has a large phase space….you can make 7 with a (1,6), or (2,5) or (3,4) on each dice.  Whereas having both dice add to 12 has a very small phase space, this only happens when each die comes up 6.

 

So the blue line represents how much of the phase space we were able to see.  The green and yellow lines are the 95% C.L. bands on the blue lines.

 

The solid red line near the bottom of the graph is the theoretical prediction given by the current Standard Model for how the Higgs boson’s “phase space” may behave.   Notice the experimental blue line, and the theoretical red line are nowhere near each other! Since we didn’t see many data points in the Higgs (160 GeV/c2) region in the graph of the angle between our two charged leptons above, it shouldn’t shock us that the blue line is nowhere near the solid red line (at 160 GeV/c2).  But this doesn’t mean that there was anything wrong with the experiment.  On the contrary, what this means is that CMS Physicists did not have conclusive evidence to say whether or not the Higgs will or will not decay into a W+W- pair (based on a statistically significant dataset).

So the current theory (the Standard Model) tells us that the Higgs can decay into a W+W- pair; but with the current data CMS Physicists where unable to prove or disprove the Standard Model’s theoretical prediction.

 

But, the final line is, what I think, the most interesting.  This is the red portion with the criss-crossing pattern around it (second item on the legend in the above graph).

Currently in the Standard Model there are three generations of quarks that have been experimentally confirmed.  Theorists have often wondered if this is the full story.   Meaning, could a possible 4th generation of quarks/leptons exist and we just haven’t seen them yet?  This criss-crossing red line gives the phase space for how the Higgs would decay if this 4th generation did exist.

Now notice the blue line is underneath the criss-crossed red line for a Higgs mass of 144-207 GeV/c2 when you assume there is a 4th generation of quarks/leptons.

The fact that the blue line is  under the criss-crossed red line means that we were conclusively able to probe this portion of the phase space for the 4th generation hypothesis.  Since we did not see any conclusive evidence (again, reference angle between our charged leptons in the graph above) of Higgs decaying into a W+W- pair for the mass region of 144-207 GeV/c2, we were able to make a definitive statement:

 

If the Standard Model has a 4th Generation of Quarks/Leptons, and the Higgs boson has a mass between 144-207 GeV/c2, the it does not decay to a W+W- pair.

 

But the jury is still out on the current three generation cases.  We weren’t able to probe that region of the phase space (blue line nowhere near solid red line).  As is often the case in all fields of science, we need more data.


Until next time,

-Brian

 

(I would like to thank Kathryn Grim for her helpful advice regarding the presentation of this material)

Hi All,

Perhaps you’ve heard of the Standard Model of Particle Physics. (If you’ve been following Flip’s ongoing series, you’ve certainly heard a lot.) In a nutshell, the Standard Model is a theory describing the fundamental particles of matter and the forces that mediate their interactions, and it’s the theoretical framework in which we at CERN generally understand our experimental data. In the three decades since its formulation, the Standard Model has been extraordinarily successful and accurate in its predictions, and with the notable exception of the SM Higgs boson, all of the pieces to this particle puzzle are already in place.

The Standard Model is so boring.

However, for a variety of reasons that I’ll keep outside the purview of this post, we believe that there’s physics “beyond” the Standard Model. As with most things in high-energy physics (HEP), this has been given a practical acronym: BSM (Beyond the Standard Model) physics. Many BSM theories predict the existence of one or more new (non-SM) particles. Here’s a scandalously abridged list:

  • Supersymmetry (SUSY) predicts “superpartners” or “sparticles” corresponding to every current SM particle
  • in addition to the three generations of matter particles already observed, there could be a fourth, more massive generation consisting of two quarks and two leptons
  • because the SM Higgs just isn’t enough! Little Higgs, Fat Higgs, Composite Higgs, Hidden Higgs …
  • W’ and Z’
  • Leptoquarks

Theorists are very creative! This list could go on for quite a while… :)

Given that I’m an experimentalist, however, I’m more directly interested in how one goes about detecting these hypothetical particles. And as an entirely practical matter, the first thing you have to do is actually choose which of these particles you’ll be searching for. This isn’t as simple as it sounds! Here are some general issues to take into consideration when making your decision:

  • How much data is needed for a discovery? Or, alternatively, How large is the production cross-section? If your particle has a large production cross-section, it will be produced in copious amounts by the LHC, and therefore less data is required for you to find it. Since the LHC is still relatively young, and the number of collisions recorded by the experiments is only a tiny fraction of the expected total, many analyses — BSM searches especially! — are limited by statistics. We hope to have about 1 fb-1 of data by the end of this year. If you expect to be sensitive to your particle only with 100 fb-1, then you will be waiting an awfully long time…
  • Is the particle model-independent? It pays to be general. If your particle is entirely dependent on the viability of a particular BSM model, and that model is subsequently ruled out by experimental data, then where does that leave you? Back at the beginning, looking for a new particle to discover. Furthermore, the more general the particle, the less fine-tuned your analysis will be. Many BSM particles resemble each other, at least in a general sense, so you can imagine a situation where you’re so focused on finding one specific particle that you don’t notice another one lurking in the data.
  • Are other people already looking for your particle? Collaboration is essential in a field like ours, but do make sure that there’s room for you on this search before you barge in. Perhaps the other analysts are very territorial. Maybe there are simply too many of them already. Or could it be that you don’t want to share the Nobel Prize when you discover your new particle…? Ask around ahead of time, even email the folks in charge (“conveners”) to find out who is working on what. Given the aforementioned creativity of theorists, there’s sure to be particles still in need of analysts!
  • Is it available at The Particle Zoo? Just sayin.

In truth, these are only a few of the many considerations that go into choosing a new particle to search for. From pure theory to pure politics, this decision is not one to be taken lightly! Think carefully before setting your heart on (and devoting many months of work to) your new particle — then go for it.

– Burton :)

My Crazy Semester: Cutting Back

Saturday, April 9th, 2011

Things aren’t going as quickly as I hoped they would when I wrote my last post on my thesis. I’ve had to choose between actually filing my thesis this semester and getting my results complete and published as quickly as possible — and my collaborators on ATLAS will be pleased to hear I’ve chosen the latter. It feels like robbing Peter to pay Paul, but I have to prioritize somehow. The problem, in the end, was just that writing the introductory chapters of my thesis was more work than I imagined; or maybe it was really that I knew I could use the summer as spare time, so I couldn’t force myself to work hard enough. In any case, I do have the summer, so things will be fine. My results are starting to move through ATLAS, and hopefully the remaining work will mostly be cosmetic. Once that’s definitely in good shape I’ll be able to focus on my thesis and file it in the first month or two of the summer.

In the meantime, I’m cutting back on other things I enjoy working on but don’t have time for. That means no more regular volunteering for the Prison University Project, where I’ve been teaching basic math to prison inmates for most of the time I’ve been in grad school. It also means, a bit more slowly, handing off my organizational responsibilities for the math class there, which have been great practice for academic politics. Finally, it means giving up on blogging for a while; I won’t be able to write more about finishing my thesis, or the transition to my new job — at least not until it’s started and I know if I have time!

So you won’t see me here for several months at the very least. In the meantime, you can see my occasional professional opinions and random comments about coffee on my Twitter feed, @sethzenz. I hope to be back as soon as I can, but in any case, thanks for reading!