- pagebs's home page
- Posts
- 2017
- June (1)
- 2016
- 2015
- 2014
- December (2)
- November (1)
- October (2)
- September (4)
- August (1)
- July (2)
- June (2)
- May (3)
- April (2)
- March (2)
- February (2)
- January (1)
- 2013
- November (1)
- October (3)
- September (2)
- August (3)
- July (4)
- June (4)
- May (2)
- April (2)
- March (2)
- February (4)
- January (2)
- 2012
- December (2)
- November (3)
- October (2)
- September (1)
- August (3)
- July (3)
- June (6)
- May (2)
- April (3)
- March (3)
- February (2)
- January (2)
- 2011
- December (2)
- November (1)
- October (7)
- September (3)
- August (2)
- July (5)
- June (2)
- May (2)
- April (4)
- March (2)
- January (1)
- 2010
- December (2)
- October (4)
- September (1)
- August (4)
- July (1)
- June (2)
- May (2)
- March (4)
- February (2)
- January (2)
- 2009
- December (1)
- November (2)
- October (1)
- September (2)
- August (1)
- July (2)
- June (1)
- May (2)
- April (2)
- March (1)
- February (1)
- January (6)
- 2008
- My blog
- Post new blog entry
- All blogs
Run 9 200GeV Dijet Asymmetry: RT Cut Investigation
Here I take another look at the RT cut I use in my analysis ...
At the jet meeting on 5/6/14, some questions were raised about the implementation of my RT cut. Currently I cut events in which both jets in the dijet have neutral fractions of 1. There was a question and some concern about exactly how that cut was implemented in my code, the exact condition was:
if(jet1->rt() == 1 && jet2->rt() == 1) continue
It was suggested that instead of making a cut on neutral fraction, I require that at least one jet had at least one track, so the condition was:
if(jet1->numTracks() == 0 && jet2->numTracks() == 0) continue
As would be expected, these two conditions are equivalent.
Figure 1: Comparison of the original neutral fraction cut used in my analysis (Blue) and the number of tracks cut suggested during the jet meeting (Red). The dijet mass of the events failing the cuts is shown. The spectra are equivalent.
I also compared the rt cuts above with two other cuts: eliminating events in which one jet had a neutral fraction above 0.95, and eliminating events in which both jets had a neutral fraction above 0.95.
Figure 2: The RT spectra of events which did not pass the various cuts (the black curve shows the RT spectrum of all events with no RT cut for reference). The Red curve shows the events which failed the one jet RT>0.95 cut. The Blue curve shows the events which failed the both jet RT>0.95 cut. The Green curve shows the events which fail my both jets RT=1 cut.
Figure 3: Same as figure 2, but now showing the invariant mass spectra of the events failing the various cuts (with the full mass spectrum as reference).
- pagebs's blog
- Login or register to post comments