-
Notifications
You must be signed in to change notification settings - Fork 0
/
oldsearch.tex
1473 lines (1282 loc) · 114 KB
/
oldsearch.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{Search for Heavy Stable Charged Particles \label{sec:search}}
\section{Foreword}
The contents of this chapter are included in the paper (cite my own paper) authored by the CMS collaboration. The paper includes five searches for HSCPs in data collected
by CMS during 2011 and 2012 running each designed to have sensitivity for various different signatures of HSCP. The work was done in a small group within the CMS collaboration
with myself being one of the central researchers. The five searches are all done in the same framework
so most of my work was applied to all five analyses. The five searches are labelled \muononly, \tktof, \tkonly, \multi, and \fract.
For parts of the searches that were different for the five searches I was essentially the only person to work on the \muononly analysis and contributed largely to the \tktof.
I worked on the \tkonly\ and \multi searches to a slightly smaller degree. My work on the \fract search was mostly limited to work that was applied across all five searches.
Therefore this chapter focuses on the \muononly\ and \tktof searches and with highlighting of the specific parts of the other three searches I worked on.
While the paper included both the 2011 and 2012 data taking periods, the \muononly\ analysis only uses the 2012 data. Due to this the 2012 data is the focus of this paper
with a statistical combination of the 2011 and 2012 data for the other four analyses is preseneted at the end of the chapter. The procedure for analyzing the 2011 data
is the same as for the 2012 data.
\section{Introduction}
As discussed in section~\ref{sec:BSM} new heavy long-lived charged particles are predicted in many extensions to the SM. HSCP with
lifetime $\gtrsim 40$ns are likely to traverse the entire CMS detector before decaying and will thus be directly detectable.
A majority of HSCPs with mass $\gtrsim 100$ GeV/$c^2$ will have a velocity, $\beta \equiv v/c,$ less than 0.9.
As no heavy long-lived particles are present in the SM, HSCPs would be the only high momentum particles produced at the LHC with $\beta$ not very close to one.
Detector signatures unique to slow moving particles are exploited to search for HSCP.
The backgrounds to the search are SM particles with detector mismeasurement and in some cases
muons coming from cosmic rays.
Five different searches are presented, one requires only that a track be found in the muon system, this is referred to as the \muononly\ analysis.
This analysis is expected to still have sensitivity when all HSCP are produced electrically neutral. The
second requires that the stand alone track be matched to a track in the inner tracker, referred to as the \tktof\ analysis. This analysis is especially
powerful for lepton like HSCP. The third is the \tkonly\ analysis that only requires the HSCP be found in the inner tracker so that it can be sensitive to HSCP
becoming neutral in the calorimeter and leaving no hits in the muon system. The last two analyses look for particles with $Q \neq 1e$.
The \multi\ analysis looks high charge HSCP with a reconstruction like the \tktof\ analysis and the \fract\ analysis which looks for fractionally charged analysis with
a reconstruction signature like the \tkonly\ analysis.
\section{Samples}
Data collected with the CMS detector during 2012 running at an energy of $\sqrt{s}=8$ TeV are searched. The data collection was split into four periods labeled A, B, C, and D.
All data collected by CMS unundergo a prompt reconstruction as described in section~\ref{sec:CMSSW}. The first two run periods, A and B, underwent an additional
rereconstruction so as to have the latest reconstruction improvements and calibration constants. The rereconstructed samples are used for the A and B periods while the promptly
reconstructed samples are used for the C and D periods.
CMS has a Data Certification team which checks all data collected and certifies the data as good for analysis. The certification requires all detector subsystems to be
operating at full ability, or at least close enough to full ability to not have a detrimental effect on offline analyses. Additionally higher level objects such as muons
and electrons are checked to make sure the data are good for physics analyses. For this particular analysis the RPC trigger plays an important role, as discussed in
section~\ref{sec:trigger}, and so the RPC is required to be included in the L1 trigger for all data searched. This leads to this search using slightly less data
than most other CMS analyses on 2012 data. The data sample used by this analysis corresponds to 18.8$fb^{-1}$.
Multiple different signal MC samples are produced to account for the multiple different signatures a HSCP could have. Pair production of gluino and stop samples with
masses in the range 300--1500 GeV and 100--1000 GeV, respectively, are generated in the split SUSY scenario~\cite{SplitSUSY1, SplitSUSY2}. The gluino samples are produced
with the assumption of a high squark mass of 10 TeV. The samples are generated using PYTHIAv8.153.
Gluinos and stops have color charge and as such will form composite hadrons with SM quarks and gluons after production, referred to as $R-hadrons$.
These $R-hadrons$ can be electrically neutral or have charge Q, taken here and everywhere else in this paper unless otherwise stated as the absolute value of the charge,
of 1e or 2e. One particularly interesting case is gluino-gluon balls which will be electrically neutral. The fraction of gluinos forming these balls is
a free parameter in the theory and samples are used with the fraction, f, set to f=1.0, 0.5, 0.1, a value of 1.0 should be assumed in this paper unless
otherwise stated. If f=1.0 then all gluino $R-hadrons$ will be produced electrically neutral.
After the $R-hadrons$ are produced, they will propagate out to and interact with the CMS detector. In the interactions with the CMS
detector it is possible for the $R-hadrons$ to undergo charge exchange where the electrical charge of the $R-hadron$ can change, possibly going from neutral
to charged or from charged to neutral. The process occurs through an exchange of quarks with the detector material in nuclear interactions~\cite{SMP}. The modelling of these
interactions has some uncertainty and two different scenarios are studied, the first is the model presented in~\cite{Cloud, Cloud2} which is referred to
as the cloud model, the second model results in all $R-hadrons$ becoming neutral after a nuclear interaction as described in~\ref{ChargeSuppres}.
Most HSCP will not have a nuclear interaction while passing through the CMS tracker however a very large majority will have one in the calorimeter system.
The above effects can lead to many interesting signatures in the CMS detector. R-hadrons neutral after hadronization will generally remain neutral through the tracker
but may gain charge in the calorimeter under the cloud model and leave hits in the muon system. If the gluino-gluon ball fraction is 1.0 then this would
be the only way to detect gluino HSCP, the \muononly\ analysis is designed to have sensitivity to HSCP of this type. On the other hand HSCP produced charged under
the charge suppression model will likely be charged in the tracker but always neutral in the muon system. The \tkonly\ analysis is designed to be sensitive
to HSCP of this type. HSCP produced neutral under the charge suppression model would never be charged during their passage through CMS and thus are outside the scope
of a HSCP search, they would fall into searches for dark matter.
%One example of this is a neutral R-meson
%made of a a gluino, a down quark, and a down anti-quark interacting with a proton, which is composed of two up quarks
Pair production of stau samples are produced under the minimal gauge mediated symmetry breaking (mGMSB) scenario~\cite{GMSB} using the SPS7 slope~\cite{slopes}.
The ISASUGRA version 7.69 program is used to set the particle mass scale and decay table. The program fixes a number of mGMSB parameters. The number of messenger particles
is set to to three, $tan \beta = 10$ ($\beta$ used differently than for speed above), $\mu>0$, $C_{Grav}>10000$, and $M_{Mes}/\Lambda>2$.
The high value of $C_{Grav}$ results in the stau being long-lived while varying $\Lambda$ from 31 to 160 TeV gives staus within a mass range of 100--494 GeV. The produced
mass spectrum and decay table are passed to PYTHIAv6.426~\cite{Pythia64}. Stau production proceeds by either by direct electroweak production or from the cascade
decay of other particles (usually through the pair production of gluinos and stops). Cascade decay is dominant due to the strong nature of the production mechanism.
In order to give the best results while maintaining model independence two stau samples are used. One using all production mechanisms (GMSB) and one only with staus only
produced through direct production (Pair prod.). The second sample is less dependent on the model parameters.
The last of the signal samples used is modified Drell-Yan production of long-lived lepton like fermions. The fermions have arbitrary electric charge and are
neutral under SU(3)C and SU(2)L and thus couple only to the photon and Z boson. As all SM particles that reach CMS have electrical charge, Q, equal to $\pm1e$ or
are neutral, the possbility of HSCPs with non-unit charge is interesting. Note for the rest of this paper Q is taken as the absolute value of the electrical charge
unless specifically stated otherwise. The particles can generically be divided by whether they have Q<1e or Q>=1e.
The production of these particles is simulated with PYTHIAv6.426~\cite{Pythia64}. Samples are produced with
charge Q = 1/3, 2/3, 1, 2, 3, 4, 5, 6, 7, and 8e for masses of 100-500 GeV for Q<1e, 100-1000 GeV for 1e <= Q <= 5e, and 200-1000 for Q > 5e.
The samples can generically be divided by whether they have Q<1e or Q>=1e.
All MC samples are overlaid with simulated minimum bias events, see Section~\ref{sec:LHC}, to reproduce the pile up observed in data. After this reweighting there is a very
good agreement between data and MC as seen in Figure~\ref{fig:PV}.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_Signal_8TeV_PV_BS}
\renewcommand\baselinestretch{1}\caption[Gluino1200f100 System Pt vs MET]
{Distribution of number of vertices in Data and various MC samples
}
\renewcommand\baselinestretch{\@spacing}
\label{fig:PV}
\end{center}
\end{figure}
\section{Trigger \label{sec:trigger}}
All events used in the search are required to be triggered by one of three algorithms. The algorithms require a track to be found
and/or missing transverse energy, PFMET, as calculated by the particle flow algorithm~\cite{CMS-PAS-JME-10-003}.
The particle flow algorithm attempts
to reconstruct all particles in an event, then calculates PFMET as the negative vector sum of the transverse momentum of the particles. As the proton-proton collision occurs
at rest in the transverse plane, PFMET is meant to represent the vector sum of all particles not found by the particle flow algorithm. For most CMS analyses PFMET is created
by either the limited detector response in finding all tracks in an event and determining their momentum or from neutral particles in the event which leave no signals
in the detector. These neutral particles could be neutrinos from the standard model or new neutral particles created in a BSM theory such as supersymmetry.
For HSCP the
PFMET often arises because of details of the particle flow algorithm. The algorithm assumes SM particles and rejects tracks that do not conform to the properties expected
of a SM particle. Two types of possible HSCP tracks are rejected by the algorithm. The first is tracks reconstructed only in the muon system. The only SM particles that
are expected to reach the muon system are muons and muons should have a matching track in the inner tracker. HSCP produced neutral then acquiring charge as they propagate
through CMS usually would only have a track in the muon system and as such would not be included in the PFMET calculation.
The second is tracks produced charged but
becoming neutral as they propagate through CMS.
The particle flow algorithm rejects tracks reconstructed only in the inner tracker that have a track $p_T$ much larger
than the associated energy deposited in the calorimeter. As an HSCP only deposits approximately 10GeV of energy in the calorimeter and normally have $> 100$GeV of momentum
HSCP neutral in the muon system will likely be rejected.
These two effects lead to PFMET in HSCP events to be roughly equal to the vector sum of any HSCP neutral in
either the muon system or the inner tracker, less however much energy they deposit in the muon system. This effect can be seen in Figures~\ref{fig:SystPtTrigger}
and~\ref{fig:SystPtTriggerN} which compare the di-HSCP system with online PFMET in events with at least 150 GeV of online PFMET.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200_f100SystPhiMET}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200_f100SystPtMET} \\
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200_f100SystPtDiffMET}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200_f100SystPtEff}
\renewcommand\baselinestretch{1}\caption[Gluino1200f100 System Pt vs MET]
{Comparison of di-HSCP system with online PFMET for a 1200 GeV Gluino $f=1.0$ sample in events with at least 150 GeV of online PFMET.
Top Left: Online PFMET $\phi$ versus di-HSCP system $\phi.$ Top Right: Online PFMET value versus di-HSCP system $p_T$.
Bottom Left: Difference between di-HSCP system $p_T$ and online PFMET value.
Bottom Right: Probability to have online PFMET greater than 150 versus di-HSCP system $p_T$.
}
\renewcommand\baselinestretch{\@spacing}
\label{fig:SystPtTrigger}
\end{center}
\end{figure}
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200N_f10SystPhiMET}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200N_f10SystPtMET} \\
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200N_f10SystPtDiffMET}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/search/Gluino_8TeV_M1200N_f10SystPtEff}
\renewcommand\baselinestretch{1}\caption[Gluino1200f100 System Pt vs MET]
{Comparison of di-HSCP system with online PFMET for a charge suppressed 1200 GeV Gluino $f=0.1$ sample in events with at least 150 GeV of online PFMET.
Top Left: Online PFMET $\phi$ versus di-HSCP system $\phi.$ Top Right: Online PFMET value versus di-HSCP system $p_T$.
Bottom Left: Difference between di-HSCP system $p_T$ and online PFMET value.
Bottom Right: Probability to have online PFMET greater than 150 versus di-HSCP system $p_T$.
}
\renewcommand\baselinestretch{\@spacing}
\label{fig:SystPtTriggerN}
\end{center}
\end{figure}
One trigger issue unique to slow moving particles is the acceptance of the L1 trigger. If an HSCP arrives in the muon system too late it can trigger the
readout of the wrong bunch crossing. As most of the CMS subdetectors, though not the muon system, are designed to not readout data coming from adjacent bunch crossings
the data from the correct bunch crossing would be lost. To help deal with this members of the CMS L1 trigger team developed a special configuration of the
RPC L1 trigger to partially recover HSCP that arrive in the muon system in the bunch crossing following the crossing they were produced in.
The configuration creates a duplicate copy of all RPC hits and sends them to the muon trigger in the bunch crossing immediately preceding the arrival of the hits.
This allows for HSCP that
arrive in the RPCs 0.5 -- 1.5 bunch crossings later than a collision muon would to still trigger the readout of the correct event. For particles that arrive in the RPC
in the correct bunch crossing a coincidence with the LHC beam crossing through the machine is required to prevent the readout of the previous event. This configuration
was possible for 2012 running as the proton bunches were separated by 50ns despite having 25ns wide bunch crossing windows.
The first of the three algorithms used requires both a track to be found in the muon system with $p_T > 70$GeV and $|\eta| < 2.1$ as well as MET $ > 55$GeV.
For the first 700$pb^{-1}$ of 2012 running the threshold was at 65GeV. The signal samples are weighted
to account for the amount data taken at each threshold. Events collected with this trigger are only used
in the \muononly\ analysis.
The second algorithm requires a track matched in both the inner tracker
and muon system to be found by the HLT with $p_T > 40$GeV and $|\eta| < 2.1$. The only requirement for the third algorithm is PFMET $ > 150$GeV.
The second and third algorithms are used in all the analyses.
The decision to use the pure PFMET trigger even though a muon signature is required offline is prompted by the late arrival of the HSCPs in the muon system.
Even with the RPC configuration described above very slow moving HSCP can trigger the readout of the wrong event but still be reconstructed offline
if the event has been triggered by the pure MET trigger. This can be seen in Figure~\ref{fig:TriggerEffVsBetaGl} which shows the trigger efficiency versus $\beta$
with and without the pure MET trigger. Thus using the pure MET trigger allows the search to probe lower $\beta$ particles.
As color charged $R$-hadron can be neutral
while traversing CMS or arrive so late to the muon system that they are not able to be reconstructed offline an effective detector acceptance is defined
that at least one HSCP be reconstructed offline. Thus Figure~\ref{fig:TriggerEffVsBetaGl} shows the efficiency requiring an HSCP be reconstructed as a a stand alone track,
as in the \muononly\ analysis, and as a global track, as in the the \tktof\ analysis.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.32\textwidth]{figures/search/Gluino_8TeV_M1200_f100MatchedSA}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.32\textwidth]{figures/search/Gluino_8TeV_M1200_f10MatchedSA}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.32\textwidth]{figures/search/Stop_8TeV_M800MatchedSA}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.32\textwidth]{figures/search/Gluino_8TeV_M1200_f10MatchedGl}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.32\textwidth]{figures/search/Stop_8TeV_M800MatchedGl}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.32\textwidth]{figures/search/GMStau_8TeV_M494MatchedGl}
\caption{Trigger efficiency as a function of the $\beta$ of the fastest HSCP reconstructed in the event.
Top Row: Requiring reconstructed track be stand alone for 1200 GeV Gluino $f=1.0$ (left), 1200 GeV Gluino $f=0.1$ (middle), and 800 GeV Stop (right) samples.
Bottom Row: Requiring reconstructed track be global for 1200 GeV Gluino $f=0.1$ (left), 800 GeV Stop (middle), and 494 GeV GMSB Stau (right) samples.
\label{fig:TriggerEffVsBetaGl}}
\end{figure}
The efficiency for each trigger as well as the combined efficiency is listed for various signals in Tables~\ref{tab:triggEffSA} and ~\ref{tab:triggEffGl} in events
with at least one HSCP reconstructed as a stand alone track and global track respectively.
\begin{table}
\begin{center}
\caption{Trigger efficiency for various models considered using the SingleMu, PFMET, L2Mu+MET or a combination of the three.
\label{tab:triggEffSA}}
\begin{tabular}{|l|c|c|c|c|c|} \hline
Model & Mass & Mu40 & PFMET150 & L2Mu+MET & Total \\ \hline
Gluino $f=0.1$ & 400 & 35.55 & 19.41 & 34.28 & 58.56 \\
Gluino $f=0.1$ & 800 & 31.63 & 22.57 & 31.21 & 54.88 \\
Gluino $f=0.1$ & 1200 & 26.62 & 20.45 & 24.63 & 47.52 \\
Gluino $f=1.0$ & 400 & 5.55 & 23.22 & 36.63 & 46.07 \\
Gluino $f=1.0$ & 800 & 5.01 & 24.50 & 31.88 & 43.41 \\
Gluino $f=1.0$ & 1200 & 3.69 & 20.62 & 23.62 & 35.45 \\
Stop & 200 & 42.79 & 11.15 & 27.31 & 58.80 \\
Stop & 500 & 42.07 & 19.79 & 31.13 & 61.21 \\
Stop & 800 & 41.57 & 21.57 & 30.33 & 60.73 \\ \hline
\end{tabular}
\end{center}
\end{table}
\begin{table}
\begin{center}
\caption{Trigger efficiency for various models considered using the SingleMu, PFMET, or a combination of the two.
\label{tab:triggEffGl}}
\begin{tabular}{|l|c|c|c|c|} \hline
Model & Mass & Mu40 & PFMET150 & Total \\ \hline
Gluino $f=0.1$ & 400 & 51.87 & 16.06 & 59.09 \\
Gluino $f=0.1$ & 800 & 46.50 & 20.50 & 56.42 \\
Gluino $f=0.1$ & 1200 & 38.96 & 19.56 & 49.95 \\
Gluino $f=1.0$ & 400 & 41.81 & 19.36 & 51.76 \\
Gluino $f=1.0$ & 800 & 37.83 & 21.57 & 49.01 \\
Gluino $f=1.0$ & 1200 & 31.70 & 21.16 & 45.21 \\
Stop & 200 & 58.43 & 7.69 & 61.54 \\
Stop & 500 & 56.91 & 17.40 & 64.44 \\
Stop & 800 & 56.15 & 20.49 & 65.59 \\
GMSB Stau & 100 & 97.86 & 14.74 & 98.06 \\
GMSB Stau & 308 & 97.03 & 17.53 & 97.47 \\
GMSB Stau & 494 & 95.56 & 17.76 & 96.35 \\
PP Stau & 100 & 95.06 & 0.17 & 95.09 \\
PP Stau & 200 & 95.78 & 0.37 & 95.82 \\
PP Stau & 494 & 95.23 & 1.16 & 95.36 \\ \hline
\end{tabular}
\end{center}
\end{table}
Muons from cosmic rays are an important background for the \muononly\ analysis. To study and predict them a trigger that selects events when no beams are passing through
CMS is used. The trigger requires the presence of a stand alone track with $p_T > 20$GeV, no coincidence with the LHC beams and for the event not to be flagged as
beam halo. The stand alone track reconstruction used for the cosmic trigger is slightly different than for the collision trigger as it is not updated at vertex, the
meaning of this is discussed in section~\ref{sec:preselection}. However offline both reconstructions are required so no bias is introduced.
\section{Selection Variables}
The low velocity of the HSCP leads to two interesting detector signatures. The first is that the particles will arrive at the detector elements later than SM particles would.
The muon system, being the furthest detector element from the interaction point, has the largest timing difference. The measurement of the arrival time of particles in the
muon system is discussed in section~\ref{sec:timing}.
The second signature is that a slow moving HSCP will have a larger ionization energy loss in the silicon tracker than SM particles will.
The dependence of the ionization energy lost on velocity is described by the Bethe-Bloch formula~\cite{PDG}. SM particles with momentum 10-1000 GeV all deposit
roughly the same amount of energy per unit length, $\dedx,$ ($\approx$ 3MeV/cm) and are often referred to as minimum ionizing particles (MIPs).
For particles with $0.1 < \beta < 1$ \dedx\ varies as $\sim 1/\beta^2$.
As in~\cite{2012PAS} three variables related to \dedx\ are calculated for each track. The first is \ih which is an estimator of the \dedx\ of the track.
The second is \ias\ which is a discrimant that checks the probability that a MIP would produce a charge less than or equal to the charge of each of the hits
along the track. The discrimant peaks at zero for MIPs and approaches one for high-ionizing particles. The last is \iasp\ which has the same form as \ias\ except
the probability is that a MIP would produce a charge more than or equal to the charge of the hits, this variable is only used in the fractionally charged analysis.
An estimate of the mass, assuming Q=1e, of a particle can be made from \ih\ and the momentum of a track. This is done by using Eq.~\ref{eq:MassFromHarmonicEstimator},
also from Ref.~\cite{2011HSCP},
\begin{equation}
I_h= K\cfrac{m^2}{p^2}+C.
\label{eq:MassFromHarmonicEstimator}
\end{equation}
with $K=2.559 \pm 0.001$ MeV cm$^{-1}$ $c^2$ and
$C=2.772 \pm 0.001$ MeV cm$^{-1}$.
As HSCP would be created by BSM theories at high energies they are likely to have high momentum. For this reason the $p_T$ of the track is used as a third
selection variable.
The \tktof\ measurement uses the $p_T$ measurement coming from the inner tracker while the \muononly\ analysis uses the measurement from the muon system.
The HSCP is likely to stay the same charge while
passing through the inner tracker so the \tktof\ is relatively unaffected by this. However for the $p_T$ measurement from the muon system it can result in the $p_T$ of the
HSCP to be overestimated.
CMS measures the curvature of a track which is function of the $q/p_T$ of the track. A charge of $|q|=1e$ is assumed in order to determine the $p_T$ of the track.
For HSCP that can modify their charge inside of CMS it can be the case that the average value of q during its passage through the muon system does not equal one.
This effect has different consequences for the stop and gluino samples. A stop particle,
specifically not an anti-stop, has a charge of $+(2/3)e$ and forms a $R$-hadron with either an anti-quark ($\tilde{t} \bar{q}$) or
two quarks ($\tilde{t} q q$). Anti-quarks have a charge of $-(2/3)e$ or $+(1/3)e$ leading to $R$-hadrons with a charge
of either 0 or $+1e$. Quarks have a charge of either $+(2/3)e$ or $-(1/3)e$ which allows for
the creation of $R$-hadrons with a charge of 0, $+1e$, or $+2e$. Thus a stop $R$-hadron will always have a
positive charge or be neutral. For an anti-stop, the effect is reversed and the $R$-hadron will always have a
negative charge or be neutral.
For gluino particles this statement does not hold true. Gluinos can hadronize in gluon balls ($\tilde{g}g$), $R$-mesons ($\tilde{g} q \bar{q}$), or
$R$-baryons ($\tilde{g} qqq$ or $\tilde{g} \bar{q}\bar{q}\bar{q}$), with either quarks or
anti-quarks allowing the charge of the $R$-hadron to range from $-2e$ to $+2e$. This leads to the
average charge of the $R$-hadron as it traverses the muon system to be less than $1e$ and the $p_T$
value to be overestimated.
To observe this effect the function
$\Delta(q/p_T)$ is defined in Equation~\ref{eq:deltaqopt}
\begin{equation}
\Delta(q/p_T) = ((q/p_T)_{SA} - (q/p_T)_{Inner})/(q/p_T)_{Inner}
\label{eq:deltaqopt}
\end{equation}
where SA refers to stand alone track qualities and Inner refers to
inner track qualities.
Figure~\ref{fig:MuOnlyInvPtDiff} shows the distribution of
$\Delta(q/p_T)$ for tracks with inner track $p_T > 200$ GeV
for data and various HSCP signal samples.
A value of zero in this plot indicates the $p_T$ was reconstructed correctly
while negative one indicates the reconstructed $p_T$ approaches infinity.
The GMSB stau sample, which does not change charge,
has a distribution similar to data, though slightly wider.
The stop sample, which are not able to flip charge but merely to switch
between one sign and zero, is centered at zero but with a slightly wider
width than data or GMSB stau.
The gluino samples, which can flip charge, are centered at negative one meaning that
their reconstructed $p_T$ is normally larger than what is generated, sometimes
to a very large degree. This effect causes further discrimination of gluino HSCP
from background Standard Model particles.
\begin{figure}
\begin{center}
\includegraphics[width=0.44\textwidth]{figures/muonly/Selection_Comp_Signal_8TeV_InnerInvPtDiff_BS}
\end{center}
\caption{Distribution of $\Delta(q/p_T)$
for data, 500 GeV gluino, 500 GeV stop, and 494 GeV
GMSB stau.
\label{fig:MuOnlyInvPtDiff}}
\end{figure}
For the lepton like samples with non-unit charge the \pt\ will be mismeasured by a factor of 1/Q, meaning fractionally charged particles will have their \pt\ overestimated
while multiply charged particles will be underestimated. This effect can be seen in Figure~\ref{fig:RecoGenPt}.
\begin{figure}
\begin{center}
\includegraphics[width=0.44\textwidth]{figures/tkonly/SIM_Validation_Pt.pdf}
\end{center}
\caption{Distribution of reconstructed $p_T$ versus generator $p_T$ for Q=2e/3, 1e, and 2e samples.
\label{fig:RecoGenPt}}
\end{figure}
\section{Preselection \label{sec:preselection}}
Candidates for the \muononly\ analysis are tracks reconstructed in the muon system. Candidates for the \tktof\ and \multi\ analysis are tracks found in both the muon
system and the inner tracker. The \tkonly and fract\ analyses require only that the tracks be found in the inner tracker.
Various requirements are applied to the candidate in order to reduce tracks from background process while maintaining good efficiency for HSCP.
The \muononly\ analysis requires the candidates to have $p_T > 80$, $|\eta| < 2.1$, and valid DT or CSC hits in at least two muon stations
to reinforce the requirements applied at trigger level. Quality cuts on the
\invbeta\ measurement are applied. The measurement must have at least eight degrees of freedom and the error must be less than 0.07.
A potential background source is muons coming from
out of time bunch crossings. Candidates are required to have a measured time leaving the vertex not be within 5ns of an out of time bunch crossing.
Figure~\ref{fig:MuOnlyPreselA} shows the distribution of these quantities for data, cosmic control sample, and signal MC.
Additional cuts are used to control the background from cosmic rays. The displacement of the track
with respect to the beam spot is required to be less than 15cm in both the longitudinal and transverse direction relative to the beam line.
The candidate $|\phi|$ must not be within 1.2--1.9, this region represents tracks pointing in the vertical
direction, as is expected of cosmic rays. Cosmic rays travel through the top and bottom halves of the detector leaving hits in the muon system opposite of the candidate.
It is required that there be no muon segments with $\eta$ within 0.1 of $-\eta_{candidate}$. Only segments separated from the candidate by at least 0.5 in $\phi$
are used to prevent candidates in the central portion of the detector to match to their own segments.
Figure~\ref{fig:MuOnlyPreselB} shows the distribution of these quantities.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_MatchedStations_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_TimeAtIP_BS} \\
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_nDof_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_TOFError_BS}
\caption{Distribution of various prelection variables for data, cosmic control sample, and signal MC.
Top row: Disitribution of number of matched stations (left) and time at vertex (right).
Bottom row:Number of degrees of freedom (left) and error (right) on \invbeta\ measurement.
\label{fig:MuOnlyPreselA}}
\end{figure}
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_Dxy_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_Dz_BS} \\
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_Phi_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_SegMinEtaSep_BS}
\caption{Distribution of various prelection variables for data, cosmic control sample, and signal MC.
Top row: Disitribution of transverse (left) and longitudinal displacement (right).
Bottom row: Distribution of $\phi$ (left) and $\eta$ separation to muon segments (right).
\label{fig:MuOnlyPreselB}}
\end{figure}
The \tktof\ analysis applies cuts on the inner tracker track which has a much better $p_T$ and impact parameter resolution than the muon system track.
The candidate is required to have $p_T > 45$ and $|\eta| < 2.1$ to match the trigger level requirements.
Quality cuts are applied as low quality background tracks can have mismeasured moment and potentially high fluctuations in \dedx.
The inner track is required to have at least eight hits in the inner tracker with at least two coming from the pixel detector. At least 80\% of the hits associated with the track
must be considered valid. A cleaning procedure is applied to the hits before calculating \dedx\ and there must be at least six measurements passing this cleaning.
Figure~\ref{fig:TkMuPreselA} shows these variables for data and signal MC.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_NOH_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_NOPH_BS} \\
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_NOHFraction_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_NOM_BS}
\caption{Distribution of various prelection variables for data and signal MC.
Top row: Number of tracker (left) and pixel (right) hits.
Bottom row: Fraction of valid tracker hits (left) and number of measurements used for \dedx\ calculation (right).
\label{fig:TkMuPreselA}}
\end{figure}
The relative error on the candidate $p_T$ ($\sigma_{p_T}/p_T$) must be less than 0.25 and the $\chi^2$ per degree of freedom must be less than five.
While cosmics are expected to be a negligible background in the \tktof\ analysis loose cuts are placed on the impact parameter of the track,
these cuts are nearly 100\% efficient for signal particles.
The displacement of the track with respect to the primary vertex
with the smallest longitudinal displament must be less than 0.5 in both the transverse and longitudinal directions.
Figure~\ref{fig:TkMuPreselB} shows $p_T$ error, $\chi^2$ per degree of freedom, and the $d_z$ and $d_{xy}$ displacement for data and signal MC.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_Pterr_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_Chi2_BS} \\
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_Dxy_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_Dz_BS}
\caption{Distribution of various prelection variables for data and signal MC.
Top row: Relative $p_T$ error (left) and $\chi^2$ per degree of freedom (right).
Bottom row: Displacement in the transverse (left) and longitudinal (right) directions.
\label{fig:TkMuPreselB}}
\end{figure}
The candidates for the \tktof\ analysis are also required to be isolated to reduce QCD production of jets where overlapping tracks could give
anomolously high \dedx\ values. The isolation cuts are kept very loose as slow moving HSCP will deposit more energy in the calorimeter than a SM particle.
The sum of the momentum of the tracks within 0.3 of the candidate (excluding the candidate itself) is required to be less than 50 GeV. Additionally the total
amount of energy measured in the calorimeter within a radius of 0.3 to the candidate divided by the candidate momentum must be less than 0.3.
Additionally, the \tktof\ analysis uses the same cuts on the \invbeta\ error and number of measurements as the \muononly\ analysis.
Figure~\ref{fig:TkMuPreselC} shows the isolation and \invbeta\ variables for data and signal MC.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_IsolT_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_IsolE_BS} \\
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_TOFError_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_nDof_BS}
\caption{Distribution of various prelection variables for data and signal MC.
Top row: Sum momentum of tracks within 0.3 (left) and calorimeter energy within 0.3 divided by track momentum.
Bottom row: Distribution of the \invbeta\ measurement error (left) and the number of degrees of freedom (right).
\label{fig:TkMuPreselC}}
\end{figure}
The \tkonly\ analysis applies the same preselection as the \tktof\ analysis except the cuts on the timing measurement are not applied as the candidates
are not required to be reconstructed in the muon system. The \fract\ analysis uses preselection like \tkonly\ but inverting the \ih\ requirement
to be less than 2.8 and requiring no tracks with \pt\ greater than 45 GeV to have an opening angle with the candidate greater than 2.8 radians.
The \multi\ analysis applies
the same selection criteria as the \tktof\ analysis except the cut on relative isolation less than 0.3 and the cleaning of the hits used for the \dedx\ calculation
is not done. The cleaning procedure is not applied because the amount of charge deposited is proportionalt $Q^2$ meaning that even a $Q=2e$ HSCP will
deposit four times as much charge as a $Q=1e$ HSCP. As the tracker saturates for a charge ~3 times that expected for a MIP many of the hits from $Q>1e$ HSCP
will be saturated and this can confuse the cleaning procedure. Additionally, as the high charge samples deposit so much charge,
there will still be good signal/background separation even with longer tails in the \dedx\ distribution.
Figure~\ref{fig:TkMuPreselC} shows the number of measurements passing the cleaning for multiply charged samples and the opening
angle described above for fractionally charged samples.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/fract/Selection_Comp_8TeV_DY_OpenAngle_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/multi/Selection_Comp_8TeV_DY_QG_NOM_BS}
\caption{Distribution of number of measurements passing cleaning for samples of three different charges
\label{fig:TkMuPreselC}}
\end{figure}
The total preselection efficiency is shown in Table~\ref{tab:preselectionEff}. The efficiencies are presented with respect to HSCP reconstructed as a track in CMS.
The efficiencies decrease at high mass for color charged HSCP as the HSCP track does not behave like SM particles the reconstruction assumes it to be so many of its track
qualities become low quality. The cuts are set trying to take this into account but also not allowing poorly reconstructed background tracks to enter into the signal region.
\begin{table}
\begin{center}
\caption{Preselection efficiency for a few benchmark samples in each analysis.
This efficiency is with respect to the reconstructed HSCP candidate (i.e. Stand alone muon for the \tkonly\ analysis and global muon for the \tktof\ analysis).
\label{tab:preselectionEff}}
\begin{tabular}{|l|c|c|c|c|c|} \hline
& muon & track & track & {\em fractional} & {\em multiple} \\
Model & only & +muon & only & {\em charge} & {\em charge} \\ \hline
Gluino 500 & \multirow{2}{*}{44\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
GeV (1.0) & & & & & \\ \hline
Guino 1000 & \multirow{2}{*}{40\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
GeV (1.0) & & & & & \\ \hline
Gluino 500 & \multirow{2}{*}{44\%} & \multirow{2}{*}{-} & \multirow{2}{*}{70\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
GeV (0.1) & & & & & \\ \hline
Gluino 1000 & \multirow{2}{*}{43\%} & \multirow{2}{*}{42\%} & \multirow{2}{*}{51\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
GeV (0.1) & & & & & \\ \hline
Gluino(CS) & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{64\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
500 GeV (0.1) & & & & & \\ \hline
Gluino(CS) & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{47\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
1000 GeV(0.1) & & & & & \\ \hline
Stop 600 & \multirow{2}{*}{48\%} & \multirow{2}{*}{53\%} & \multirow{2}{*}{61\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
GeV & & & & & \\ \hline
Stop (CS) & \multirow{2}{*}{56\%} & \multirow{2}{*}{-} & \multirow{2}{*}{56\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
600 GeV & & & & & \\ \hline
GMSB Stau & \multirow{2}{*}{-} & \multirow{2}{*}{76\%} & \multirow{2}{*}{78\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} \\
370 GeV & & & & & \\ \hline
\end{tabular}
\end{center}
\end{table}
\begin{table}
\begin{center}
\caption{Preselection efficiency for a few benchmark samples in each analysis.
This efficiency is with respect to the reconstructed HSCP candidate (i.e. Stand alone muon for the \tkonly\ analysis and global muon for the \tktof\ analysis).
\label{tab:preselectionEff}}
\begin{tabular}{|l|c|c|c|c|c|} \hline
& muon & track & track & {\em fractional} & {\em multiple} \\
Model & only & +muon & only & {\em charge} & {\em charge} \\ \hline
DY Q1o3 & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{30\%} & \multirow{2}{*}{-} \\
400 GeV & & & & & \\ \hline
DY Q2o3 & \multirow{2}{*}{-} & \multirow{2}{*}{15\%} & \multirow{2}{*}{17\%} & \multirow{2}{*}{49\%} & \multirow{2}{*}{-} \\
400 GeV & & & & & \\ \hline
DY Q1 & \multirow{2}{*}{-} & \multirow{2}{*}{72\%} & \multirow{2}{*}{76\%} & \multirow{2}{*}{-} & \multirow{2}{*}{75\%} \\
600 GeV & & & & & \\ \hline
DY Q3 & \multirow{2}{*}{-} & \multirow{2}{*}{27\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{71\%} \\
600 GeV & & & & & \\ \hline
DY Q5 & \multirow{2}{*}{-} & \multirow{2}{*}{ 2\%} & \multirow{2}{*}{-} & \multirow{2}{*}{-} & \multirow{2}{*}{50\%} \\
600 GeV & & & & & \\ \hline
\end{tabular}
\end{center}
\end{table}
The distributions of $p_T$ and \invbeta\ for the \muononly\ analysis for data, cosmic control sample, various signal models is
shown in Figure~\ref{fig:MuOnlySelVar} after applying the preselection requirements. Figure~\ref{fig:TkMuSelVar} shows the $p_T$, \invbeta, and \dedx\
distributions after applying the \tktof\ preselection cuts for data and various signal models.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_Pt_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Comp_8TeV_Cosmic_TOF_BS} \\
\caption{Distribution of selection variables for data, cosmic control sample, and signal MC.
Left: Distribution of $p_T$. Right: Distribution of \invbeta.
\label{fig:MuOnlySelVar}}
\end{figure}
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_Pt_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_TOF_BS} \\
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_Is_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Comp_8TeV_GMStau_Im_BS}
\caption{Distribution of section variables for data and signal MC.
Top row: Distribution of $p_T$ (left) and \invbeta\ (right).
Bottom row: Distribution of \ias\ (left) and \ih\ (right).
\label{fig:TkMuSelVar}}
\end{figure}
\subsection{Tag and Probe Studies \label{sec:TagProbe}}
The study of the agreement between data and MC for numerous muon qualities is done by the Muon Physics Object Group (POG) inside of CMS.
For all of the analyses except for \muononly\ it is sufficient to use results obtained from this group for possible scale factors between
data and MC and relevant systematic uncertainties as the variables it selects on are used frequently within CMS.
However, as the \muononly\ analysis uses numerous variables which are unique to the analysis so the values from the muon POG are not applicable.
For this reason additional studies were
performed to test the agreement of MC with data.
The efficiency of the selections was checked with a tag and probe procedure
(from the Muon POG) using muons from the decay of the Z boson. Z bosons decay to a particle and its anti-particle with the invariant mass of the particle--anti-particle
pair equal to the mass of the Z boson they were created from, for the purpose of this study the particles are taken as muons.
The tag and probe procedure proceeds by
requiring one muon, the tag muon, be found with a very stringent selection trying to assure that this is a good muon. The tag muon is required to pass
a tight selection recommended by the Muon POG and to match to an object that triggered the readout of CMS. The last requirement assures that no bias is
introduced by the need for the event to readout. Additionally the tag must pass the requirements of a skim that was used to reduce the data size to a level
making processing reasonable. The skim requirements were at least three \dedx\ measurements and \ih\ $> 3.0$ or \ih\ $< 2.8$.
Then a set of probe candidates are defined as tracks reconstructed in the inner tracker with no requirement
on muon system activity. The probes are required to have $p_T > 40 GeV$, $|\eta| < 2.1$, and the opposite charge of the tag muon. The invariant mass of the tag and
probe is then required to be within 10 GeV of the mass of the Z boson, 91 GeV.
There are a few processes other than Z boson decay that will lead to tag probe pairs having an invariant mass around the mass of the Z boson. Thus it is likely that the
probe is a muon. This allows to find the efficiency that a muon will pass the preselection in the \muononly\ analysis by looking at the efficiency that the probe
passes the preselection. The efficiencies in data and MC can be compared and any discrepancies accounted for. The residual background from non Z boson decay in the
mass window is accounted for by a fit described below. The MC sample used only contains the creation of Z bosons, background processes are not included.
A simultaneous fit to pairs originating from Z bosons and pairs from background is performed using the
sum of two Voigtians to represent Z bosons and an exponential for the background.
Figure~\ref{fig:MuOnlyTagProbeFit} shows sample fits of
both Data and MC. It can be seen that the fit matches well. The efficiency is extracted from these fits using a procedure from the muon POG.
Figure~\ref{fig:MuOnlyTagProbeEff} shows the efficiency for the probes
to pass the preselection, except for the selection on $p_T$, against the probe
$p_T$, $\eta$, and the number of vertices in the event.
Overall the efficiency is approximately 75\% in data and 80\% in MC.
The efficiency is mostly flat versus $p_T$ and number of vertices but does depend
on $\eta$. MC is scaled by an $\eta$ dependent amount to correct for the discrepancy.
\begin{figure}
\begin{center}
\includegraphics[width=0.95\textwidth]{figures/muonly/FitCanvasDataPtBin0}
\end{center}
\caption{Example fit canvas of fit to invariant mass distribution for
the muon efficiency tag and probe measurement for the \muononly\ analysis for data.
\label{fig:MuOnlyTagProbeFit}}
\end{figure}
\begin{figure}
\begin{center}
\includegraphics[width=0.95\textwidth]{figures/muonly/FitCanvasMCEtaBin6}
\end{center}
\caption{Example fit canvas of fit to invariant mass distribution for
the muon efficiency tag and probe measurement for the \muononly\ analysis for MC.
\label{fig:MuOnlyTagProbeFit}}
\end{figure}
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 1.4cm 0cm, width=0.44\textwidth]{figures/muonly/MuonOnlypteff_comp}
\includegraphics[clip=true, trim=0.0cm 0cm 1.4cm 0cm, width=0.44\textwidth]{figures/muonly/MuonOnlyetaeff_comp}
\includegraphics[clip=true, trim=0.0cm 0cm 1.4cm 0cm, width=0.44\textwidth]{figures/muonly/MuonOnlyPVeff_comp}
\end{center}
\caption{Efficiency to pass preselection cuts for the \muononly\ analysis
for $p_T$ (left), $\eta$ (center), and number of primary vertices
(right).
\label{fig:MuOnlyTagProbeEff}}
\end{figure}
\input{background}
\section{Background Prediction \label{BackPred}}
All of the analyses perform a counting experiment on the number of events with a track passing threshold values on some grouping of the $p_T$, \invbeta,
and \dedx\ variables. The \tktof\ and \tkonly\ analysis also place a cut on the mass of the candidate as described below. There are two sources
of background considered in the analyses.
The first is muons from the collisions in the LHC. While these muons will all be travelling at very nearly
the speed of light and thus arriving at the muon system at approximately the same time, detector resolution effects result in a smearing of the
measured speed of the particle. Additionally, collision muons can have large reconstructed momentum either due to true high momentum or detector mismeasurement resulting in
a promotion of a low momentum muon to a high reconstructed momentum. While muons in the momentum region of interest all deposit approximately
the same amount of energy in the tracker on average, the amount deposited in each interaction is subject to large variations. This can lead to background tracks
with a high or low \dedx\ value. Detector resolution can also contribute to tracks with high or low \dedx. Collision muons are predicted exploiting the lack of
correlation between the selection variables.
The second source of background, important only for the \muononly\ and \fract\ analyses, is muons from cosmic rays.
As discussed in Section~\ref{sec:cosmics} muons from cosmic rays (referred to as cosmics)
are constantly passing through CMS. Cosmics will arrive to the muon system asynchronously with collisions from the LHC. Depending on exactly
when the cosmic arrives in the muon system relative to collisions from the LHC this can give rise to a particle with a large \invbeta\ measurement.
Out of time particles are not centered in the tracker's charge collection window giving them lower $\dedx.$. This combined
with the impact parameter cuts applied at preselection makes cosmics negligible for the analyses looking for high \dedx\ in the tracker.
The distribution of $p_T$ for cosmics falls off at high momentum slower than for collision muons, as evidenced in Figure~\ref{fig:MuOnlySelVar} (left).
As cosmics have different $p_T$, \invbeta, and \dedx\ distributions than collision muons they will not be accurately predicted with the same method used to predict
the collision muon background. Dedicated methods using the cosmic control sample and impact parameter sidebands are described below.
For all the analyses the systematic uncertainty on the expected background in the signal
region is estimated from the spread of various background estimations.
The following variables are defined:
\begin{equation}
\centering
\begin{split}
V^{syst+stat}_{N} &= \sqrt{\sum_i \left( x_i - <x> \right) ^2/(N-1)} \\
V^{stat}_{N} &= \sqrt{\sum_i \left( \sigma _i \right) ^2/N} \\
V^{syst} &= \sqrt{V_{syst+stat}^2-V_{stat}^2} \\
\end{split}
\label{eq:variance}
\end{equation}
where N is the number of estimates considered,
the sum is over N, $x_i$ is the value of the $i^{th}$ background estimate,
and $\sigma_i$ is the statistical uncertainty on
the $i^{th}$ background estimate. The first quantity is an estimator of the
variance of the background estimates, which takes both statistical
and systematic contributions. The second quantity is adopted as an
estimator of the contribution of the statistical uncertainties
to the variance. Finally, the contribution of the
systematic uncertainty to the background estimates is taken assuming
that the latter adds in quadrature to the statistical uncertainty and
is therefore obtained from the last expression.
\subsection{Prediction for \muononly\ analysis \label{sec:MuOnlyPred}}
The collision muon background is predicted by exploiting the lack of correlation between the selection variables for background particles.
The \muononly\ analysis uses the selection criteria of $p_T$ and \invbeta. Candidates are divided into four groups based on whether they
have $p_T$ and \invbeta\ values greater than the thresholds placed on these selection criteria.
The four groups are referred to as $A$,$B$,$C$, and $D$. The $A$ group contains candidates that have $p_T$ and \invbeta\ values lower than both selection thresholds
while the $B$($C$) group contains candidates that have only the $p_T$ (\invbeta) below its threshold. The groups containing the candidates with \invbeta\
below the its threshold only contains candidates with $1 < $\invbeta\ $< $ threshold. Candidates with \invbeta\ $< 1$ are used to evaluate how well the prediction performs.
The $D$ group contains candidates passing both thresholds and is considered the signal region.
The predicted number of collision muons in the signal region is found via the relation $B \times C / A$. This relation is accurate so long as the ratio of candidates
passing the \invbeta\ cut is the same regardless of whether the $p_T$ cut is passed, the statement is also true reversing the roles of \invbeta\ and $p_T$.
It has been observed that a correlation exists between the $p_T$ and \invbeta\ measurements based on whether the candidate is in the central or forward
region of the detector as well as the number of DT or CSC stations containing valid hits. This can be seen in Figure~\ref{fig:SelVarBinned} which the shows the $p_T$
and \invbeta\ distributions in the six regions. The split between the central and forward regions is done at an $|\eta|$ value of 0.9. The predicted number of events
in each region is predicted separately and the total number of predicted background events is the sum of the six predictions.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Data8TeV_Pt_Binned_BS}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Selection_Data8TeV_TOF_Binned_BS}
\caption{Distribution of $p_T$ and \invbeta\ for data for six different regions.
\label{fig:SelVarBinned}}
\end{figure}
After the binning the correlation is small enough not to bias the background prediction as can be seen in Figs.~\ref{fig:MuOnlyControl} and~\ref{fig:MuOnlyControl4}
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Control_Data8TeV_Pt_TOFSpectrum_Binned_0}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Control_Data8TeV_Pt_TOFSpectrum_Binned_3} \\
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Control_Data8TeV_Pt_TOFSpectrum_Binned_1}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Control_Data8TeV_Pt_TOFSpectrum_Binned_4}
\caption{Distribution of \invbeta\
for different momentum regions for four of the
six different bins of number of stations that are used to make
the prediction.
The left column shows the central region while the right column
shows the forward region. The top (bottom) columns are for 2 (3) stations.
\label{fig:MuOnlyControl}}
\end{center}
\end{figure}
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Control_Data8TeV_Pt_TOFSpectrum_Binned_2}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Control_Data8TeV_Pt_TOFSpectrum_Binned_5}
\caption{Distribution of \invbeta\
for different momentum regions for four station tracks.
The left column shows the central region while the right column
shows the forward region.
\label{fig:MuOnlyControl4}}
\end{center}
\end{figure}
To predict the cosmic background sidebaneds in the $|\delta_z|$ distribution and the pure cosmic sample are used. The number of candidates, $N$,
in a sideband region of $\delta_z|$ are counted. The candidates are required to pass the full selection except the $|\delta_z|$ cut is changed to $70 < |\delta_z <$ 120cm and
the cuts on $|\delta_{xy}|$, $\phi,$ segment $\eta$ separation, and $p_T$ are removed to increase the number of cosmics in the sideband region. Additionally the candidates
are required not to be reconstructed as global tracks to decrease the contamination from collision muons. The ratio of candidates in the $|\delta_z|$ sideband region
relative to the signal region, $R$, is calculated using the pure cosmic sample with the same offline requirements as in the main data sample. The number of cosmic tracks
passing the final selection is then predicted as $P_{Cosmic} = N \times R$.
Numerous effects cancel in this ratio making the prediction robust. The number of cosmic tracks in any of the regions can be expressed as
$C = F \times T \times \epsilon$, where C is the number of cosmics observed, F is the flux of cosmics per second, T is the amount of time that CMS was collecting data,
and $\epsilon$ is the efficiency of the detector to reconstruct and select cosmic tracks in the region including fiducial effects.
The prediction of the number of cosmic tracks in the signal region can then be stated as
\begin{equation}
\begin{split}
& F \times T_{Main} \times \epsilon_{Main}^{Signal} = F \times T_{Main} \times \epsilon_{Main}^{Sideband} \times \\
& F \times T_{Control} \times \epsilon_{Control}^{Signal} / (F \times T_{Control} \times \epsilon_{Control}^{Sideband}) \\
\end{split}
\label{eq:CosmicPred}
\end{equation}
where Main and Control differentiate between the main triggers used in the analysis from the cosmic control trigger, respectively,
and signal and sideband represent the signal region and $|d_z|$ sideband, respectively. After the cancellation of numerous factors this equation reduces to
\begin{equation}
\epsilon_{Main}^{Signal} = \epsilon_{Main}^{Sideband} \times \epsilon_{Control}^{Signal} / \epsilon_{Control}^{Sideband}
\label{eq:ReducedCosmicPred}
\end{equation}
It is clear that as long as the relationship
\begin{equation}
\epsilon_{Main}^{Signal}/ \epsilon_{Main}^{Sideband} = \epsilon_{Control}^{Signal} / \epsilon_{Control}^{Sideband}
\label{eq:ReducedCosmicPred}
\end{equation}
holds the prediction will be accurate. The only difference between the two ratios is that one is using events collected with the main triggers while the
other is using the cosmic control triggers. As the two triggers are essentially the and same were collected during the same run period it is very likely the
relationship holds so as to give a good prediction of the number of cosmic tracks in the signal region. Note that the relationship does not require the efficiency
in the cosmic control sample to be the same as in the main sample. Only that the ratio of the efficiencies in the signal and sideband regions
be the same in the two samples.
As previously mentioned, the background prediction is checked using candidates with \invbeta\ less than one. The \invbeta\ distribution is roughly symmetrical about one.
Additionally the contribution from signal candidates is very small, becoming completely negligible for lower \invbeta\ values. This means that this region is good for comparing
the predicted number of events with what is observed. This is done by defining four new groups similar to the $ABCD$ above but changing the requirement on \invbeta\ to be having
a value lower than some threshold. The names are the same as $ABCD$ but with a prime added. Meaning that the $D^{\prime}$ group contains candidates with $p_T$ above
the threshold and \invbeta\ below a threshold. Using the same formula as above the predicted number of candidates in the $D^{\prime}$ group can be predicted as
$C^{\prime} \times B^{\prime}/A^{\prime}$. Figure~\ref{fig:PredFlipPt230} shows the number of predicted and observed number of candidates in $D^{\prime}$ for different $p_T$
and \invbeta\ cuts. Good agreement is seen between observed and predicted.
\begin{figure}
\centering
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm, width=0.44\textwidth]{figures/muonly/Prediction_Data8TeV_NPredVsNObs_Flip}
\caption{Number of predicted and observed events in \invbeta\ $<$ 1 region for two different $p_T$ thresholds. Threshold for \invbeta\ set by X-axis.
\label{fig:PredFlipPt230}}
\end{figure}
To determine the systematic uncertainty on the predicted collision background the \invbeta\ less than one region is used once again. The predicted number of events
in the signal region D can be predicted by three different formulae, the main one of $C \times B/A$ as well as
$C^{\prime} \times B/A^{\prime}$ and $D^{\prime} \times B/B^{\prime}$.
The first of these additional predictions would be sensitive to any shift in the \invbeta\ distribution due to the $p_T$ requirement while the second would be
sensitive to any effect on the resolution due to the $p_T$ requirement. Figure~\ref{fig:MuOnlycorrelation} shows the number of predicted events from the three predictions
for different \invbeta\ and $p_T$ cuts.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Data8TeVCollisionPrediction_TOF110}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Data8TeVCollisionPrediction_TOF120}
\caption{Distribution of the number of predicted events and their statistical error computed for the \muononly\ analysis with different predictions for different set of cuts.
The $p_{T}$ threshold is defined by the x-axis.
Left column: $1/\beta>1.1$ ($<0.9$ for low $1/\beta$ regions). Right column: $1/\beta>1.2$ ($<0.8$ for low $1/\beta$ regions).
}
\label{fig:MuOnlycorrelation}
\end{center}
\end{figure}
The systematic error is extracted from the three predictions
through Eq.~\ref{eq:variance} with N=3.
Fig.~\ref{fig:MuOnlyUnc} shows the variation of
$V_{syst+stat}/<x>$, $V_{stat}/<x>$ and $V_{syst}/<x>$
as a function of the $p_T$ threshold. The statistical uncertainty due to the number of candidates in the $B$ group is not subtracted as it is completely correlated
between the three predictions. From the last plot
the systematic uncertainty on the expected background in the signal
region is estimated to be 20\%.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Data8TeVCollisionStat}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Data8TeVCollisionStatSyst} \\
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm,width=0.44\textwidth]{figures/muonly/Data8TeVCollisionSyst}
\caption{
Left: Ratio of the quadratic
mean of the statistical uncertainties of the three possible background
estimations to the mean of these estimations vs
the $p_T$ threshold. Middle: Ratio of the variance to the mean of the three
background estimations vs $p_T$. Right: Ratio of the
square root of the difference between the variance and the quadratic
mean of the statistical uncertainties of the three possible background
estimations and the mean vs $p_T$.
}
\label{fig:MuOnlyUnc}
\end{center}
\end{figure}
The systematic uncertainty on the cosmic background is determined by
modifying the $d_z$ range used to define the control sample. Predictions
can also be made from candidates with $30 < |d_z| < 50$ cm, $50 < |d_z| < 70$ cm, and
120 cm $< |d_z|$. Table~\ref{tab:CosmicPred} shows the number of predicted cosmic
tracks for each $|d_z|$ region using the final selection defined in Section~\ref{sec:Optim}
The statistical uncertainty from the number of candidates in the signal region in the
pure cosmic sample is not included in the uncertainties as it is correlated
between the three predictions.
Equation~\ref{eq:variance} with N=4 is used to calculate the systematic uncertainty.
The relative systematic uncertainty is found to be 80\%.
\begin{table}
\begin{center}
\caption{Predicted numbers of cosmic events for the \muononly\ analysis.}
\label{tab:CosmicPred}
\begin{tabular}{|l|c|c|} \hline
Dz Region & Prediction \\ \hline
$30 < |dz| < 50$ cm & 3.1 $\pm$ 0.5 \\ \hline
$50 < |dz| < 70$ cm & 2.6 $\pm$ 0.7 \\ \hline
$70 < |dz| < 120$ cm & 3.2 $\pm$ 1.0 \\ \hline
120 cm $< |dz|$ & 3.8 $\pm$ 0.7 \\ \hline
\end{tabular}
\end{center}
\end{table}
\subsection{Prediction for \tktof\ analysis}
The \tktof\ analysis uses three selection variables, $p_T$, \invbeta, and $\dedx.$ With three selection variables an extended three dimensional version of the
$ABCD$ method described in Subsection~\ref{sec:MuOnlyPred} is used to predict the collision muon background. An additional cut on the estimated mass of the candidate
is also applied and the prediction of the background mass prediction is described below. As discussed above the cosmic background is negligible
for the \tktof\ analysis. The variables have been found ot be uncorrelated to a sufficient degree as can be seen in Fig.~\ref{fig:correlation}.
\begin{figure}%[tbhp!]
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Control_Data8TeV_Pt_TOFSpectrum}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Control_Data8TeV_Is_TOFSpectrumLog}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Control_Data8TeV_Pt_IsSpectrum}
\caption{Left column: Measured $I_{as}$ distributions for several momentum ranges. Middle column:
Measured $1/\beta$ distributions for several momentum ranges. Right column: Measured $1/\beta$ distributions for several $I_{as}$ ranges.
Results are for the \tktof\ selection.
The first row is for a center of mass energy of 7 TeV while the second row shows the results at 8 TeV.}
\label{fig:correlation}
\end{center}
\end{figure}
Four new groups are defined, $E$, $F$, $G$, and $H$. The D region still represents
the signal region where the candidate passes the thresholds on all three selection variables. The $B$, $C$, and $H$ regions pass two of the thresholds and fail \invbeta,
$p_T$, and $\dedx,$ respectively. The $A$, $F$, and $G$ groups contain candidates passing only the \dedx, \invbeta, and $p_T$ thresholds, respectively.
The number of predicted events in the signal region, $D$, can be found via seven different equations utilizing the various groups. The one with the smallest
statisitical uncertainty, $A\times F\times G/E^2$, is chosen. The other equations are used to determine the systematic uncertainty on the prediction.
It has been found that the probability for background candidates to pass the threshold on \ias\ is strongly dependent on the $\eta$ of the candidate.
This could bias the prediction if the
probability to pass the threshold for the other selection variables also has a large $\eta$ dependence. The probability to pass the \invbeta\ threshold has a small $\eta$
dependence while the probability to pass the $p_T$ cut has almost no $\eta$ dependence. These effects can be seen in Figure~\ref{fig:etacorrelation} that shows the $\eta$
distribution of candidates which
pass or fail the various thresholds. The effect is found to have a small effect on the total number of predicted events and is covered by the systematic uncertainty
defined below.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Data8TeV_EtaRegionsPtTOF_016}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Data8TeV_EtaRegionsTOFdEdx_016} \\
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Selection_Data8TeV_EtaRegionsPtdEdx_016}
\end{center}
\caption{Distribution for data of the candidate $\eta$ for various combinations of being above or below selection thresholds of
50 GeV for $p_T$, 1.05 for \invbeta, and 0.05 for \ias.
Top left: Combinations of flipping $p_T$ and \invbeta\ cuts. Top Right: Combinations of flipping \invbeta\ and \ias\ cuts.
Bottom: Combinations of flipping $p_T$ and \ias\ cuts. For all plots the variable not flipped is required to be below the threshold.
\label{fig:etacorrelation}}
\end{figure}
As with the \muononly\ analysis the prediction is checked with candidates in the \invbeta\ less than on region. Again the predicted number of events in
$D^{\prime}$ is predicted following the same procedure as for the signal region except changing the \invbeta\ requirement to be lower than some threshold.
Figure~\ref{fig:PredFlipTkTOF} shows the predicted and observed number of candidates in the $D^{\prime}$ region for various cuts. Good agreement is seen
even with a tight selection.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Pred_Flip_I010_Pt55_Data8TeV}
\includegraphics[clip=true, trim=0.0cm 0cm 3.0cm 0cm, width=0.44\textwidth]{figures/tkmu/Pred_Flip_I020_Pt85_Data8TeV}
\caption{Number of observed and predicted events and their statistical error in the $D^\prime$ region for $p_T>55, I_{as}>0.1$ (left)
and $p_T>85, I_{as}>0.2$ (right). Threshold on $1/\beta$ defined by the x-axis
in the \tktof\ analysis.
\label{fig:PredFlipTkTOF}}
\end{center}
\end{figure}
In addition to the cut on the selection variables, the \tktof\ analysis also applies a cut on the estimated mass of the candidate as determined from
Equation~\ref{eq:MassFromHarmonicEstimator}. In order to do this the mass spectrum of background candidates in the signal region must be predicted.
The background mass spectrum is predicted using the \dedx\ and momentum distributions taken from control regions. While the signal region is defined by cuts on \ias\ and
$p_T$ (as well as \invbeta), the mass prediction uses \ih\ and $p$ so it is these distributions that must be taken from the control regions. As discussed above the
\dedx\ variables have a strong $\eta$ dependence. While this issue does not have a large effect on the total number of predicted events is does affect the mass distribution.
The $p_T$ distribution of background candidates is roughly the same versus $\eta$ however this implies that the $p$ distribution does vary as momentum can be written
as a function of only $p_T$ and $\eta$. To correct for this a reweighting procedure is done such that the candidates
used to determine the $p$ distribution match the $\eta$ distribution of candidates used to obtain the $I_h$ distribution.
The $p$, \ih, distribution
is taken from $G$, $A$,where only the $p_T$, \ias, value is above threshold and the other two are below. The mass distribution is then predicted by performing
approxiamtely 100 pseudo-experiments. The $i^{th}$ pseudo-experiment is done through multiple steps. First a value of $E_{i}$, $F_i$, is drawn from a poisson
distribution with a mean equal to the observed number of candidates in the $E$, $F$, regions in data.
Next, a binned distribution of the $p$ of candidates in the $G$ region is employed. A value of $n_{ij}$, where j represents the bin of the $p$ distribution, is drawn for
each $p$ bin from a poisson distribution with mean equal to the number of candidates observed in that bin in data. A value of $G_i$ is then found as the sum over j of the
$n_{ij}$. A similar procedure is done in the $A$ region for determining the \ih\ distribution. Before the distribution is found, weight factors are attached to all of
the candidates in the $A$ region so that the $\eta$ distribution of candidates in the $A$ region matches that observed in the $G$ region as necessitated by the conversation
above. Next, a value of $m_{ik}$ is found for each bin of the reweighted \ih\ distribution. A value of $A_i$ is then found by summing over $m_{ik}$ over k.
The predicted number of background candidates in the signal region for a given i--j bin in the $p$ -- \dedx plane, $D_{ijk}$, is then found via the relation
\begin{equation}
D_{ijk} = (A_i \times F_i \times G_i / E_{i}^{2}) \times (n_{ij}/G_i) \times (m_{ik}/A_i) = F_i \times n_{ij} \times m_{ik} / E_{i}^{2}
\label{eq:MassPrediction}
\end{equation}
The predicted candidates in $D_{ijk}$ are taken to have a mass equal to the mass coming from Equation~\ref{eq:MassFromHarmonicEstimator} with the $p$ and \ih\ values
determined by the bin that $j$ and $k$ represent in the $p$ and \ih\ distributions, respectively. The mass distribution for the $i^{th}$ pseudo-experiment is then
found by summing over the $j$ and $k$ of all the $D_{ijk}$ and their representative masses.
The value in each mass bin is then found as the average of the value in all the pseudo-experiments. The statistical error is taken as the standard deviation of the values from
the pseudo-experiments. The prescription for determining the predicted background mass shape was done by another scientist working on CMS and is simply reproduced here.
The mass distribution with loose thresholds on the selection variables is shown in Fig.~/ref{fig:MassDistribution}.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm,width=0.44\textwidth]{figures/tkmu/Rescale_Mass_8TeV_Loose}
\end{center}
\caption{Observed and predicted mass spectrum for candidates in the $D^\prime$ region in the \tktof\ subanalysis.
Left: $p_T^{cut}>55$ GeV, $I_{as}>0.1$ and $1/\beta<0.95$.
Right: $p_T^{cut}>85$ GeV, $I_{as}>0.1$ and $1/\beta<0.8$.
The error bands are only statistical.
\label{fig:MassDistribution}}
\end{figure}
As the \invbeta\ value of candidates is not currently used in the mass estimation the predicted and observed mass spectrums in the \invbeta\ $<$ 1 region can be
found by only changing the groups that the candidates be drawn from be the regions with a prime (e.g. $A^\prime$). Using the \invbeta\ $<$ 1 region allows for checking
the predicted mass distribution in a background dominated region even when applying tight cuts. The predicted and observed mass distributions are shown in
Figure~\ref{fig:FlipMassDistribution} with both loose and tight thresholds on the selection variables.
\begin{figure}
\begin{center}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm,width=0.44\textwidth]{figures/tkmu/Rescale_Mass_Flip_8TeV_Loose}
\includegraphics[clip=true, trim=0.0cm 0cm 2.8cm 0cm,width=0.44\textwidth]{figures/tkmu/Rescale_Mass_Flip_8TeV_Tight}
\end{center}
\caption{Observed and predicted mass spectrum for candidates in the $D^\prime$ region in the \tktof\ subanalysis.
Left: $p_T^{cut}>55$ GeV, $I_{as}>0.1$ and $1/\beta<0.95$.
Right: $p_T^{cut}>85$ GeV, $I_{as}>0.1$ and $1/\beta<0.8$.
The error bands are only statistical.
\label{fig:FlipMassDistribution}}
\end{figure}
The systematic uncertainty on the background prediction for the \tktof\ analysis is evaluated by using the multiple different possible when using the
three dimensional variation of the $ABCD$ method. As mentioned above, in addition to the chosen prediction of $A\times F\times G/E^2$,
there are six more equations that can be used to predict
the amount of background in the signal region. Of the six, three have small statistical uncertainty. Those three are $A \times H/E$, $B \times G/E$, and $F \times C/E$.
The chosen prediction includes the group where all the variables are below the threshold and the three where exactly one threshold is passed. The three additional prediction
include the group where all the thresholds are failed, one of the regions where exactly one threshold is passed, and one of the regions where exactly two of the
thresholds are passed.
The three additional background predictions each test the correlation between two of the three selection variables. Using $A \times H/E$ as an example but
the argument is the same for the other predictions. Comparing $A \times H/E$ with the chosen background prediction of $A\times F\times G/E^2$ it can be seen that
the difference is replacing $F\times G/E$ with $H$. The $E$ group fails all three thresholds, the $F$ and $G$ groups pass only the \invbeta\ and $p_T$ thresholds,
respectively, and the $H$ group passes the \invbeta\ and $p_T$ thresholds but not \dedx. If \invbeta\ and $p_T$ are uncorrelated then the equation $F\times G/E$ should
predict the number of candidates in the $H$ region. So a comparison of the two predictions will test how well the assumption that the variables are uncorrelated works.