-
Notifications
You must be signed in to change notification settings - Fork 1
/
PR-09-019-GMN.tex
3853 lines (3389 loc) · 166 KB
/
PR-09-019-GMN.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
%\input{../../33331/hwk/preamble.tex}
%\documentclass[12pt,letterpaper,oneside,draft]{report}
%\documentclass[12pt,letterpaper,oneside,draft]{article} % no actual figures!!
\documentclass[12pt,letterpaper,oneside]{article}
\pagestyle{plain}
\setlength{\oddsidemargin}{-.25in} % LaTeX add one inch to this
\setlength{\evensidemargin}{-.25in} % LaTeX add one inch to this
\setlength{\topmargin}{0.in} % LaTeX add one inch to this
\setlength{\footskip}{0.5in}
\setlength{\textheight}{9.in}
\setlength{\textwidth}{7.0in}
\setlength{\topskip}{0.0in}
\setlength{\headsep}{0.0in}
\setlength{\headheight}{0.0in}
\setlength{\marginparwidth}{1.2in}
\usepackage{epsfig}
%\usepackage{graphX}
\usepackage{wrapfig}
\usepackage{subfigure}
\usepackage{rotating}
\usepackage{amsmath}
\usepackage{cite}
%%\setcounter{secnumdepth}{3}
%\reversemarginpar
\begin{document}
%\baselineskip 24 pt
%\parskip 24 pt
%\baselineskip 18 pt
%\parskip 18 pt
%\baselineskip 18 pt
%\parskip 18 pt
\newcommand{\mMeV} {\,\mbox{MeV}/\mbox{c}^{2}}
\newcommand{\pMeV} {\,\mbox{MeV}/\mbox{c}}
\newcommand{\eMeV} {\,\mbox{MeV}}
\newcommand{\mGeV} {\,\mbox{GeV}/\mbox{c}^{2}}
\newcommand{\pGeV} {\,\mbox{GeV}/\mbox{c}}
\newcommand{\eGeV} {\,\mbox{GeV}}
%\newcommand{\q2} {Q$^2$}
\newcommand{\gmn} {G$^{\mbox{\scriptsize n}}_{_{\mbox{\tiny M}}}~$}
\newcommand{\gmnc} {G$^{\mbox{\scriptsize n}}_{_{\mbox{\tiny M}}}$}
\newcommand{\gen} {G$^{\mbox{\scriptsize n}}_{_{\mbox{\tiny E}}}~$}
\newcommand{\genc} {G$^{\mbox{\scriptsize n}}_{_{\mbox{\tiny E}}}$}
\newcommand{\gmp} {G$^{\mbox{\scriptsize p}}_{_{\mbox{\tiny M}}}~$}
\newcommand{\gmpc} {G$^{\mbox{\scriptsize p}}_{_{\mbox{\tiny M}}}$}
\newcommand{\gep} {G$^{\mbox{\scriptsize p}}_{_{\mbox{\tiny E}}}~$}
\newcommand{\gepc} {G$^{\mbox{\scriptsize p}}_{_{\mbox{\tiny E}}}$}
%\newcommand{\gmn} {G$^{\mbox{n}}_M~$}
\title{A new proposal to the Jefferson Lab Program Advisory Committee
(PAC34)\\
{\bf Precision Measurement of the\\
Neutron Magnetic Form Factor\\
up to $\mathbf Q^2=18.0\mbox{ \bf (GeV/c)}^2$ by the Ratio Method}}
\vspace{0.1in}
\author{
%$\,$ \hskip 1.in G.B.~Franklin, B.~Quinn (spokesperson),\\
F.~Benmokhtar, G.B.~Franklin, B.~Quinn (spokesperson),
R.~Schumacher %\hskip 1.in $\,$
\\ {\it Carnegie Mellon University, Pittsburgh, PA 15213 } \\
%
\and A.~Camsonne, J.P.~Chen, E.~Chudakov, C.~DeJager,\\
P.~Degtyarenko, J.~Gomez, O.~Hansen, D.~W.~Higinbotham,\\
M.~Jones, J.~LeRose, R.~Michaels, S.~Nanda, A.~Saha, V.~Sulkosky,\\
B.~Wojtsekhowski (spokesperson and contact person)
\\{\it Thomas Jefferson National Accelerator Facility, Newport News, VA 23606}
%
\and L.~El Fassi, R.~Gilman (spokesperson), G.~Kumbartzki, R.~Ransome, E.~Schulte
\\ {\it Rutgers University, Piscataway, NJ 08854}
%
\and T. Averett, C.F.~Perdrisat, L.P.~Pentchev
\\ {\it College of William and Mary}
%
\and E.~Cisbani, F.~Cusanno, F.~Garibaldi, \\
S.~Frullani, G.~M.~Urciuoli, M.~Iodice, M.L.~Magliozzi
\\ {\it INFN, Rome, Italy}
%
\and H.~Baghdasaryan, G.~Cates, D.~Day, N.~Kalantarians, R.~Lindgren, N.~Liyanage, \\
V.~Nelyubin, B.~E.~Norum, K.~D. Paschke, S.~Riordan, M.~H.~Shabestari, X.~Zheng
\\ {\it University of Virginia, Charlottesville, VA 22901}
%
\and W.~Brooks\\
{\it Universidad Tecnica Federico Santa Maria, Valparaiso, Chile}
%
\and V.~Punjabi, M.~Khandaker \\
{\it Norfolk State University}
%
\and W.~Boeglin, P.~Markowitz, J.~Reinhold \\
{\it Florida International University, Fl }
%
\and J.~Annand, D.~Hamilton, D.~Ireland, R.~Kaiser, K.~Livingston, \\
I.~MacGregor, B.~Seitz, and G.~Rosner \\
{\it University of Glasgow, Glasgow, Scotland}
%
\and D.~Nikolenko, I.~Rachek, Yu.~Shestakov
\\ {\it Budker Institute, Novosibirsk, Russia} \\
%
\and $\,$ R.~De~Leo, L.~La~Gamba, S.~Marrone, E.~Nappi $\,$
\\ {\it INFN, Bari, Italy} \\
%
\and $\,$ M.~Mihovilovi\v{c}, M.~Potokar, S.~\v{S}irca $\,$
\\ {\it Jo\v{z}ef Stefan Institute and Dept. of Physics, University of Ljubljana, Slovenia} \\
%
%\and J.~Lachniet
%\\ {\it Old Dominion University, Norfolk, VA}
%
\and J.~Gilfoyle
\\ {\it University of Richmond, Richmond, VA}
%
%\and $\,$ \hskip 1.in E.~Piasetzky, G.~Ron \hskip 1.in $\,$
\and $\,$ J.~Lichtenstadt, I.~Pomerantz, E.~Piasetzky, G.~Ron \hskip 1.in $\,$
\\ {\it Tel Aviv University, Israel} \\
%
\and $\,$ \hskip 1.in A.~Glamazdin \hskip 1.in $\,$
\\ {\it Kharkov Institute of Physics and Technology, Kharkov 310077, Ukraine}
%
\and $\,$ \hskip 1.in J.~Calarco, K.~Slifer \hskip 1.in $\,$
\\ {\it University of New Hampshire, Durham, NH 03824}
%
\and $\,$ \hskip 1.in B.~Vlahovic \hskip 1.in $\,$
\\ {\it North Carolina Central University, Durham, NC 03824}
%
\and $\,$ \hskip 1.in A.~Sarty \hskip 1.in $\,$
\\ {\it Saint Mary's University, Nova Scotia, Canada B3H 3C3}
%
%\and $\,$ \hskip 1.in Piotr Decowski \hskip 1.in $\,$
%\\ {\it Smith College, Northampton, MA 01063 }
%
\and $\,$ \hskip 1.in K.~Aniol and D.~J.~Magaziotis \hskip 1.in $\,$
\\ {\it Cal State University, Los Angeles, CA 90032}
%
%\and S.~Abrahamyan, A.~Ketikyan, S.~Mayilyan, A.~Shahinyan, H.~Voskanyan
\and S.~Abrahamyan, S.~Mayilyan, A.~Shahinyan, H.~Voskanyan
\\ {\it Yerevan Physics Institute, Yerevan, Armenia}
%
\and $\,$ \hskip 1.in D.~Glazier and D.~Watts \hskip 1.in $\,$
\\ {\it University of Edinburgh, Edinburgh, Scotland}
%
\and $\,$ \hskip 1.in B.~Sawatzky \hskip 1.in $\,$
\\ {\it Temple University, Philadelphia, PA 19122}
%
\and $\,$ \hskip 1.in B.~Bertozzi and S.~Gilad \hskip 1.in $\,$
\\ {\it Massachusetts Institute of Technology, Cambridge, MA 02139}
%
\and and\\
{\bf The Hall A Collaboration} \\% * - to be confirmed
\\
}
\maketitle
\newpage
\begin{abstract}
We propose to make a high-precision measurement of the
neutron's magnetic form factor, \gmnc, at nine kinematic points:
$Q^2=3.5$, 4.5, 6.5, 8.5, 10., 12., 13.5, 16. and 18.0 (GeV/c)$^2$. Little data on \gmn
exists in this kinematic range and the existing data have large
systematic uncertainties.
In the proposed experiment, systematic errors are
greatly reduced by the use of the ``ratio''
method in which \gmn is extracted from the ratio of
neutron-coincident to proton-coincident quasi-elastic electron
scattering from the deuteron.
The experiment would be performed in Hall A using the BigBite
spectrometer to detect the scattered electrons and the BigHAND to
detect both neutrons and protons. A large aperture dipole magnet
on the nucleon flight path will greatly enhance particle
identification by slightly deflecting the protons. Calibration reactions
will be used to produce tagged neutrons and protons at essentially
the same momentum as the quasi-elastic nucleons. The efficiency of
BigHAND is expected to be high and stable and to be well
calibrated. Projected systematic errors on the
measured ratio of cross sections vary from under 2\% to 5\%
(1.\% to 2.5\% on the ratio of the magnetic form
factor to that of the proton).
Statistical errors are projected to be similar, or smaller.
This proposal overlaps and significantly extends the kinematics range of the
already approved 12 GeV CLAS proposal, E12-07-104, which predicts similar
uncertainties up to 13.5 (GeV/$c$)$^2$. The present proposal
includes measurements at Q$^2$ beyond the range of that experiment
and will have significantly
greater statistics for the highest-Q$^2$ points covered by E12-07-104.
We request a total of 49 days
divided among four beam energies, 4.4, 6.6, 8.8 and 11. GeV.
\newpage
\tableofcontents
\newpage
\end{abstract}
\section{Introduction}
%The elastic form factors of the nucleons give us some of the best
%opportunities to make precise measurements related to the structure of
%hadrons.
The elastic form factors probe the four-current distributions of the
nucleons, fundamental quantities that provide
%The distribution of electromagnetism in the nucleon is a fundamental quantity
%that provides
one of the best opportunities to test our understanding of
nucleon structure.
A number of theoretical techniques exist to describe the
nucleon's electromagnetic structure,
%the distribution of electromagnetism in momentum space,
including quark models, perturbative Quantum Chromo-Dynamics (pQCD), lattice QCD,
effective field theories, vector-meson dominance (VMD) models, etc.
Each at present has limitations, and its validity must be confirmed by experiment.
In the examples given,
\begin{itemize}
\item quark models, as constructed, are phenomenological with no firm basis in QCD,
\item pQCD is limited to high four-momentum transfer, and it is unknown at what
momentum transfer it becomes valid,
\item lattice QCD is presently limited, by computational requirements, to describing the isovector
(proton minus neutron) form factors, since the effects of disconnected quark lines
largely cancel in these,
\item effective field theories are limited to small momentum transfer, and
\item VMD models are constructed as fits to the existing data base.
\end{itemize}
Experimentally, the nucleon electromagnetic form factors are a central
part of the Jefferson Lab 12 GeV program, and it is desirable to measure
all four nucleon form factors over the widest possible $Q^2$ range, to similar
precision.
This goal is particularly motivated so that one can construct the isovector form factors
for comparison with lattice calculations.
In the one-photon approximation the cross section for scattering of
electrons from
a spin-$\frac{1}{2}$ target can be written as
$$\frac{d\sigma}{d\Omega}=\eta \frac{\sigma_{\mbox{\scriptsize
Mott}}}{1+\tau}\left((G_E)^2+\frac{\tau}{\epsilon}(G_M)^2
\right)$$
where
\begin{itemize}
\item $\eta=\frac{1}{1+2\frac{E}{M_N}\sin^2(\theta/2)}$ is the recoil
factor
\item $\epsilon=(1+\vec{q}^2/Q^2\tan^2(\theta/2))^{-1}=
(1+2(1+\tau)\tan^2(\theta/2))^{-1}$
is the longitudinal polarization of the virtual photon,
\item $\tau=Q^2/4 M_N^2$, and
\item $G_E(Q^2)$ and $G_M(Q^2)$ are the Sachs Electric and Magnetic form factors.
\end{itemize}
Alternately, the helicity conserving
$F_1$ and helicity nonconserving $F_2$ form
factors can be written as simple linear combinations of the
electric $G_E$ and magnetic $G_M$ form factors.
The measurement of these form factors for the proton and neutron
probes their electromagnetic structures.
Little is known of the neutron's magnetic form factor, \gmnc, (and less of
its electric form factor) for $Q^2>4$ (GeV/c)$^2$.
{\it We propose to make several high precision measurements of \gmn in the range
$4.5<Q^2<18.0$ (GeV/c)$^2$, the largest $Q^2$ proposed measurements of \gmn to date.}
Since the form factors are functions only of $Q^2$, they
may be separated by the Rosenbluth technique, making cross section
measurements at
the same $Q^2$ but different $\epsilon$ to obtain different linear
combinations. The apparent failure of this technique in extraction of \gep
%$G_E^p$
at $Q^2>1$ (GeV/c)$^2$ (as revealed by the recoil polarization
method \cite{jones,gayou})
may indicate a failure of the one-photon exchange approximation \cite{afan}.
This does not invalidate the form given above, however. It just
underscores the fact that the corrections may be non-negligible and
may become important particularly when trying to separate a small contribution from
a larger one. This consideration does not present a great problem
when trying to extract the magnetic form factor of the neutron since
the electric form factor is generally much smaller, at least at low $Q^2$.
%Since the experimental situation at several (Gev/$c$)$^2$ is undetermined,
%it is quite possible that the neutron magnetic form factor is no longer dominant.
These Sachs form factors are trivially related to the Dirac and Pauli
form factors, F$_1$ and F$_2$, respectively, which are
the coefficients of the
helicity-conserving and -nonconserving currents to
which the photon can couple. Non-relativistically the Sachs form
factors can be interpreted as the Fourier transforms of the charge and
current distributions to which the photon couples in the target. No
such simple interpretation is available at higher $Q^2$. The electric
form factor at any $Q^2$ can still be related to the Fourier transform
in the Breit frame. But since the Breit frame is a different frame
for each $Q^2$, this relationship cannot be inverted to extract a
charge distribution without a prescription for boosting the nucleon.
Recent work \cite{Miller} by Miller offers an interpretation of
the infinite-momentum frame charge density of
the nucleon as a function of impact parameter in terms of the Dirac
form factor, $F_1=(G_e+\tau G_m)/(1+\tau)$. Interestingly, this
implies that knowledge of the {\em magnetic} form factor of the
neutron is important to the understanding of its charge distribution.
Furthermore, Miller concludes that
the neutron charge distribution is negative for small impact parameter,
which contrasts, at least na\"ively, with the long-standing
belief that the neutron charge distribution is positive at the center.
A positive central charge distribution is in accordance with
intuitive models --
for example, the neutron charge distribution reflects a virtual $p\pi^-$
pair, with the more massive proton closer to the center of mass.
The interest in understanding the charge distribution is
reflected by the appearance of a figure indicating
the positive central charge distribution in the recent
Nuclear Physics long Range Plan.
%Thus, it is important to understand whether or not the central charge
%distribution of the neutron is indeed negative.
%The uncertainty in Miller's result arises mainly from the lack of high
%$Q^2$ measurements, necessitating measurements of the magnetic form factor,
%which we propose here.
In the approximation that the strange quark does not contribute to the
electromagnetic structure of the nucleon, the form factors can be
combined \cite{qf1,qf2,qf3}
to extract information about the contributions of individual
quark flavors to the electromagnetic structure of the nucleon.
Assuming isospin symmetry, the up-quark distribution of the proton is
identical to the down-quark distribution of the neutron and {\it vice
versa}. Since the electromagnetic couplings to the individual quarks
are known (and the coupling to gluons vanishes) the electric or
magnetic form factor of each nucleon can be written as a linear
combination of the electric and magnetic form factors of the two quark
flavors. Combining measurements on the neutron and proton then allows
direct extraction of the ``up'' form factor (including contributions
from $u$ and $\bar u$ quarks from the sea, as well as valence quarks)
and the ``down'' form factor (also composed of all $d$ and $\bar d$
contributions). In particular, improved measurements of the neutron's
magnetic form factor can be combined with existing measurements of the
proton's magnetic form factor to allow extraction of the ``up-magnetic
form factor'' and ``down-magnetic form factor''. If, on the other
hand, the contribution of strange quarks is {\em not} negligible, then
the measurement of the neutron form factors would be critical to allowing
the strange contribution to be measured. (At present, however, there
are no plans to measure strange form factors in the $Q^2$ range in
which we propose to measure.)
%While the form factors may not lend themselves to simple interpretation
%in terms of the structure of the nucleons, they are still pivotal as
The form factors are pivotal as the meeting place between theory and experiment.
% First-principles
Calculations of nucleon structure (as opposed to parameterizations of form factors) can be
tested by their ability to predict the experimentally accessible
information on nucleon structure reflected in the form factors. (Of
course, polarization observables and structure functions will also be
relevant.) In particular, lattice QCD predictions will eventually
have the capability to make meaningful predictions of hadronic
structure. Form factors of the proton and neutron will present
important tests of those predictions.
A great deal of experimental and theoretical effort
\cite{GPD1,GPD2,GPD3} is being expended
on an ambitious effort to greatly expand the knowledge of nucleon
structure by determining the generalized parton distributions.
Measurement of form factors plays an important role in that effort
since the form factors set the values of sum rules which the generalized parton
distributions must obey.
The neutron's form factors are more difficult to measure, of course, because there is no free-neutron target.
Spin-asymmetry techniques have been used in extracting the tiny electric form factor of the
neutron \cite{pol1,pol2,pol3,pol4,pol5,pol6,pol7}
and also in measuring the magnetic \cite{pol_gmn1,pol_gmn2,pol_gmn3}
form factor, particularly at low $Q^2$.
Generally at high $Q^2$, however, quasielastic
scattering from the deuteron has been used \cite{sub1,sub2,sub3,sub4,
SLAC_Rock,sub5,tag1,tag2,rat1,rat2,rat3,rat4,rat5,rat6,rat7,Will}
to extract \gmnc.
This is based on the fact that the deuteron is a loosely coupled system, so
high-$Q^2$ quasi-elastic scattering can be viewed as the sum of
scattering from a proton target and scattering from a neutron target.
This simple picture is complicated only slightly by the fact that the
targets are not at rest but are moving with the ``Fermi motion''
intrinsic to the deuteron's wave-function.
Several techniques have been used to try to isolate the electron-neutron scattering of interest.
In the ``proton-subtraction'' technique \cite{sub1,sub2,sub3,sub4,SLAC_Rock,sub5}
single-arm quasi-elastic electron scattering from the deuteron is measured.
This is combined with a measurement of single-arm elastic scattering from the proton.
An attempt is made to fold in the expected effects of Fermi motion to
simulate the expected contribution of the proton in the measured quasi-elastic spectrum.
This is then subtracted and the remainder is interpreted as a measure of quasi-elastic electron scattering off the
neutron from which the (almost purely magnetic) form factor can be determined.
This technique tends to suffer from the error-propagation problems intrinsic to
subtraction of two large numbers.
At low $Q^2$ the proton electric form factor dominates (and the proton magnetic form factor is never
small compared to the neutron's).
At high $Q^2$ inelastic background becomes a serious problem, to the extent that the quasi-elastic
``peak'' may not be visible, even as a shoulder on the background peak.
Because these are single-arm measurements, no other information
is available with which to selectively reject background events.
The ``proton-tagging'' technique \cite{tag1,tag2} is a partial-coincidence method which takes
advantage of the fact that protons are easier to detect than neutrons.
In that technique quasi-elastic electron scattering is
measured with an additional charged-particle detector
%positioned where the recoiling nucleon is expected to pass (
centered around the direction of the momentum-transfer vector, $\vec{q}$.
If no proton is detected, the event is ascribed to scattering from the neutron.
This technique generally requires substantial theory-based corrections
to account for the tail of the Fermi-motion which would cause a recoil proton to miss
the charged-particle detector (or cause a spectator proton to hit it).
Again, since the neutron is not detected, no cuts can be applied to
selectively reject inelastic background events.
We propose to use the ``ratio-method'' \cite{Durand} which is discussed in detail in the next section.
It relies on measurement of both the recoil protons and recoil neutrons \cite{rat1,rat2,rat3,rat4,rat5,rat6,rat7,Will}.
Inelastic background is substantially suppressed by even a crude nucleon-coincidence requirement.
As will be seen in simulations
presented in section \ref{inelastic}, precise measurement of the
final-nucleon direction permits the use of cuts which further reduce
inelastic background down to manageable levels, even at the highest $Q^2$.
If the particle detection, particularly the neutron
detection is well understood, this technique is subject to the
smallest systematic errors as it enjoys substantial cancellation of
many sources of systematic error which plague other techniques.
There are relatively few measurements of \gmn beyond $Q^2=1$ (GeV/c)$^2$.
The few published measurements in the range $1<Q^2<4.5$
(GeV/c)$^2$ (shown in Fig. \ref{old_data}) have been eclipsed, both
in number of points and in precision, by the recent CLAS data \cite{Will,Jeff} of
Lachniet.
These (not yet published) data are shown in Fig. \ref{old_data} as the blue points.
Several of the proposers of the present experiment played key roles in the CLAS experiment (Quinn,
Brooks and Gilfoyle).
The ratio-method was used for those measurements and will be used in the proposed experiment.
In the figure, the value of \gmn is divided by the 'scaled dipole'. The
dipole is a vector-meson-dominance-inspired empirical parameterization
of the proton's electric form factor: \gep $\approx G_D=(1+Q^2/.71$
(GeV/c)$^2$)$^{-2}$. This appeared to be a good approximation for
\gep over a large $Q^2$ range until recent recoil-polarization
measurements \cite{jones,gayou}) showed that \gep actually
fell rapidly below the
dipole form for $Q^2>1$ (GeV/c)$^2$. The scaling approximation
hypothesizes that \gmp $\approx \mu_p G_D$ and \gmn $\approx \mu_n
G_D$. The CLAS data show that the `scaled dipole' is a surprisingly
good approximation for \gmn out to $Q^2\approx 4.5$ (GeV/c)$^2$.
Beyond $Q^2=4.5$ (GeV/c)$^2$ there are only a
few points, with large errors. The
points plotted in green in Fig. \ref{old_data} are SLAC measurements
\cite{SLAC_Rock} made using the ``proton-subtraction'' technique.
While these points have relatively large
errors, they point to a trend which
%appears inconsistent with
is not seen in
the CLAS data. This makes it particularly interesting to investigate
the behavior of \gmn in the range $Q^2>4$ (GeV/c)$^2$ with a
measurement which is independent of either of those shown in Fig.
\ref{old_data}. A similar plot is presented at the end of the
proposal, with the projected errors of the proposed measurement superimposed.
\begin{figure}
\includegraphics[width=6in]{old_dat.pdf}\\
\caption{\label{old_data}
Existing data on \gmn in $Q^2>1$ (GeV/c)$^2$ range are plotted as ratio to
scaled dipole approximation. Blue points are from CLAS e5 run
\cite{Will,Jeff}. Dark blue lines show the statistical error while
light blue lines
are the quadrature sum of statistical and systematic errors. Green circle
\cite{SLAC_Rock} and magenta circle \cite{sub5}
points are from SLAC. Older data are shown as yellow squared
\cite{rat2}, solid squares \cite{tag2}, and hollow triangles \cite{sub4}.
Some points have been slightly displaced horizontally to avoid overlap.}
\end{figure}
\section{Technique}
We propose to use the ``ratio method''\cite{Durand} to determine \gmn from
quasi-elastic electron scattering on the deuteron for $3.5 < Q^2 < 18$
(GeV/c)$^2$. This method is far less sensitive to systematic errors than
the ``proton-subtraction'' or ``proton-tagging'' techniques.
Use of the ``ratio method'' requires the measurement of both
neutron-tagged, d(e,e$'$n), and proton-tagged, d(e,e$'$p), quasi-elastic
scattering from the deuteron. Simultaneous measurements of both
these reactions provides a substantial reduction of systematic error
because numerous experimental uncertainties
cancel in forming the ratio:
\begin{equation}
R''=\frac{\left.\frac{d\sigma}{d\Omega}\right|_{\mbox{\small d(e,e$'$n)}}
}{\left.\frac{d\sigma}{d\Omega}\right|_{\mbox{\small d(e,e$'$p)}}}
\label{r-double-prime-eqn}
\end{equation}
This is insensitive, for example, to target thickness, beam intensity,
deadtime, electron trigger efficiency, electron acceptance, and the
detection and reconstruction efficiency for the scattered electron track.
With a small and accurately-calculable nuclear correction,
$\epsilon_{\mbox{\scriptsize nuc}}$, this measured ratio of quasi-elastic
cross sections can be used to determine the ratio of the elastic cross
sections:
$$ R'
=\frac{\left.\frac{d\sigma}{d\Omega}\right|_{\mbox{\small n(e,e$'$)}}
}{\left.\frac{d\sigma}{d\Omega}\right|_{\mbox{\small p(e,e$'$)}}}
=\frac{R''}{1+\epsilon_{\mbox{\scriptsize nuc}}}$$
Because of final-state interactions and other nuclear effects, there
would be substantial corrections to the na\"ive assumption that the
coincident quasi-elastic cross section is equal to the cross section
for elastic scattering from the free nucleon. Further, these
corrections would depend upon the fraction of the quasi-elastic peak
which is integrated. A great advantage of the ratio method (with
a deuteron target) lies
in the fact that these corrections are almost identical for the case
of the neutron and the proton and so they cancel almost completely
in the ratio. The
small surviving correction, $\epsilon_{\mbox{\scriptsize nuc}}$, to the
ratio arises due to small effects such as the neutron-proton mass difference.
Figure \ref{aren_corr} shows detailed calculations\cite{Arenhovel}
by Arenh\"ovel
of the correction factor required in calculating the ratio of the nucleon
elastic cross sections from the ratio of the integrated nucleon-tagged
quasi-elastic cross sections. Here $\theta_{pq}$ is
the angle between the struck nucleon's final momentum vector
($\vec{p}$) and the momentum-transfer vector ($\vec{q}$). Final state
interaction effects are minimized by putting a tight cut on
$\theta_{pq}$ (i.e. requiring that the nucleon actually recoil in the
direction which would be expected in the absence of Fermi motion and
final state interactions). It will be seen below that the region of
interest in the present proposal has $\theta_{pq}<3$ degrees.
Even at $Q^2=1.2$ (GeV/c)$^2$ the correction is seen to be less than
1\%. For higher $Q^2$ up to 5 (GeV/c)$^2$ calculations of the nuclear
correction have been made \cite{Will,Jeff} using a model\cite{Jesch}
which applies Glauber theory to model the final-state interactions. Again,
the corrections for the neutron and proton are almost identical and
cancel in the ratio. The residual correction on the ratio
$\epsilon_{\mbox{\scriptsize nuc}}$ was found to be under 0.1\%. The
corrections are expected to be very small and calculable in the range
of interest here. This correction is expected to contribute
negligibly to the systematic error of the measurement.
\begin{figure}
\begin{center}
\includegraphics[width=5 in]{aren_corr.pdf}\\
\end{center}
\caption{\label{aren_corr}
Arenh\"ovel predictions for (low $Q^2$)
nuclear corrections (including FSI) as a function of the maximum
accepted value of $\theta_{pq}$.
%the angle between the struck nucleon's final momentum vector
%($\vec{p}$) and the momentum-transfer vector ($\vec{q}$).
The required
correction is seen to be small for tight cuts on $\theta_{pq}$ and to
{\em decrease} with increasing $Q^2$.}
\end{figure}
Writing $R'$ in terms of neutron form factors,
$$ R'=\frac{\eta\frac{\sigma_{\mbox{\scriptsize Mott}}}
{1+\tau}\left((G_E^n)^2+\frac{\tau}{\epsilon}(G_M^n)^2 \right)}
{\left.\frac{d\sigma}{d\Omega}\right|_{\mbox{\small p(e,e$'$)}}}$$
where
$\eta$, $\epsilon$, and $\tau$ are defined above.
%, as above,\\
%$\eta=\frac{1}{1+2\frac{E}{M_N}\sin^2(\theta/2)}$ \\
%$\epsilon^{-1}=1+\vec{q}^2/Q^2\tan^2(\theta/2)=1+2(1+\tau)\tan^2(\theta/2)$\\
%and $\tau=Q^2/4 M_N^2$
%Then, with a minor correction ($\approx1$ \%, using the Galster
%parameterization) for the electric form factor of the neutron,
%this in turn allows determination of the ratio of interest,
From this, then, can be extracted the ratio of interest,
\begin{equation}
R=R'-\frac{\eta\frac{\sigma_{\mbox{\scriptsize Mott}}}{1+\tau}(G_E^n)^2}{\left.\frac{d\sigma}{d\Omega}\right|_{\mbox{\small p(e,e$'$)}}}
=\frac{\eta\sigma_{\mbox{\scriptsize Mott}}\frac{\tau/\epsilon}{1+\tau}(G_M^n)^2}
{\left.\frac{d\sigma}{d\Omega}\right|_{\mbox{\small p(e,e$'$)}}}
\label{r_eqn}
\end{equation}
The term subtracted to extract $R$ from $R'$ will be small ($\approx
1$\% at most, and much less at high $Q^2$) if %$G_E^n$
\gen follows
the form of the Galster parameterization. In section
\ref{systematic_errors} we will allow for an error of 100\% of Galster
(at low $Q^2$) up to 400\% of Galster (at high $Q^2$) and find that
this correction still does not cause unacceptable systematic errors.
A measurement of \gen up to $Q^2=10$ (GeV/c)$^2$ is planned\cite{new_GEN}
in a time-frame which will make it useful for analysis of results from
this measurement.
This measurement of $R$ then allows \gmn to be determined, given
just the proton's
elastic cross-section at the corresponding kinematics.
It may be noted that, because $R$ is proportional to the square of \gmnc, the
fractional error on \gmn will actually be only half of the fractional
error on $R$. Since the quantity of greatest interest is \gmnc, it is
conventional to report the expected size of the errors on \gmnc.
%The real result of the experiment, however, will be
%measurements of R.
However, the experiment will actually be a direct measurement of
$R''$ (from which $R$ is
inferred with small corrections, as described above).
This distinction is significant only in that
present uncertainties on the proton's form factors (and cross
section) do not actually imply systematic errors on the quantity
being measured, $R''$ (or $R$). Subsequent improvements in the determination of the
proton cross section, at the kinematics of interest, can be combined
retrospectively with the results for $R$ from this measurement to
obtain improved values for \gmnc. There would be no need to repeat the
analysis of this experiment to incorporate new proton measurements.
Similarly, since the proton cross section is dominated by \gmp
%{G$^{\mbox{\scriptsize p}}_{_{\mbox{\tiny M}}}~$}
for these kinematics, the ratio of formfactors,
\gmnc/\gmp
%{G$^{\mbox{\scriptsize p}}_{_{\mbox{\tiny M}}}~$}
can be cleanly extracted from the data. In many ways this ratio is
more fundamental than \gmnc, lending itself to direct comparison to
theoretical predictions. Extraction of this ratio does not suffer
from a systematic error due to uncertainties in proton cross section
measurements. Like \gmnc, this ratio enjoys a factor of two reduction
in the fractional error compared to $R$.
\section{Proposed Kinematics}
The kinematic points at which we propose to measure are shown in Table
\ref{Kin_table}. The lowest-Q$^2$ points will overlap with existing
CLAS measurements while the highest-Q$^2$ points will greatly extend
the range in which \gmn is known with high precision
\begin{table}
\begin{center}
\caption{Kinematics of proposed measurements \label{Kin_table}}
\vspace{.2in}
{\begin{tabular}{|l|l|l|l|l|l|}
\hline
Q$^2$ & E$_{\mbox{beam}}$ & $\theta_e$ & $\theta_N$ & E$'$ & P$_N$ \\
(GeV/c)$^2$ & (GeV) & & & (GeV) & (GeV/c)\\
\hline
3.5 & 4.4& 32.5$^\circ$&31.1$^\circ$ & 2.5 & 2.6\\
4.5 & 4.4& 41.9$^\circ$&24.7$^\circ$ & 2.0 & 3.2\\
6. & 4.4& 64.3$^\circ$&15.6$^\circ$ & 1.2 & 4.0\\
8.5 & 6.6& 46.5$^\circ$&16.2$^\circ$ & 2.1 & 5.4\\
10. & 8.8& 33.3$^\circ$&17.9$^\circ$ & 3.5 & 6.2\\
12. & 8.8& 44.2$^\circ$&13.3$^\circ$ & 2.4 & 7.3\\
13.5 & 8.8& 58.5$^\circ$&9.8$^\circ$ & 1.6 & 8.1\\
16. & 11.& 45.1$^\circ$&10.7$^\circ$ & 2.5 & 9.4\\
18. & 11.& 65.2$^\circ$&7.0$^\circ$ & 1.4 & 10.5\\
\hline
\end{tabular}}
\end{center}
\end{table}
While the scattered electron energy is relatively constant (mostly near 1 to 2
GeV) across the kinematic points, the central nucleon momentum of
interest is seen to vary from 2.65 GeV/c to 10.5 GeV/c. Individual
calibrations with 'tagged' protons and 'tagged' neutrons will be
carried out at the three lowest-Q$^2$ kinematic points to ensure that
the neutron and proton detection efficiencies are well known. As will
be seen below, the efficiencies are large and stable for higher Q$^2$.
% Since
%the variation in efficiency is expected to be quite small, more
%extensive calibrations at lower momenta can be extrapolated to higher
%nucleon momenta with guidance from more restricted measurements at the
%higher momenta.
\section{Apparatus}
The use of the ratio method depends upon detection of both scattered
neutrons and protons. Potential sources of systematic error arise in
%the understanding of the acceptance for these particles and in the
%calibration of the efficiencies of their detection.
determining the acceptance and detection efficiency of these particles.
Errors associated
with nucleon acceptance can be reduced by matching the neutron and
proton acceptances so they cancel in the ratio (as does the electron
acceptance and efficiency).
% It is critical that the detection
%efficiecies for neutrons and protons be well determined by calibration
%rections.
We propose to use the existing BigBite spectrometer in Hall A to
measure the momentum and angle of the scattered electrons and the
BigHAND detector to detect both the scattered neutrons
and protons. Nucleons scattered toward the BigHAND detector
will pass through the field of a large aperture dipole magnet which
will be positioned along the nucleon flight path to vertically deflect protons
relative to neutrons. The layout of the experiment is shown
schematically in Fig. \ref{layout}.
\begin{figure}
\includegraphics[width=6in]{layout.pdf}\\
\caption{\label{layout}
A schematic view of one possible configuration of the
apparatus is shown. BigBite will detect
scattered electrons while BigHAND will detect the scattered nucleons.
The dipole magnet ``BigBen'' will deflect protons for the purpose of
particle identification. The coil configuration shown is one option
for avoiding interference between the coils and the beamline. A
magnetically-shielded hole in the return iron will allow the
unscattered beam to continue on to the beam dump.
The corrector coils ``CC'' will compensate
for any effect of residual magnetic field on the beamline.
Note: the 17 m flight path to BigHAND
is not drawn to scale.
}
\end{figure}
The targets will be 10 cm long liquid deuterium (and liquid hydrogen
for calibration) cells with 100 $\mu$m aluminum windows. This
gives about 1.7 g/cm$^2$ of target compared to about 0.054 g/cm$^2$ in
the windows. As discussed below, selection cuts will reduce the
contribution of quasi-elastic events from aluminum below this 3.2\% ratio.
To obtain percent-level precision, however, it will be necessary to
subtract the contribution from the windows. A dummy target cell will
be used, having windows at the same position as the real cell but with
windows thick enough to give the same luminosity as for a full cell.
Sufficient statistics for subtraction of the windows will be obtained
by running on the dummy cell for about four percent of the beam time
used for the full target.
As discussed below, past experience suggests the BigBite and
BigHAND detector rates will
be reasonable at a luminosity of $6.7\times10^{37}$/A /cm$^2$/s
where A is the number of nucleons in the target. For a luminosity of
3.3 $\times 10^{37}$ on a 10 cm deuterium target, the beam current
would be 10.5 $\mu$A.
%{\bf XXX Bogdan, please review and update. \\}
BigBite, shown in Fig. \ref{fig_BigBite}, is a large acceptance non-focusing
magnetic spectrometer. It has a large
acceptance (roughly 53 msr in the
intended configuration) and has been used successfully at high
luminosity ($\approx 10^{37}$/cm$^2$/s). It will be configured for
high momentum measurements, with the entrance aperture of the
dipole 1.55 m from the target and
%{\bf XXX}
widely spaced coordinate-measuring detector planes %spaced over 85 cm.
For the high luminosity of the experiment, the spectrometer will be
instrumented with GEM detector planes. These detectors are planned
for use in the polarimeter of the new Super BigBite Spectrometer (SBS) and so
will be available for use as the tracking detectors for BigBite.
The GEM detectors are designed in a modular form specifically chosen
to allow them to be configured to instrument BigBite as well as the
new SBS spectrometer. Figure \ref{GEM} shows how the modules will be
assembled to form four tracking planes for BigBite.
In this configuration,
the expected momentum resolution will be $\sigma_p/p\approx$
.5\% because of the high resolution and small
multiple-scattering resulting from the relatively thin GEM detectors.
The angular resolution is
expected to be better than 1 mr in both horizontal and vertical angles
\cite{bb_simulation}.
%The addition of a gas Cerenkov detector in BigBite is expected to
%eliminate the majority of the trigger rate which was seen in the GEn
%experiment. Analysis of that data showed that most BigBite triggers
%were not associated with any charged tracks, indicating that the
%shower counters had been triggered by high energy photons from $\pi^0$
%decay. Elimination of this source of false triggers is expected to
%reduce the trigger rate in BigBite to a few hundred Hz. Therefore we
%intend to run using just BigBite (with the gas Cerenkov required) as
%a trigger
We intend to run with a single-arm trigger based only upon the
electron spectrometer. This eliminates any neutron/proton bias from
the trigger and ensures that the trigger efficiency cancels completely
in the ratio of interest, R.
The lead-glass electromagnetic calorimeter will be used for the
trigger of the experiment.
As will be discussed in section \ref{rates}, this is expected to allow
a modest single-arm trigger rate of less than 1 kHz.
If the gas Cerenkov has been successfully commissioned, it may also be
used for redundant rejection of pions in BigBite.
\begin{figure}
%\includegraphics[width=5in]{bb_diagram.pdf}
\includegraphics[width=5in]{bb_gem_02.jpg}
\caption{\label{fig_BigBite}The BigBite spectrometer,
configured for high momentum, high luminosity running.
Tracking is performed with GEM detectors
and a gas Cerenkov counter is located between the
detector packages. (The target label refers to another experiment.)}
\end{figure}
\begin{figure}
\includegraphics[width=5in]{BigBite-tracker.pdf}
\caption{\label{GEM}
The layout of a 40 cm X 50 cm GEM module is shown along with the
arrangements in which the modules would be used to form the four tracking
layers for BigBite. The required active area for each layer is shown
as a blue dashed line. One Amplification Unit is removed in the
diagram to show the U-V readout board. }
\end{figure}
The BigHAND (Hall A Nucleon Detector), shown in Fig.
\ref{fig_BigHAND},
is a large array of scintillators interspersed with seven half-inch
thick iron converters
which initiate hadronic showers. A ``veto'' layer on the front face
was intended to distinguish neutrons from protons. (An alternative
technique will be employed for this measurement, as will be discussed
below.) Heavy shielding (2 inches of lead and 1 inch of iron) reduces
the electromagnetic rate in the scintillators.
The observed r.m.s.
spatial resolution
of reconstructed hadronic showers for the GEn experiment \cite{GEn-proposal}
is typically
4.3 cm. vertically and
7 cm. horizontally. The detector will be located 17 meters from the
target so the corresponding angular resolution will be 2.5 mr and 4 mr
(0.15$^\circ$ and .24$^\circ$),
respectively. With the higher nucleon momentum of the present
proposal, the resolution may be be somewhat improved, especially in
the horizontal direction. This excellent resolution will permit
critical cuts on the direction of the recoil nucleon relative to the
$\vec q$-vector direction.
\begin{figure}
\begin{center}
\includegraphics[width=4in]{figures/bighand.pdf}
\end{center}
\caption{\label{fig_BigHAND}The BigHAND (Hall A Nucleon Detector).
Iron converters initiate hadronic showers which are detected by
the large scintillators. }
\end{figure}
The r.m.s. time-of-flight resolution of the overall detector array is
approximately 400 ps\cite{Rob_F}. Since the momenta of the nucleons
of interest are sharply defined, this will allow tight timing cuts to
reject accidentals.With a 17 meter flight path, this
will allow clean rejection of low energy nucleons from break-up of nuclei.
%\begin{table}
%\begin{center}
%\caption{Flight time for nucleon vs. photon for 17 m flight path\label{ToFs}}
%\vspace{.2in}
%{\begin{tabular}{|l|l|l|l|l|}
%\hline
%Q$^2$ & $\theta_N$ & P$_N$ & T$_N$ & T$_N-$T$_\gamma$ \\
%(GeV/c)$^2$ & & (GeV/c) & (ns) & (ns)\\
%\hline
%3.5 &28.7$^\circ$ & 2.65&60.1&3.4\\
%4.5 &21.7$^\circ$ & 3.2 &59.0&2.4\\
%5.25 &22.7$^\circ$ & 3.6 &58.7&2.0\\
%6 &18.7$^\circ$ & 4.0 &58.2&1.54\\
%7 &18.7$^\circ$ & 4.6 &57.8&1.17\\
%8 &14.9$^\circ$ & 5.1 &57.6&0.95\\
%\hline
%\end{tabular}}
%\end{center}
%\end{table}
The efficiency predicted by simulation \cite{BH_simulation} for
conversion and detection of neutrons and protons
in the momentum range of interest is shown in Fig. \ref{np_eff}
for a 20 MeV (electron equivalent) threshold.
For neutrons, the predicted efficiency is seen to be over 70\% at the
lowest $Q^2$ of interest and to rise to over 90\% at the highest
$Q^2$. The proton efficiencies are even higher.
As described in the next section, a magnetic 'kick' will be used to
distinguish protons from neutrons.
We have identified a large-aperture magnet at Brookhaven National
Laboratory which could be used for this purpose.
This same dipole will serve as the
spectrometer magnet for the Super BigBite spectrometer.
In its present
configuration, this ``48D48'' magnet, shown in Fig. \ref{48D48}
has a 120 cm $\times$ 120 cm
(48 in. $\times$ 48 in.) pole face with a 47 cm gap.
The magnet will be modified so it can be positioned near
%$19^\circ$ with respect to
the beam line. This will involve machining a hole through
the return yoke to provide a low-field, iron-free region
for passage of the outgoing
beam. Asymmetric field coils will be needed to avoid interfering
with the outgoing beam, One possible solution,
shown in Fig. \ref{layout}, involves the use of an existing
standard-coil/booster-coil pair originally designed to drive half of a
100 cm gap magnet. Correcting coils would be used to compensate
for beam steering due to any residual fields.
The details of the yoke hole,
field coils, field clamps, and correcting coils will be finalized using a
magnetic field simulation program such as TOSCA. The magnet
%will be constructed so that the it
modifications will be designed such that the magnet
can also be used for the
recently-approved high-Q$^2$ proton elastic cross section
experiment\cite{E12-07-108}.
\section{Neutron/Proton Identification}
If neutron/proton identification were based
solely upon the response of the 'veto' layer, then
contamination by mis-identification would be a significant problem.
Experience from the GEn experiment\cite{GEn-proposal}
indicates that about 2.5\% of
(independently identified) protons fail to fire the veto layer and would be
mis-identified as neutrons \cite{Seamus}. More troublesome is the fact that a
significant fraction ($\approx 40\%$) of the detected neutrons
actually fire the veto layer (because the hadronic shower is initiated
in the front shielding). Event topology could be used to more cleanly
identify a subset of more unambiguous neutrons or protons but at the
cost of a large reduction in detection efficiency.
\begin{figure}
\includegraphics[width=6. in]{np_eff.pdf}\\
\caption{\label{np_eff}
The predicted \cite{BH_simulation} detection efficiency
of BigHAND is shown for neutrons
(blue squares) and protons (red circles) as a function of the central nucleon
momentum associated with each $Q^2$.
}
\end{figure}
A much more clean separation of neutrons from protons can be made,
without loss of efficiency, by introducing a dipole magnet to
deflect the protons vertically. If the initial direction of the
nucleon could be accurately predicted, then only a small deflection
would be needed to distinguish charged particles from neutral ones.
In the case of quasi-elastic scattering, the
measured $\vec q$-vector does not precisely predict the direction of the
struck nucleon's final momentum since the initial momentum of the
nucleon within the deuteron also contributes. Using a reasonable
model of the deuteron's wave-function\cite{Lomon}, the momentum
distribution can be determined. It is found that, with 95\% probability,
the component of the nucleon's momentum along any chosen direction is
less than 100 MeV/c. A magnetic 'kick' of 200 MeV/c, then would
separate quasi-elastic protons from neutrons at the 95\% level.
In the simplest analysis, a horizontal line could be defined across
the face of BigHAND (for any given event detected in BigBite) such that the struck nucleon
would have a 95\% probability of falling below the line if the
particle were a neutron and a 95\% probability of falling above the
line if the particle were a proton.
The remaining 5\%
mis-identification can still be accurately corrected by
using the 'veto' layer (and possibly event topology) to determine the actual
%measuring the
distribution of neutron and proton events relative to the ideal
positions they would have for elastic kinematics. In particular the
spread of the neutron distribution relative to the $\vec q$-vector can
be investigated by
studying the sample which do not fire the veto (and making a modest
correction for protons).
Also, since
the initial momenta of the nucleons are vertically symmetric, the
actual distributions of neutron and proton events can be empirically
determined by observing the distributions of those neutrons which are
displaced downward from the point predicted for elastic kinematics and
those protons which are displaced upwards from the (magnetically
deflected) point predicted for elastic kinematics.
Either of these correction techniques
should allow the systematic errors due to neutron/proton
mis-identification to be reduced to well below 1\%, and the
comparison of the two techniques should allow the confident
determination of this contribution to systematic error.
%The 200 MeV/c kick required to separate quasi-elastic protons from
%neutrons can be achieved by applying a dipole field, near the beginning
%of the flight path, having a field integral of $\int{B dl}\approx .85$ T$\cdot$m.
%We have identified a large-aperture magnet (a 48D48 spectrometer
%magnet from BNL) which could serve the purpose. The recently-approved
%high-Q$^2$ proton elastic cross section experiment\cite{E12-07-108}
%will make use of the same magnet. Some modification of the flux
%return yoke of the magnet will be needed to allow it to be placed
%close to the beam.
%48D48