Difference between revisions of "CSV Fall 2018 Run Plan"
(624 intermediate revisions by 21 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Template:SIDIS Run Group Navigation}} | ||
+ | |||
== Quick start instructions == | == Quick start instructions == | ||
+ | # Always run the 50k replays! | ||
# Each setting has '''count goal''' to be reached, e.g., "20000/ 276". This means 20000 "good coin events" (see next item) need to be counted. The charge, 276 mC, is just an estimate. | # Each setting has '''count goal''' to be reached, e.g., "20000/ 276". This means 20000 "good coin events" (see next item) need to be counted. The charge, 276 mC, is just an estimate. | ||
− | # The counts for a given replay are obtained by:<syntaxhighlight lang="bash"> | + | # The counts for a given replay are obtained by (see below for more details):<syntaxhighlight lang="bash"> |
− | bash_csv | + | If not already on cdaql1 -> ssh cdaql1 |
− | + | bash_csv replay # will setup environment | |
+ | do_good_coin -c 20000 # will run the counter on the latest run | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | Note: | + | Note: Running this script will update the "Charge Goal" field on the "blue screen". Follow this charge goal to determine when a setting is complete. The full analysis takes some time, so the number of counts reflected in the "make_csv_runtable" command will not be accurate until the full analysis is complete. |
+ | [http://cdaql1.jlab.org:8888 Open web browser to online counter plots] | ||
# Files to update: | # Files to update: | ||
− | #;DBASE/COIN/standard.kinematics | + | #;DBASE/COIN/standard.kinematics --> This is now updated automatically. If the online plots come up blank, check that the file has updated appropriately. |
#: Keep current before running any replays | #: Keep current before running any replays | ||
− | |||
− | |||
# Update the tables in the wiki: | # Update the tables in the wiki: | ||
## Add good coin counts in "actual" | ## Add good coin counts in "actual" | ||
Line 18: | Line 21: | ||
# Go to '''[[Information_for_Shift_Takers]]''' | # Go to '''[[Information_for_Shift_Takers]]''' | ||
− | == | + | === More Details === |
+ | |||
+ | ==== Setup ==== | ||
+ | <pre> | ||
+ | ssh cdaql1 # connects to cdaql1 | ||
+ | bash_csv replay # puts you in the correct directory | ||
+ | </pre> | ||
+ | |||
+ | |||
+ | Note the detailed command line help for the following scripts. | ||
+ | |||
+ | ==== `do_good_coin` ==== | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | $ do_good_coin -h | ||
+ | USAGE: do_good_coin [-c count_goal] [-r run_number] [-n nevents] | ||
+ | OPTIONS: | ||
+ | -c,--count count goal. [default: 30000] | ||
+ | -r,--run run number [default: most current run] | ||
+ | -n,--nevents Number of events to replay. [default: 100000] | ||
+ | -h,--help print help | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | |||
+ | |||
+ | === Run Table === | ||
+ | <pre> | ||
+ | root -b -q scripts/make_csv_table.cxx | ||
+ | </pre> | ||
+ | This table is automatically populated. If it isn't updating, please contact expert (whit@jlab.org). | ||
+ | |||
+ | ==== `make_csv_table.cxx` ==== | ||
+ | To get the latest aggregate run information: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | root -b -q scripts/make_csv_table.cxx | ||
+ | </syntaxhighlight> | ||
+ | ==== `add_run_comment.py` ==== | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | add_run_comment.py -h | ||
+ | usage: add_run_comment.py [-h] [-r RUN] [-a] [-u] [-f FILE] [-c COMMENT] [-k KINEMATIC] | ||
+ | |||
+ | Accumulate run information. | ||
+ | |||
+ | optional arguments: | ||
+ | -h, --help show this help message and exit | ||
+ | -r RUN, --run RUN the run to add a comment | ||
+ | -a, --append append to existing comments | ||
+ | -u, --update update run file | ||
+ | -f FILE, --file FILE The json run file to add a comment in | ||
+ | -c COMMENT, --comment COMMENT | ||
+ | specify the comment on the commandline | ||
+ | -k KINEMATIC, --kine KINEMATIC | ||
+ | specify the kinematic setting | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | To mark a run as junk: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | $ add_run_comment.py -r 1234 --comment "this run is junk" | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | To add a comment for a given run | ||
+ | <pre> | ||
+ | add_run_comment -r 1234 -c "this run was junk" -u | ||
+ | </pre> | ||
+ | For detailed help, see <code>add_run_comment -h</code> | ||
+ | |||
+ | |||
+ | ==== Blue screen (charge monitor) ==== | ||
+ | <pre> | ||
+ | blue_status_screen | ||
+ | </pre> | ||
+ | |||
+ | The following is for experts only: | ||
+ | |||
+ | To reset the "Kinematic Setting" counter (if it did not reset at the start of a new run setting automatically). | ||
+ | Do not do this if you have not yet started a new run. | ||
+ | |||
+ | <pre> | ||
+ | caput hcRunSettingReconfigured 1 | ||
+ | </pre> | ||
+ | The counter will reset with the next run start. | ||
+ | |||
+ | To get the current run's charge and time: | ||
+ | <pre> | ||
+ | caget hcCOINRunAccumulatedCharge | ||
+ | caget hcCOINRunTime | ||
+ | </pre> | ||
+ | |||
+ | To set the accumulated charge and time for setting: | ||
+ | <pre> | ||
+ | caput hcRunSettingAccumulatedCharge CHARGE_IN_uC | ||
+ | caput hcRunSettingTime SECONDS | ||
+ | </pre> | ||
+ | |||
+ | === Look at the latest results === | ||
+ | |||
+ | [http://cdaql1.jlab.org:8888 Connect to plot display server] (only works from counting house computers) | ||
+ | |||
+ | * The various plots are created when the full replay and counting scripts are finished. | ||
+ | |||
+ | |||
+ | === Full replays === | ||
+ | The full replay automatically starts about 3 minutes after a run start. | ||
+ | |||
+ | To see the currently replays in-progress: | ||
+ | <pre> | ||
+ | ./online_bin/auto_replay_stat | ||
+ | </pre> | ||
+ | |||
+ | ==== monitoring full replays ==== | ||
+ | |||
+ | Looking at the logs (all replays) | ||
+ | <pre> | ||
+ | mux logs | ||
+ | </pre> | ||
+ | |||
+ | To attach to the tmux pane running the replay for a run, run the following command. | ||
+ | <pre> | ||
+ | ./online_bin/auto_replay_stat -r RUN_NUMBER | ||
+ | </pre> | ||
+ | If you are still in tmux (with the blueish bar at the bottom), use the tmux command sequence | ||
+ | "ctrl+a" then "d". This should detach you from the tmux session. | ||
+ | |||
+ | If the replay looks like it is stuck, you can do a "ctrl-c" and the replay should gracefully exit. When it is finished the tmux pane will close. | ||
+ | |||
+ | ==== Running full replays ==== | ||
+ | |||
+ | Sometimes it crashes or you want to re-do it, then run: | ||
+ | <pre> | ||
+ | ./bin/hc_coin_replay -r RUN_NUMBER -n -1 | ||
+ | </pre> | ||
+ | ./online_bin/auto_replay_stat | ||
+ | |||
+ | === Running the Scandalizer === | ||
+ | |||
+ | If the CSS alarm handler (modern-ish looking one) is not being populated. The scandalizer has crashed (due to a known bug). | ||
+ | You can manually run it by | ||
+ | |||
+ | <pre> | ||
+ | ./online_bin/scandalizer -r $(latest_run -t coin) -n -1 -s $(latest_event_number) | ||
+ | </pre> | ||
+ | |||
+ | To bring up the CSS alaram handler run | ||
+ | <pre> | ||
+ | $HOME/whit/bin/start_css_phoebus | ||
+ | </pre> | ||
+ | |||
+ | == 2018-2019 Run Plan == | ||
=== Goal === | === Goal === | ||
Line 36: | Line 185: | ||
* '''Prescale''': PS6=0 all the time. Adjust PS4 to give at least 100 Hz (and no more than 200 Hz) of HMS singles. | * '''Prescale''': PS6=0 all the time. Adjust PS4 to give at least 100 Hz (and no more than 200 Hz) of HMS singles. | ||
− | === Runplan === | + | === Runplan - 2019 === |
* Order of Kinematic Settings | * Order of Kinematic Settings | ||
− | + | ** Setting 33 (Q2=5.5, x=0.65, pi-) | |
− | ** Setting | + | ** Setting 34 (Q2=5.5, x=0.65, pi+) |
− | |||
− | |||
− | ** Setting | ||
− | |||
− | |||
− | |||
− | |||
+ | |||
+ | === Runplan - Fall 2018 === | ||
+ | |||
+ | * Order of Kinematic Settings | ||
+ | ** Hydrogen Elastics '''DONE''' | ||
+ | ** Setting 2 (Q2=4, x=0.35, pi+) '''DONE''' | ||
+ | ** Setting 1 (Q2=4, x=0.35, pi-) '''DONE''' | ||
+ | ** Setting 5 (Q2=4, x=0.45, pi-) '''DONE''' | ||
+ | ** Setting 6 (Q2=4, x=0.45, pi+) '''DONE''' | ||
+ | ** Setting 10 (Q2=4.75, x=0.45, pi+) '''DONE''' | ||
+ | ** Setting 9 (Q2=4.75, x=0.45, pi-) '''DONE''' | ||
+ | ** Setting 13 (Q2=4.76, x=0.55, pi-) ''' PARTIALLY DONE - need lowest z setting: update: DONE''' | ||
+ | ** Setting 14 (Q2=4.76, x=0.55, pi+) '''DONE''' | ||
+ | ** Setting 13-10 to 13-12 (Q2=4.76, x=0.55, pi-)'''DONE''' | ||
+ | ** Setting 16 (Q2=4.78, x=0.6, pi-) '''DONE''' | ||
+ | ** Setting 15 (Q2=4.78, x=0.6, pi+) '''DONE''' | ||
+ | ** Setting 11 (Q2=5, x=0.5, pi+) '''DONE''' | ||
+ | ** Setting 12 (Q2=5, x=0.5, pi-) '''DONE''' | ||
+ | ** SHMS electron singles run '''DONE''' | ||
+ | ** Setting 8 (Q2=3.98, x=0.5, pi-)'''DONE''' | ||
+ | ** Setting 7 (Q2=3.98, x=0.5, pi+) ''' DONE''' | ||
+ | ** Setting 17 (Q2=5.5, x=0.5, z=0.7 '''DONE''' | ||
+ | ** Setting 18 (Q2=5.5, x=0.5, z=0.6 '''DONE''' | ||
+ | ** Setting 3 (Q2=4, x=0.4, pi+) up to setting 3-6 (inclusive) (i.e. not 3-7 and 3-8) '''DONE''' | ||
+ | ** Setting 4 (Q2=4, x=0.4, pi-) up to setting 4-6 (inclusive) (i.e. not 4-7 and 4-8) '''DONE''' | ||
+ | ** https://hallcweb.jlab.org/wiki/index.php/5_pass_Run_Plan#Kinematic_Group_15 Do kinematics 16-11 (pi-) and then 15-11 (pi+). For these last 2 settings, scale the requested charge to account for the time remaining before 8 am. Both polarities are required, so plan to spend about half the remaining time on each. | ||
==== Hydrogen Coincidence Elastics for HMS Checks ==== | ==== Hydrogen Coincidence Elastics for HMS Checks ==== | ||
Line 82: | Line 250: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual/mC || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual/mC || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 1-1 || LD2 || 50.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || -4.262 || 11.61 || -1 || 20000 || 21113 || 1:31 || 276.0 || 6068,6070 | + | | 1-1 || LD2 || 50.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || -4.262 || 11.61 || -1 || 20000 || 21113/130 || 1:31 || 276.0 || 6068(rfoff =399.1),6070+6071(rfoff=397.1)(done) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 1-2 || DUM || 40.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || -4.262 || 11.61 || -1 || 3694 || 3639 || 1:03 || 151.5 || 6067(done) | + | | 1-2 || DUM || 40.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || -4.262 || 11.61 || -1 || 3694 || 3639/109 || 1:03 || 151.5 || 6067(done) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 1-3 || LH2 || 50.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || -4.262 || 11.61 || -1 || 20000 || 23632 || 3:21 || 605.8 || 6065,6066(done) | + | | 1-3 || LH2 || 50.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || -4.262 || 11.61 || -1 || 20000 || 23632/271 || 3:21 || 605.8 || 6065,6066(done) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 1-4 || LD2 || 50.0 || 4.000 || 0.350 || 0.600 || -4.508 || 16.64 || -3.653 || 11.61 || -1 || 20000 || 21050 || 0:54 || 164.0 || 6073 | + | | 1-4 || LD2 || 50.0 || 4.000 || 0.350 || 0.600 || -4.508 || 16.64 || -3.653 || 11.61 || -1 || 20000 || 21050/124 || 0:54 || 164.0 || 6073 (rfo 397.1), 6081 (399.1)(done) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 1-5 || DUM || 40.0 || 4.000 || 0.350 || 0.600 || -4.508 || 16.64 || -3.653 || 11.61 || -1 || 3589 || 4368 || 0:36 || 87.7 || 6080 (done) | + | | 1-5 || DUM || 40.0 || 4.000 || 0.350 || 0.600 || -4.508 || 16.64 || -3.653 || 11.61 || -1 || 3589 || 4368/124 || 0:36 || 87.7 || 6080 (done) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 1-6 || LH2 || 50.0 || 4.000 || 0.350 || 0.600 || -4.508 || 16.64 || -3.653 || 11.61 || -1 || 20000 || 21683 || 1:56 || 350.6 || 6082 6083 (done) | + | | 1-6 || LH2 || 50.0 || 4.000 || 0.350 || 0.600 || -4.508 || 16.64 || -3.653 || 11.61 || -1 || 20000 || 21683/274 || 1:56 || 350.6 || 6082 6083 (done) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
| 1-7 || LD2 || 50.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || -3.043 || 11.61 || -1 || 20000 || 20129/111.09 || 0:53 || 161.0 || 6088-6090 (done) | | 1-7 || LD2 || 50.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || -3.043 || 11.61 || -1 || 20000 || 20129/111.09 || 0:53 || 161.0 || 6088-6090 (done) | ||
Line 100: | Line 268: | ||
| 1-9 || LH2 || 50.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || -3.043 || 11.61 || -1 || 20000 || 22474/273.94 || 1:52 || 338.3 || 6084-6086 (done) | | 1-9 || LH2 || 50.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || -3.043 || 11.61 || -1 || 20000 || 22474/273.94 || 1:52 || 338.3 || 6084-6086 (done) | ||
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 1-10 || LD2 || 50.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || -2.433 || 11.61 || -1 || 20000 || 19897/90.24 || 0:37 || 113.7 || 6091,6093 | + | | 1-10 || LD2 || 50.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || -2.433 || 11.61 || -1 || 20000 || 19897/90.24 || 0:37 || 113.7 || 6091,6093,6096(done) ( 6094 & 6095 v.short) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
| 1-11 || DUM || 40.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || -2.433 || 11.61 || -1 || 5231 || 4688/126.01 || 0:24 || 59.2 || 6097,6098(done) | | 1-11 || DUM || 40.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || -2.433 || 11.61 || -1 || 5231 || 4688/126.01 || 0:24 || 59.2 || 6097,6098(done) | ||
Line 115: | Line 283: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 2-1 || LD2 || 25.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || 4.262 || 11.61 || +1 || 20000/ 129 || 60000/196 || 1:25 || 6018-6021 (done) | + | | 2-1 || LD2 || 25.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || 4.262 || 11.61 || +1 || 20000/ 129 || 60000/196 || 1:25 || 6018 & 6019 are HMS singles:ps4=7, coin= 6020-6021 (done) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
| 2-2 || DUM || 40.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || 4.262 || 11.61 || +1 || 5066/ 98 || 5156/144 || 0:40 || 6022 and 6026 (done) | | 2-2 || DUM || 40.0 || 4.000 || 0.350 || 0.700 || -4.508 || 16.64 || 4.262 || 11.61 || +1 || 5066/ 98 || 5156/144 || 0:40 || 6022 and 6026 (done) | ||
Line 131: | Line 299: | ||
| 2-8 || DUM || 40.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || 3.043 || 11.61 || +1 || 7681/ 76 || 5280/94 || 0:31 || 6046 (done) | | 2-8 || DUM || 40.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || 3.043 || 11.61 || +1 || 7681/ 76 || 5280/94 || 0:31 || 6046 (done) | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 2-9 || LH2 || 25.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || 3.043 || 11.61 || +1 || 30000/ 190 || 30231/244.6 || 2:06 || | + | | 2-9 || LH2 || 25.0 || 4.000 || 0.350 || 0.500 || -4.508 || 16.64 || 3.043 || 11.61 || +1 || 30000/ 190 || 30231/244.6 || 2:06 || 6038-6042(done) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 2-10 || LD2 || 25.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || 2.433 || 11.61 || +1 || 20000/ 165 || 49396/124 || 0:49 || 6049 | + | | 2-10 || LD2 || 25.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || 2.433 || 11.61 || +1 || 20000/ 165 || 49396/124 || 0:49 || 6050-6055 (6049 short) (over done) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
| 2-11 || DUM || 40.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || 2.433 || 11.61 || +1 || 5000/ 58 || 18493/305.36 || 0:24 || 6056-6058(done) | | 2-11 || DUM || 40.0 || 4.000 || 0.350 || 0.400 || -4.508 || 16.64 || 2.433 || 11.61 || +1 || 5000/ 58 || 18493/305.36 || 0:24 || 6056-6058(done) | ||
Line 148: | Line 316: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 3-1 || LD2 || 25.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || 3.729 || 14.21 || +1 || 20000 || | + | | 3-1 || LD2 || 25.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || 3.729 || 14.21 || +1 || 20000 || 22488/61.7 || 1:35 || 142.8 || 6537 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 3-2 || DUM || 40.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || 3.729 || 14.21 || +1 || | + | | 3-2 || DUM || 40.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || 3.729 || 14.21 || +1 || 2000 || 2528/26.2 || 0:14 || 35.7 || 6538 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 3-3 || LD2 || 25.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || 3.195 || 14.21 || +1 || 20000 || | + | | 3-3 || LD2 || 25.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || 3.195 || 14.21 || +1 || 20000 || 19436/55.6 || 1:06 || 99.7 || 6541 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 3-4 || DUM || 40.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || 3.195 || 14.21 || +1 || | + | | 3-4 || DUM || 40.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || 3.195 || 14.21 || +1 || 2000 || 2265/25.3 || 0:10 || 24.9 || 6539 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 3-5 || LD2 || 25.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || 2.662 || 14.21 || +1 || 30000 || | + | | 3-5 || LD2 || 25.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || 2.662 || 14.21 || +1 || 30000 || 30888/74.5 || 1:13 || 110.3 || 6542, 43 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 3-6 || DUM || 40.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || 2.662 || 14.21 || +1 || | + | | 3-6 || DUM || 40.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || 2.662 || 14.21 || +1 || 3000 || 3180/45.7 || 0:11 || 27.6 || 6544 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
| 3-7 || LD2 || 25.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || 2.128 || 14.21 || +1 || 30000 || n || 0:55 || 83.7 || NN | | 3-7 || LD2 || 25.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || 2.128 || 14.21 || +1 || 30000 || n || 0:55 || 83.7 || NN | ||
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 3-8 || DUM || 40.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || 2.128 || 14.21 || +1 || | + | | 3-8 || DUM || 40.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || 2.128 || 14.21 || +1 || 3000 || n || 0:08 || 20.9 || NN |
|- | |- | ||
|} | |} | ||
Kinematic group 3 total time : 5.60701 hrs (0.233625 days) | Kinematic group 3 total time : 5.60701 hrs (0.233625 days) | ||
+ | |||
==== Kinematic Group 4: Q2 = 4 GeV2, x = 0.4 ==== | ==== Kinematic Group 4: Q2 = 4 GeV2, x = 0.4 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 172: | Line 341: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 4-1 || LD2 || 50.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || -3.729 || 14.21 || -1 || 20000 || | + | | 4-1 || LD2 || 50.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || -3.729 || 14.21 || -1 || 20000 || 22154/109 || 1:42 || 306.7 || 6545 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 4-2 || DUM || 40.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || -3.729 || 14.21 || -1 || | + | | 4-2 || DUM || 40.0 || 4.000 || 0.400 || 0.700 || -5.270 || 15.38 || -3.729 || 14.21 || -1 || 2000 || 2019/50.97 || 0:31 || 76.7 || 6546 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 4-3 || LD2 || 50.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || -3.195 || 14.21 || -1 || 20000 || | + | | 4-3 || LD2 || 50.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || -3.195 || 14.21 || -1 || 20000 || 21756/107.77 || 1:01 || 183.4 || 6548-6549 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 4-4 || DUM || 40.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || -3.195 || 14.21 || -1 || | + | | 4-4 || DUM || 40.0 || 4.000 || 0.400 || 0.600 || -5.270 || 15.38 || -3.195 || 14.21 || -1 || 2000 || 2080/53.53 || 0:19 || 45.9 || 6547 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 4-5 || LD2 || 50.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || -2.662 || 14.21 || -1 || 30000 || | + | | 4-5 || LD2 || 50.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || -2.662 || 14.21 || -1 || 30000 || 30244/119.79 || 1:00 || 180.8 || 6550-6551 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 4-6 || DUM || 40.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || -2.662 || 14.21 || -1 || | + | | 4-6 || DUM || 40.0 || 4.000 || 0.400 || 0.500 || -5.270 || 15.38 || -2.662 || 14.21 || -1 || 3000 || 3146/67.05 || 0:18 || 45.2 || 6552 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
| 4-7 || LD2 || 50.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || -2.128 || 14.21 || -1 || 30000 || n || 0:42 || 128.1 || NN | | 4-7 || LD2 || 50.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || -2.128 || 14.21 || -1 || 30000 || n || 0:42 || 128.1 || NN | ||
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 4-8 || DUM || 40.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || -2.128 || 14.21 || -1 || | + | | 4-8 || DUM || 40.0 || 4.000 || 0.400 || 0.400 || -5.270 || 15.38 || -2.128 || 14.21 || -1 || 3000 || n || 0:13 || 32.0 || NN |
|- | |- | ||
|} | |} | ||
Kinematic group 4 total time : 5.82631 hrs (0.242763 days) | Kinematic group 4 total time : 5.82631 hrs (0.242763 days) | ||
+ | |||
==== Kinematic Group 5: Q2 = 3.898 GeV2, x = 0.45 ==== | ==== Kinematic Group 5: Q2 = 3.898 GeV2, x = 0.45 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 196: | Line 366: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual /mC || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual /mC || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 5-1 || LD2 || 50.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || -3.229 || 17.04 || -1 || 20000 || 20221/ | + | | 5-1 || LD2 || 50.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || -3.229 || 17.04 || -1 || 20000 || 20221/74.98 || 1:51 || 334.2 || 6111,6112,6114 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
| 5-2 || DUM || 40.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || -3.229 || 17.04 || -1 || 3694 || 4104/101.6 || 1:16 || 183.4 || 6109-6110 | | 5-2 || DUM || 40.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || -3.229 || 17.04 || -1 || 3694 || 4104/101.6 || 1:16 || 183.4 || 6109-6110 | ||
Line 202: | Line 372: | ||
| 5-3 || LH2 || 50.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || -3.229 || 17.04 || -1 || 20000 || 20138/153.2 || 4:04 || 733.5 || 6104-6106 | | 5-3 || LH2 || 50.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || -3.229 || 17.04 || -1 || 20000 || 20138/153.2 || 4:04 || 733.5 || 6104-6106 | ||
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 5-4 || LD2 || 50.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || -2.767 || 17.04 || -1 || 20000 || 23473/88.66 || 1:07 || 202.4 || 6115-6116 | + | | 5-4 || LD2 || 50.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || -2.767 || 17.04 || -1 || 20000 || 23473/88.66 || 1:07 || 202.4 || 6115-6116 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
| 5-5 || DUM || 40.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || -2.767 || 17.04 || -1 || 3580 || 4118/94.76 || 0:44 || 107.9 || 6119,6120 | | 5-5 || DUM || 40.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || -2.767 || 17.04 || -1 || 3580 || 4118/94.76 || 0:44 || 107.9 || 6119,6120 | ||
Line 214: | Line 384: | ||
| 5-9 || LH2 || 50.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || -2.304 || 17.04 || -1 || 30000 || 33237/291 || 2:20 || 420.8 || 6122,6123,6126 | | 5-9 || LH2 || 50.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || -2.304 || 17.04 || -1 || 30000 || 33237/291 || 2:20 || 420.8 || 6122,6123,6126 | ||
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 5-10 || LD2 || 50.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || -1.842 || 17.04 || -1 || 30000 || | + | | 5-10 || LD2 || 50.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || -1.842 || 17.04 || -1 || 30000 || 31151/131.4 || 0:47 || 143.5 || 6136,6137,6138 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
| 5-11 || DUM || 40.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || -1.842 || 17.04 || -1 || 5201 || 4920/118.3 || 0:30 || 74.3 || 6129, 6130, 6132, 6133, 6135 | | 5-11 || DUM || 40.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || -1.842 || 17.04 || -1 || 5201 || 4920/118.3 || 0:30 || 74.3 || 6129, 6130, 6132, 6133, 6135 | ||
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 5-12 || LH2 || 50.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || -1.842 || 17.04 || -1 || 30000 || | + | | 5-12 || LH2 || 50.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || -1.842 || 17.04 || -1 || 30000 || 31411/223 || 1:39 || 297.1 || 6139,6140,6141 |
|- | |- | ||
|} | |} | ||
Line 227: | Line 397: | ||
! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs | ||
|- | |- | ||
− | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | + | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual/mC || hr:min || charge /mC || # runs |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 6-1 || LD2 || 25.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || 3.229 || 17.04 || +1 || 20000 || | + | | 6-1 || LD2 || 25.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || 3.229 || 17.04 || +1 || 20000 || 27188/86.97 || 1:44 || 156.6 || 6145,6146,6154 (low cur)(done) |
+ | |- style="text-align:center; background: #ffffff; | ||
+ | | 6-2 || DUM || 40.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || 3.229 || 17.04 || +1 || 3104 || 4974/66.2 || 0:30 || 73.3 || 6155 (low counts),6168 (69, 3min) | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | + | | 6-3 || LH2 || 25.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || 3.229 || 17.04 || +1 || 20000 || 32154/165.57 || 3:15 || 293.3 || 6142,6144(done),6163,6164 (extra) | |
− | |||
− | | 6-3 || LH2 || 25.0 || 3.898 || 0.450 || 0.700 || -5.983 || 14.24 || 3.229 || 17.04 || +1 || 20000 || | ||
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 6-4 || LD2 || 25.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || 2.767 || 17.04 || +1 || 20000 || | + | | 6-4 || LD2 || 25.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || 2.767 || 17.04 || +1 || 20000 || 30956/67.6 || 1:13 || 110.2 || 6170,6171 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 6-5 || DUM || 40.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || 2.767 || 17.04 || +1 || 3123 || | + | | 6-5 || DUM || 40.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || 2.767 || 17.04 || +1 || 3123 || 3160/40.5 || 0:21 || 51.9 || 6172 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 6-6 || LH2 || 25.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || 2.767 || 17.04 || +1 || 20000 || | + | | 6-6 || LH2 || 25.0 || 3.898 || 0.450 || 0.600 || -5.983 || 14.24 || 2.767 || 17.04 || +1 || 20000 || 22835/83.0 || 2:18 || 207.4 || 6174,6175 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 6-7 || LD2 || 25.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || 2.304 || 17.04 || +1 || 30000 || | + | | 6-7 || LD2 || 25.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || 2.304 || 17.04 || +1 || 30000 || 30434/63.5 || 1:21 || 122.4 || 6179,6180 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 6-8 || DUM || 40.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || 2.304 || 17.04 || +1 || 4709 || | + | | 6-8 || DUM || 40.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || 2.304 || 17.04 || +1 || 4709 || 4865/64.8 || 0:24 || 57.9 || 6181,6182 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 6-9 || LH2 || 25.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || 2.304 || 17.04 || +1 || 30000 || | + | | 6-9 || LH2 || 25.0 || 3.898 || 0.450 || 0.500 || -5.983 || 14.24 || 2.304 || 17.04 || +1 || 30000 || 32884/106.7 || 2:34 || 231.5 || 6177,6178 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 6-10 || LD2 || 25.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || 1.842 || 17.04 || +1 || 30000 || | + | | 6-10 || LD2 || 25.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || 1.842 || 17.04 || +1 || 30000 || 29735/71.13 || 1:02 || 93.4 || 6185,6186,6187 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 6-11 || DUM || 40.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || 1.842 || 17.04 || +1 || 4726 || | + | | 6-11 || DUM || 40.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || 1.842 || 17.04 || +1 || 4726 || 4628/74 || 0:18 || 44.3 || 6183 (SHMS q2 trip at end), 6184 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 6-12 || LH2 || 25.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || 1.842 || 17.04 || +1 || 30000 || | + | | 6-12 || LH2 || 25.0 || 3.898 || 0.450 || 0.400 || -5.983 || 14.24 || 1.842 || 17.04 || +1 || 30000 || 31225/117 || 1:58 || 177.2 || 6188,6189,6190 |
|- | |- | ||
|} | |} | ||
Kinematic group 6 total time : 17.0456 hrs (0.710234 days) | Kinematic group 6 total time : 17.0456 hrs (0.710234 days) | ||
+ | |||
==== Kinematic Group 7: Q2 = 3.979 GeV2, x = 0.5 ==== | ==== Kinematic Group 7: Q2 = 3.979 GeV2, x = 0.5 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 261: | Line 432: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 7-1 || LD2 || 25.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || 2.966 || 19.09 || +1 || 20000 || | + | | 7-1 || LD2 || 25.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || 2.966 || 19.09 || +1 || 20000 || 27290/73.7 || 2:14 || 202.4 || 6500 - 6501 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 7-2 || DUM || 40.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || 2.966 || 19.09 || +1 || | + | | 7-2 || DUM || 40.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || 2.966 || 19.09 || +1 || 3000 || 4585/70 || 0:21 || 50.6 || 6502 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 7-3 || LD2 || 25.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || 2.541 || 19.09 || +1 || 20000 || | + | | 7-3 || LD2 || 25.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || 2.541 || 19.09 || +1 || 20000 || 45770/112.6 || 1:35 || 143.1 || 6506(ps4=6,~500Hz),6507(ps4=8) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 7-4 || DUM || 40.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || 2.541 || 19.09 || +1 || | + | | 7-4 || DUM || 40.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || 2.541 || 19.09 || +1 || 3000 || 3809/66.7 || 0:14 || 35.8 || 6503-6504 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 7-5 || LD2 || 25.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || 2.116 || 19.09 || +1 || 30000 || | + | | 7-5 || LD2 || 25.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || 2.116 || 19.09 || +1 || 30000 || 28913/72.7 || 1:46 || 159.2 || 6509-10 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 7-6 || DUM || 40.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || 2.116 || 19.09 || +1 || | + | | 7-6 || DUM || 40.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || 2.116 || 19.09 || +1 || 2500 || 2734/43.6 || 0:16 || 39.8 || 6512 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 7-7 || LD2 || 25.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || 1.691 || 19.09 || +1 || 30000 || | + | | 7-7 || LD2 || 25.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || 1.691 || 19.09 || +1 || 30000 || 31564/90 || 1:21 || 121.8 || 6514-6517 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 7-8 || DUM || 40.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || 1.691 || 19.09 || +1 || | + | | 7-8 || DUM || 40.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || 1.691 || 19.09 || +1 || 2500 || 2296/42.5 || 0:12 || 30.5 || 6513 |
|- | |- | ||
|} | |} | ||
Kinematic group 7 total time : 8.04809 hrs (0.335337 days) | Kinematic group 7 total time : 8.04809 hrs (0.335337 days) | ||
+ | |||
==== Kinematic Group 8: Q2 = 3.979 GeV2, x = 0.5 ==== | ==== Kinematic Group 8: Q2 = 3.979 GeV2, x = 0.5 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 285: | Line 457: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 8-1 || LD2 || 50.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || -2.966 || 19.09 || -1 || 20000 || | + | | 8-1 || LD2 || 50.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || -2.966 || 19.09 || -1 || 20000 || 24001/102.8 || 2:23 || 429.3 || 6486 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 8-2 || DUM || 40.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || -2.966 || 19.09 || -1 || 1682 || | + | | 8-2 || DUM || 40.0 || 3.979 || 0.500 || 0.700 || -6.358 || 13.96 || -2.966 || 19.09 || -1 || 1682 || 1956/56.6 || 0:44 || 107.3 || 6487 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 8-3 || LD2 || 50.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || -2.541 || 19.09 || -1 || 20000 || | + | | 8-3 || LD2 || 50.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || -2.541 || 19.09 || -1 || 20000 || 20663/86.9 || 1:27 || 262.1 || 6489 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 8-4 || DUM || 40.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || -2.541 || 19.09 || -1 || 1678 || | + | | 8-4 || DUM || 40.0 || 3.979 || 0.500 || 0.600 || -6.358 || 13.96 || -2.541 || 19.09 || -1 || 1678 || 2015/48.1 || 0:27 || 65.5 || 6488 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 8-5 || LD2 || 50.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || -2.116 || 19.09 || -1 || 30000 || | + | | 8-5 || LD2 || 50.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || -2.116 || 19.09 || -1 || 30000 || 34500/145.6 || 1:27 || 261.8 || 6490, 6491(not bad),6493 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 8-6 || DUM || 40.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || -2.116 || 19.09 || -1 || 2513 || | + | | 8-6 || DUM || 40.0 || 3.979 || 0.500 || 0.500 || -6.358 || 13.96 || -2.116 || 19.09 || -1 || 2513 || 2547/62.52 || 0:27 || 65.5 || 6494 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 8-7 || LD2 || 50.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || -1.691 || 19.09 || -1 || 30000 || | + | | 8-7 || LD2 || 50.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || -1.691 || 19.09 || -1 || 30000 || 35025/166.9 || 1:02 || 187.5 || 6496-6499 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 8-8 || DUM || 40.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || -1.691 || 19.09 || -1 || 2510 || | + | | 8-8 || DUM || 40.0 || 3.979 || 0.500 || 0.400 || -6.358 || 13.96 || -1.691 || 19.09 || -1 || 2510 || 2818/70.2 || 0:19 || 46.9 || 6495 |
|- | |- | ||
|} | |} | ||
Line 310: | Line 482: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 9-1 || LD2 || 50.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || -3.936 || 14.16 || -1 || 20000 || | + | | 9-1 || LD2 || 50.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || -3.936 || 14.16 || -1 || 20000 || 21081/189 || 3:23 || 609.0 || 6245-6247 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 9-2 || DUM || 40.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || -3.936 || 14.16 || -1 || 3715 || | + | | 9-2 || DUM || 40.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || -3.936 || 14.16 || -1 || 3715 || 3819/194 || 2:20 || 336.0 || 6242-6244 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 9-3 || LH2 || 50.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || -3.936 || 14.16 || -1 || 20000 || | + | | 9-3 || LH2 || 50.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || -3.936 || 14.16 || -1 || 20000 || 20365/338 || 7:28 || 1344.1 || 6237,6240,6241 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 9-4 || LD2 || 50.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || -3.373 || 14.16 || -1 || 20000 || | + | | 9-4 || LD2 || 50.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || -3.373 || 14.16 || -1 || 20000 || 20387/199 || 1:59 || 359.0 || 6248-6250 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 9-5 || DUM || 40.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || -3.373 || 14.16 || -1 || 3584 || | + | | 9-5 || DUM || 40.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || -3.373 || 14.16 || -1 || 3584 || 3614/173 || 1:19 || 191.6 || 6251,6252 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 9-6 || LH2 || 50.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || -3.373 || 14.16 || -1 || 20000 || | + | | 9-6 || LH2 || 50.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || -3.373 || 14.16 || -1 || 20000 || 20321/358 || 4:15 || 766.6 || 6253-6255 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 9-7 || LD2 || 50.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || -2.810 || 14.16 || -1 || 30000 || | + | | 9-7 || LD2 || 50.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || -2.810 || 14.16 || -1 || 30000 || 32047/261 || 1:56 || 349.8 || 6263-6267 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 9-8 || DUM || 40.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || -2.810 || 14.16 || -1 || 5253 || | + | | 9-8 || DUM || 40.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || -2.810 || 14.16 || -1 || 5253 || 5366/253 || 1:16 || 182.8 || 6261,6262 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 9-9 || LH2 || 50.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || -2.810 || 14.16 || -1 || 30000 || | + | | 9-9 || LH2 || 50.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || -2.810 || 14.16 || -1 || 30000 || 31423/531 || 4:03 || 731.2 || 6256-6260 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 9-10 || LD2 || 50.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || -2.246 || 14.16 || -1 || 30000 || | + | | 9-10 || LD2 || 50.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || -2.246 || 14.16 || -1 || 30000 || 30699/225 || 1:21 || 245.5 || 6270 - 6273 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 9-11 || DUM || 40.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || -2.246 || 14.16 || -1 || 5186 || | + | | 9-11 || DUM || 40.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || -2.246 || 14.16 || -1 || 5186 || 4130/974 || 0:52 || 126.8 || 6274-6276 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 9-12 || LH2 || 50.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || -2.246 || 14.16 || -1 || 30000 || | + | | 9-12 || LH2 || 50.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || -2.246 || 14.16 || -1 || 30000 || 31312/460 || 2:49 || 507.2 || 6277, 6281,6282,6284 |
|- | |- | ||
|} | |} | ||
Kinematic group 9 total time : 33.1056 hrs (1.3794 days) | Kinematic group 9 total time : 33.1056 hrs (1.3794 days) | ||
+ | |||
==== Kinematic Group 10: Q2 = 4.75 GeV2, x = 0.45 ==== | ==== Kinematic Group 10: Q2 = 4.75 GeV2, x = 0.45 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 342: | Line 515: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 10-1 || LD2 || 25.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || 3.936 || 14.16 || +1 || 20000 || | + | | 10-1 || LD2 || 25.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || 3.936 || 14.16 || +1 || 20000 || 20477/110.0 || 3:05 || 278.6 || 6194,6195 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 10-2 || DUM || 40.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || 3.936 || 14.16 || +1 || 3077 || | + | | 10-2 || DUM || 40.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || 3.936 || 14.16 || +1 || 3077 || 3576/98.77 || 0:53 || 129.4 || 6196 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 10-3 || LH2 || 25.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || 3.936 || 14.16 || +1 || 20000 || | + | | 10-3 || LH2 || 25.0 || 4.750 || 0.450 || 0.700 || -4.973 || 17.26 || 3.936 || 14.16 || +1 || 20000 || 22024/151.3 || 5:44 || 517.4 || 6192,6193 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 10-4 || LD2 || 25.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || 3.373 || 14.16 || +1 || 20000 || | + | | 10-4 || LD2 || 25.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || 3.373 || 14.16 || +1 || 20000 || 20481/109.7 || 2:08 || 192.7 || 6198,6199 (done) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 10-5 || DUM || 40.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || 3.373 || 14.16 || +1 || 3097 || | + | | 10-5 || DUM || 40.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || 3.373 || 14.16 || +1 || 3097 || 3113/91.48 || 0:37 || 90.0 || 6197 (done) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 10-6 || LH2 || 25.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || 3.373 || 14.16 || +1 || 20000 || | + | | 10-6 || LH2 || 25.0 || 4.750 || 0.450 || 0.600 || -4.973 || 17.26 || 3.373 || 14.16 || +1 || 20000 || 22858/188.7 || 4:00 || 360.1 || 6200,6201 (done) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 10-7 || LD2 || 25.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || 2.810 || 14.16 || +1 || 30000 || | + | | 10-7 || LD2 || 25.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || 2.810 || 14.16 || +1 || 30000 || 30756/150 || 2:21 || 211.7 || 6205,6208-6210 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 10-8 || DUM || 40.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || 2.810 || 14.16 || +1 || 4674 || | + | | 10-8 || DUM || 40.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || 2.810 || 14.16 || +1 || 4674 || 7427/145 || 0:41 || 99.4 || 6211,6212 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 10-9 || LH2 || 25.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || 2.810 || 14.16 || +1 || 30000 || | + | | 10-9 || LH2 || 25.0 || 4.750 || 0.450 || 0.500 || -4.973 || 17.26 || 2.810 || 14.16 || +1 || 30000 || 30118/226 || 4:25 || 397.8 || 6202,6203,6204 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 10-10 || LD2 || 25.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || 2.246 || 14.16 || +1 || 30000 || | + | | 10-10 || LD2 || 25.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || 2.246 || 14.16 || +1 || 30000 || 30656/138 || 1:46 || 159.6 || 6215-6217,6219,6220 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 10-11 || DUM || 40.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || 2.246 || 14.16 || +1 || 4693 || | + | | 10-11 || DUM || 40.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || 2.246 || 14.16 || +1 || 4693 || 5338/155 || 0:31 || 75.2 || 6213,6214 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 10-12 || LH2 || 25.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || 2.246 || 14.16 || +1 || 30000 || | + | | 10-12 || LH2 || 25.0 || 4.750 || 0.450 || 0.400 || -4.973 || 17.26 || 2.246 || 14.16 || +1 || 30000 || 29590/212 || 3:20 || 301.0 || 6221-6225 |
|- | |- | ||
|} | |} | ||
Kinematic group 10 total time : 29.615 hrs (1.23396 days) | Kinematic group 10 total time : 29.615 hrs (1.23396 days) | ||
+ | |||
==== Kinematic Group 11: Q2 = 5 GeV2, x = 0.5 ==== | ==== Kinematic Group 11: Q2 = 5 GeV2, x = 0.5 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 374: | Line 548: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 11-1 || LD2 || 25.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || 3.729 || 15.64 || +1 || 20000 || | + | | 11-1 || LD2 || 25.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || 3.729 || 15.64 || +1 || 20000 || 21647/136.63 || 4:22 || 393.6 || 6419- 6422 (6418, 6420 junk 6419 may not be ok) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 11-2 || DUM || 40.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || 3.729 || 15.64 || +1 || | + | | 11-2 || DUM || 40.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || 3.729 || 15.64 || +1 || 3000 || 3353/112.3 || 0:40 || 98.4 || 6423, 25, 26 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 11-3 || LD2 || 25.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || 3.195 || 15.64 || +1 || 20000 || | + | | 11-3 || LD2 || 25.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || 3.195 || 15.64 || +1 || 20000 || 21180/147.5 || 3:01 || 272.6 || Note: '''Rate test setting'''. Determine beam current based on pTRIG1. Then take 10k at 1/2 and 3/4 beam current in addition to normal 20k. 40uA=Run 6429,30,31. 30uA=Run 6432. 20uA=Run 6433. |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 11-4 || DUM || 40.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || 3.195 || 15.64 || +1 || | + | | 11-4 || DUM || 40.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || 3.195 || 15.64 || +1 || 3000 || 3175/115.7 || 0:28 || 68.2 || 6427, 28 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 11-5 || LD2 || 25.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || 2.662 || 15.64 || +1 || 30000 || | + | | 11-5 || LD2 || 25.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || 2.662 || 15.64 || +1 || 30000 || 29040/163.8 || 3:19 || 299.4 || 6434, 6435, 6436 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 11-6 || DUM || 40.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || 2.662 || 15.64 || +1 || | + | | 11-6 || DUM || 40.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || 2.662 || 15.64 || +1 || 3000 || 2887/101.1 || 0:31 || 74.8 || 6439, 6440 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 11-7 || LD2 || 25.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || 2.128 || 15.64 || +1 || 30000 || | + | | 11-7 || LD2 || 25.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || 2.128 || 15.64 || +1 || 30000 || 31541/181.6 || 2:30 || 225.7 || 6443-6448 (9.5 uA)) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 11-8 || DUM || 40.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || 2.128 || 15.64 || +1 || | + | | 11-8 || DUM || 40.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || 2.128 || 15.64 || +1 || 3000 || 3103/116.3 || 0:23 || 56.4 || 6441, 6442 |
|- | |- | ||
|} | |} | ||
Kinematic group 11 total time : 15.3056 hrs (0.637731 days) | Kinematic group 11 total time : 15.3056 hrs (0.637731 days) | ||
+ | |||
==== Kinematic Group 12: Q2 = 5 GeV2, x = 0.5 ==== | ==== Kinematic Group 12: Q2 = 5 GeV2, x = 0.5 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 398: | Line 573: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 12-1 || LD2 || 50.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || -3.729 || 15.64 || -1 || 20000 || | + | | 12-1 || LD2 || 50.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || -3.729 || 15.64 || -1 || 20000 || 21547/222.8 || 4:47 || 861.1 || 6451,6452,6453 (6449+6450,check) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 12-2 || DUM || 40.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || -3.729 || 15.64 || -1 || 1683 || | + | | 12-2 || DUM || 40.0 || 5.000 || 0.500 || 0.700 || -5.270 || 17.21 || -3.729 || 15.64 || -1 || 1683 || 2707/188.9 || 1:29 || 215.3 || 6454, 6455 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 12-3 || LD2 || 50.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || -3.195 || 15.64 || -1 || 20000 || | + | | 12-3 || LD2 || 50.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || -3.195 || 15.64 || -1 || 20000 || 21660/246.7 || 2:49 || 508.6 || 6459 (65 uA), 6460 (65 uA), 6461 (55 uA) Note: '''Rate test setting''' 6462 (48 uA), 6463 (35 uA), 6464 (35uA) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 12-4 || DUM || 40.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || -3.195 || 15.64 || -1 || 1678 || | + | | 12-4 || DUM || 40.0 || 5.000 || 0.500 || 0.600 || -5.270 || 17.21 || -3.195 || 15.64 || -1 || 1678 || 1699/106.5 || 0:52 || 127.2 || 6456 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 12-5 || LD2 || 50.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || -2.662 || 15.64 || -1 || 30000 || | + | | 12-5 || LD2 || 50.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || -2.662 || 15.64 || -1 || 30000 || 29600/287.9 || 2:45 || 495.8 || 6465, 6466, 6467 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 12-6 || DUM || 40.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || -2.662 || 15.64 || -1 || 2513 || | + | | 12-6 || DUM || 40.0 || 5.000 || 0.500 || 0.500 || -5.270 || 17.21 || -2.662 || 15.64 || -1 || 2513 || 2854/154.7 || 0:51 || 124.0 || 6468, 6469 (both with PS4=7); 6470 (PS4=5) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 12-7 || LD2 || 50.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || -2.128 || 15.64 || -1 || 30000 || | + | | 12-7 || LD2 || 50.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || -2.128 || 15.64 || -1 || 30000 || 30893/283.3 || 1:55 || 348.0 || 6473, 6474 (both had PS4 too high); 6475-6479 (ongoing) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 12-8 || DUM || 40.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || -2.128 || 15.64 || -1 || 2510 || | + | | 12-8 || DUM || 40.0 || 5.000 || 0.500 || 0.400 || -5.270 || 17.21 || -2.128 || 15.64 || -1 || 2510 || 2642/141.6 || 0:36 || 87.0 || 6471, 6472 |
|- | |- | ||
|} | |} | ||
Kinematic group 12 total time : 16.1401 hrs (0.672505 days) | Kinematic group 12 total time : 16.1401 hrs (0.672505 days) | ||
+ | |||
+ | '''At end of setting 12, take electron singles in SHMS.''' | ||
+ | |||
+ | '''Settings:''' Theta_SHMS = 9 degrees, P_SHMS = -7 GeV. LD2 target. Set PS1 to keep rates at 2 KHz or smaller. All other prescales set to -1 (take SHMS 3/4 only). | ||
+ | Take 1 run at high current (60-70 uA if possible) - get at least 100k electrons (more is better). | ||
+ | Take 2 more runs: one at 2/3 max current, another at 1/3 of max current. Get at least 100k good electrons. | ||
+ | |||
+ | 6482 (60 uA, 134K good electrons,Ptrig1=825K), 6483 (40 uA, 172 K good e-, PTrig1 = 540K), 6484 (30 uA, 164K good e-, pTrig1=400K), 6485 (20 uA, 160K good e-, pTrig1=266K) | ||
+ | |||
==== Kinematic Group 13: Q2 = 4.764 GeV2, x = 0.55 ==== | ==== Kinematic Group 13: Q2 = 4.764 GeV2, x = 0.55 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 422: | Line 606: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 13-1 || LD2 || 50.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || -3.229 || 18.55 || -1 || 20000 || | + | | 13-1 || LD2 || 50.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || -3.229 || 18.55 || -1 || 20000 || 22135/185 || 5:04 || 914.4 || 6290-6291 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 13-2 || DUM || 40.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || -3.229 || 18.55 || -1 || 3707 || | + | | 13-2 || DUM || 40.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || -3.229 || 18.55 || -1 || 3707 || 5113/301 || 3:29 || 503.5 || 6288-6289 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 13-3 || LH2 || 50.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || -3.229 || 18.55 || -1 || 20000 || | + | | 13-3 || LH2 || 50.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || -3.229 || 18.55 || -1 || 20000 || 20916/351 || 11:11 || 2013.8 || 6285-6287 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 13-4 || LD2 || 50.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || -2.767 || 18.55 || -1 || 20000 || | + | | 13-4 || LD2 || 50.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || -2.767 || 18.55 || -1 || 20000 || 20330/183 || 3:03 || 549.4 || 6292- 6293 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 13-5 || DUM || 40.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || -2.767 || 18.55 || -1 || 3571 || | + | | 13-5 || DUM || 40.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || -2.767 || 18.55 || -1 || 3571 || 5096/277 || 2:01 || 292.3 || 6294-6296 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 13-6 || LH2 || 50.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || -2.767 || 18.55 || -1 || 20000 || | + | | 13-6 || LH2 || 50.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || -2.767 || 18.55 || -1 || 20000 || 21827/338.9 || 6:29 || 1169.1 || 6297-6299 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 13-7 || LD2 || 50.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || -2.304 || 18.55 || -1 || 30000 || | + | | 13-7 || LD2 || 50.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || -2.304 || 18.55 || -1 || 30000 || 35406/305.7 || 3:00 || 541.7 || 6306-6308 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 13-8 || DUM || 40.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || -2.304 || 18.55 || -1 || 5231 || | + | | 13-8 || DUM || 40.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || -2.304 || 18.55 || -1 || 5231 || 5481/3204 || 1:57 || 281.9 || 6304-6305 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 13-9 || LH2 || 50.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || -2.304 || 18.55 || -1 || 30000 || | + | | 13-9 || LH2 || 50.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || -2.304 || 18.55 || -1 || 30000 || 30990/503.82 || 6:15 || 1127.8 || 6300-6302 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 13-10 || LD2 || 50.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || -1.842 || 18.55 || -1 || 30000 || | + | | 13-10 || LD2 || 50.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || -1.842 || 18.55 || -1 || 30000 || 30511/255.5 || 2:07 || 383.6 || 6348- 6351 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 13-11 || DUM || 40.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || -1.842 || 18.55 || -1 || 5161 || | + | | 13-11 || DUM || 40.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || -1.842 || 18.55 || -1 || 5161 || 5980/287.3 || 1:22 || 197.2 || 6352-6354 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 13-12 || LH2 || 50.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || -1.842 || 18.55 || -1 || 30000 || | + | | 13-12 || LH2 || 50.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || -1.842 || 18.55 || -1 || 30000 || 31862/598 || 4:22 || 788.7 || 6355-6358 |
|- | |- | ||
|} | |} | ||
Kinematic group 13 total time : 50.455 hrs (2.10229 days) | Kinematic group 13 total time : 50.455 hrs (2.10229 days) | ||
+ | |||
==== Kinematic Group 14: Q2 = 4.764 GeV2, x = 0.55 ==== | ==== Kinematic Group 14: Q2 = 4.764 GeV2, x = 0.55 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 454: | Line 639: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 14-1 || LD2 || 25.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || 3.229 || 18.55 || +1 || 20000 || | + | | 14-1 || LD2 || 25.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || 3.229 || 18.55 || +1 || 20000 || 23833/127.8 || 4:42 || 424.2 || 6309-6310 (rfo = 397.05) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 14-2 || DUM || 40.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || 3.229 || 18.55 || +1 || 3030 || | + | | 14-2 || DUM || 40.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || 3.229 || 18.55 || +1 || 3030 || 3291/101 || 1:20 || 194.2 || 6311(rfo = 397.05)- 6312 ( rfo = 399) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 14-3 || LH2 || 25.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || 3.229 || 18.55 || +1 || 20000 || | + | | 14-3 || LH2 || 25.0 || 4.764 || 0.550 || 0.700 || -5.983 || 15.75 || 3.229 || 18.55 || +1 || 20000 || 21818/156 || 8:37 || 777.0 || 6313-6314 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 14-4 || LD2 || 25.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || 2.767 || 18.55 || +1 || 20000 || | + | | 14-4 || LD2 || 25.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || 2.767 || 18.55 || +1 || 20000 || 22283/115.9 || 3:18 || 297.1 || 6322-6323 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 14-5 || DUM || 40.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || 2.767 || 18.55 || +1 || 3051 || | + | | 14-5 || DUM || 40.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || 2.767 || 18.55 || +1 || 3051 || 5473/164.2 || 0:57 || 136.9 || 6317-6318 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 14-6 || LH2 || 25.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || 2.767 || 18.55 || +1 || 20000 || | + | | 14-6 || LH2 || 25.0 || 4.764 || 0.550 || 0.600 || -5.983 || 15.75 || 2.767 || 18.55 || +1 || 20000 || 21088/161 || 6:05 || 547.6 || 6315-6316 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 14-7 || LD2 || 25.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || 2.304 || 18.55 || +1 || 30000 || | + | | 14-7 || LD2 || 25.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || 2.304 || 18.55 || +1 || 30000 || 31169/154.5 || 3:38 || 327.9 || 6325-6327 (6324 check) |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 14-8 || DUM || 40.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || 2.304 || 18.55 || +1 || 4605 || | + | | 14-8 || DUM || 40.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || 2.304 || 18.55 || +1 || 4605 || 5088/156 || 1:03 || 151.9 || 6328 - 6329 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 14-9 || LH2 || 25.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || 2.304 || 18.55 || +1 || 30000 || | + | | 14-9 || LH2 || 25.0 || 4.764 || 0.550 || 0.500 || -5.983 || 15.75 || 2.304 || 18.55 || +1 || 30000 || 32578/242 || 6:45 || 607.7 || 6331 - 6332 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 14-10 || LD2 || 25.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || 1.842 || 18.55 || +1 || 30000 || | + | | 14-10 || LD2 || 25.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || 1.842 || 18.55 || +1 || 30000 || 32516.8/191.9 || 2:45 || 248.8 || 6339(v.short)6340-6344, 6347 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 14-11 || DUM || 40.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || 1.842 || 18.55 || +1 || 4625 || | + | | 14-11 || DUM || 40.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || 1.842 || 18.55 || +1 || 4625 || 4915.2/172.2 || 0:48 || 115.7 || 6345-6346 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 14-12 || LH2 || 25.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || 1.842 || 18.55 || +1 || 30000 || | + | | 14-12 || LH2 || 25.0 || 4.764 || 0.550 || 0.400 || -5.983 || 15.75 || 1.842 || 18.55 || +1 || 30000 || 31659/333 || 5:08 || 463.0 || 6334-6338(5runs) |
|- | |- | ||
|} | |} | ||
Kinematic group 14 total time : 45.194 hrs (1.88308 days) | Kinematic group 14 total time : 45.194 hrs (1.88308 days) | ||
+ | |||
==== Kinematic Group 15: Q2 = 4.775 GeV2, x = 0.6 ==== | ==== Kinematic Group 15: Q2 = 4.775 GeV2, x = 0.6 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 486: | Line 672: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 15-1 || LD2 || 25.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || 2.966 || 20.58 || +1 || 20000 || | + | | 15-1 || LD2 || 25.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || 2.966 || 20.58 || +1 || 20000 || 42099/233.6,20327/113.16 || 6:03 || 545.3 || 6387-6388,6397-6398 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 15-2 || DUM || 40.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || 2.966 || 20.58 || +1 || | + | | 15-2 || DUM || 40.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || 2.966 || 20.58 || +1 || 3000 || 3023.9/94.0 || 0:56 || 136.3 || 6385 (bad!), 6386,6389 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 15-3 || LD2 || 25.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || 2.541 || 20.58 || +1 || 20000 || | + | | 15-3 || LD2 || 25.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || 2.541 || 20.58 || +1 || 20000 || 29891/169 || 4:16 || 384.6 || 6393-6396 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 15-4 || DUM || 40.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || 2.541 || 20.58 || +1 || | + | | 15-4 || DUM || 40.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || 2.541 || 20.58 || +1 || 3000 || 3164.9/100.2 || 0:40 || 96.1 || 6390-6391 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 15-5 || LD2 || 25.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || 2.116 || 20.58 || +1 || 30000 || | + | | 15-5 || LD2 || 25.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || 2.116 || 20.58 || +1 || 30000 || 32699/195.7 || 4:43 || 425.5 || 6399-6404 (6401=junk, 6400 ~junk 6399 low count |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 15-6 || DUM || 40.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || 2.116 || 20.58 || +1 || | + | | 15-6 || DUM || 40.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || 2.116 || 20.58 || +1 || 3000 || 3165.8/116.0 || 0:44 || 106.4 || 6405,6406 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 15-7 || LD2 || 25.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || 1.691 || 20.58 || +1 || 30000 || | + | | 15-7 || LD2 || 25.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || 1.691 || 20.58 || +1 || 30000 || 32018 /210.8 || 3:36 || 324.2 || 6410-6413,6415-6417 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 15-8 || DUM || 40.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || 1.691 || 20.58 || +1 || | + | | 15-8 || DUM || 40.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || 1.691 || 20.58 || +1 || 3000 || 3165.8/130.0 || 0:33 || 81.1 || 6407,6408 |
|- | |- | ||
|} | |} | ||
Kinematic group 15 total time : 21.5776 hrs (0.899065 days) | Kinematic group 15 total time : 21.5776 hrs (0.899065 days) | ||
+ | |||
==== Kinematic Group 16: Q2 = 4.775 GeV2, x = 0.6 ==== | ==== Kinematic Group 16: Q2 = 4.775 GeV2, x = 0.6 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 510: | Line 697: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 16-1 || LD2 || 50.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || -2.966 || 20.58 || -1 || 20000 || | + | | 16-1 || LD2 || 50.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || -2.966 || 20.58 || -1 || 20000 || 23599/242 || 6:27 || 1161.7 || 6359-6360 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 16-2 || DUM || 40.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || -2.966 || 20.58 || -1 || 1683 || | + | | 16-2 || DUM || 40.0 || 4.775 || 0.600 || 0.700 || -6.358 || 15.30 || -2.966 || 20.58 || -1 || 1683 || 2719/ 192 || 2:01 || 290.4 || 6363-6365(61- junk, 62- likely junk) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 16-3 || LD2 || 50.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || -2.541 || 20.58 || -1 || 20000 || | + | | 16-3 || LD2 || 50.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || -2.541 || 20.58 || -1 || 20000 || 24855/237 || 3:55 || 706.0 || 6367 -6370 (69junk) |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 16-4 || DUM || 40.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || -2.541 || 20.58 || -1 || | + | | 16-4 || DUM || 40.0 || 4.775 || 0.600 || 0.600 || -6.358 || 15.30 || -2.541 || 20.58 || -1 || 3000 || 3057/185 || 1:13 || 176.5 || 6371 - 6372 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 16-5 || LD2 || 50.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || -2.116 || 20.58 || -1 || 30000 || | + | | 16-5 || LD2 || 50.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || -2.116 || 20.58 || -1 || 30000 || 30732.2/309.3 || 3:53 || 701.3 || 6375-6377 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 16-6 || DUM || 40.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || -2.116 || 20.58 || -1 || | + | | 16-6 || DUM || 40.0 || 4.775 || 0.600 || 0.500 || -6.358 || 15.30 || -2.116 || 20.58 || -1 || 3000 || 3170/178 || 1:13 || 175.3 || 6373-6374 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 16-7 || LD2 || 50.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || -1.691 || 20.58 || -1 || 30000 || | + | | 16-7 || LD2 || 50.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || -1.691 || 20.58 || -1 || 30000 || 30111.2/285.9 || 2:46 || 499.3 || 6378-6381 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 16-8 || DUM || 40.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || -1.691 || 20.58 || -1 || | + | | 16-8 || DUM || 40.0 || 4.775 || 0.600 || 0.400 || -6.358 || 15.30 || -1.691 || 20.58 || -1 || 3000 || 3119.0/184.3 || 0:52 || 124.8 || 6382-6383 |
|- | |- | ||
|} | |} | ||
total time : 233.766 hrs (9.74024 days) | total time : 233.766 hrs (9.74024 days) | ||
− | ==== Kinematic Group 17: Q2 = 5.5 GeV2, x = 0.5 ==== | + | ==== Kinematic Group 17: Q2 = 5.5 GeV2, x = 0.5 (Continued in Kin 35-36) ==== |
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs | ||
Line 535: | Line 722: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 17-1 || LD2 || 50.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || -4.102 || 14.17 || -1 || 20000 || | + | | 17-1 || LD2 || 50.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || -4.102 || 14.17 || -1 || 20000 || 21603/363 || 6:33 || 1181.9 || 6524-6526 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 17-2 || DUM || 40.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || -4.102 || 14.17 || -1 || 1684 || | + | | 17-2 || DUM || 40.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || -4.102 || 14.17 || -1 || 1684 || 2003/195 || 2:03 || 295.5 || 6522,6523 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 17-3 || LD2 || 25.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || 4.102 || 14.17 || +1 || 20000 || | + | | 17-3 || LD2 || 25.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || 4.102 || 14.17 || +1 || 20000 || 20888/198 || 5:56 || 534.6 || 6518-6520 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 17-4 || DUM || 40.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || 4.102 || 14.17 || +1 || 1654 || | + | | 17-4 || DUM || 40.0 || 5.500 || 0.500 || 0.700 || -4.736 || 19.05 || 4.102 || 14.17 || +1 || 1654 || 1971/102 || 0:55 || 133.7 || 6521 |
|- | |- | ||
|} | |} | ||
Kinematic group 17 total time : 15.4866 hrs (0.645276 days) | Kinematic group 17 total time : 15.4866 hrs (0.645276 days) | ||
− | ==== Kinematic Group 18: Q2 = 5.5 GeV2, x = 0.5 ==== | + | |
+ | ==== Kinematic Group 18: Q2 = 5.5 GeV2, x = 0.5 (Continued in Kin 35-36)==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs | ||
Line 551: | Line 739: | ||
! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs | ||
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 18-1 || LD2 || 25.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || 3.515 || 14.17 || +1 || 20000 || | + | | 18-1 || LD2 || 25.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || 3.515 || 14.17 || +1 || 20000 || 22033/211 || 4:04 || 367.4 || 6535-6536 |
|- style="text-align:center; background: #ffffff;" | |- style="text-align:center; background: #ffffff;" | ||
− | | 18-2 || DUM || 40.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || 3.515 || 14.17 || +1 || 1655 || | + | | 18-2 || DUM || 40.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || 3.515 || 14.17 || +1 || 1655 || 2050/112.4 || 0:38 || 91.8 || 6533, 6534 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 18-3 || LD2 || 50.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || -3.515 || 14.17 || -1 || 20000 || | + | | 18-3 || LD2 || 50.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || -3.515 || 14.17 || -1 || 20000 || 21887/376 || 3:49 || 689.8 || 6527,6528,6529 |
|- style="text-align:center; background: #efeff5;" | |- style="text-align:center; background: #efeff5;" | ||
− | | 18-4 || DUM || 40.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || -3.515 || 14.17 || -1 || 1678 || | + | | 18-4 || DUM || 40.0 || 5.500 || 0.500 || 0.600 || -4.736 || 19.05 || -3.515 || 14.17 || -1 || 1678 || 1977/186 || 1:11 || 172.5 || 6531,6532 |
|- | |- | ||
|} | |} | ||
Kinematic group 18 total time : 9.75011 hrs (0.406254 days) | Kinematic group 18 total time : 9.75011 hrs (0.406254 days) | ||
+ | |||
==== Kinematic Group 19: Q2 = 5.5 GeV2, x = 0.5 ==== | ==== Kinematic Group 19: Q2 = 5.5 GeV2, x = 0.5 ==== | ||
{|class="wikitable" style="width: 85%" | {|class="wikitable" style="width: 85%" | ||
Line 786: | Line 975: | ||
total time : 260.204 hrs (10.8418 days) | total time : 260.204 hrs (10.8418 days) | ||
+ | ==== Kinematic Group 33: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.65 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 33-1 || LD2 || 50.0 || 5.5 || 0.650 || 0.700 || -5.714 || 17.65 || -3.150 || 19.94 || -1 || 20000 || 21130/423.2 || 3:16 || 588.7 || 7593-7597 || < 500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 33-2 || DUM || 40.0 || 5.5 || 0.650 || 0.700 || -5.714 || 17.65 || -3.150 || 19.94 || -1 || 2000 || 2143/283.4 || 2:00 || 294.4 || 7600-7604 (7599Junk) || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 33-3 || LD2 || 50.0 || 5.5 || 0.650 || 0.600 || -5.714 || 17.65 || -2.699 || 19.94 || -1 || 20000 || 21652/474.2 || 2:41 || 483.7 || 7608-7610 || < 500 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 33-4 || DUM || 40.0 || 5.5 || 0.650 || 0.600 || -5.714 || 17.65 || -2.699 || 19.94 || -1 || 2000 || 2082/256.8 || 1:41 || 241.9 || 7605-7607 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 33-5 || LD2 || 50.0 || 5.5 || 0.650 || 0.500 || -5.714 || 17.65 || -2.248 || 19.94 || -1 || 30000 || 25768/718.2 || 3:52 || 695.4 || 7611-7616 || < 500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 33-6 || DUM || 40.0 || 5.5 || 0.650 || 0.500 || -5.714 || 17.65 || -2.248 || 19.94 || -1 || 3000 || 3421/398.8 || 2:25 || 347.7 || 7617-7619 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 33-7 || LD2 || 40.0 || 5.5 || 0.650 || 0.400 || -5.714 || 17.65 || -1.797 || 19.94 || -1 || 30000 || 31751/1075.7 || 5:25 || 768.2 || 7625-7634 || < 500 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 33-8 || DUM || 40.0 || 5.5 || 0.650 || 0.400 || -5.714 || 17.65 || -1.797 || 19.94 || -1 || 3000 || 3099/379.8 || 2:42 || 384.1 || 7620-7623 || N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 33 total time : 24 hrs (1 day) | ||
+ | |||
+ | ==== Kinematic Group 34: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.65 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 34-1 || LD2 || 50.0 || 5.5 || 0.650 || 0.700 || -5.714 || 17.65 || +3.150 || 19.94 || +1 || 20000 ||20988/199.7 || 1:53 || 337.6 || 7635-7637 || 100 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 34-2 || DUM || 40.0 || 5.5 || 0.650 || 0.700 || -5.714 || 17.65 || +3.150 || 19.94 || +1 || 2000 || 2035/136.6 || 1:10 || 168.8 || 7638-7639 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 34-3 || LD2 || 50.0 || 5.5 || 0.650 || 0.600 || -5.714 || 17.65 || +2.699 || 19.94 || +1 || 20000 || 20342/279.2 || 1:40 || 298.0 || 7642-9645 || 180 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 34-4 || DUM || 40.0 || 5.5 || 0.650 || 0.600 || -5.714 || 17.65 || +2.699 || 19.94 || +1 || 2000 || 1959/136.1 || 1:02 || 149.0 || 7640-7641 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 34-5 || LD2 || 35.0 || 5.5 || 0.650 || 0.500 || -5.714 || 17.65 || +2.248 || 19.94 || +1 || 30000 || 30214/482.6 || 3:40 || 379.2 || 7646-7652 || 365 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 34-6 || DUM || 40.0 || 5.5 || 0.650 || 0.500 || -5.714 || 17.65 || +2.248 || 19.94 || +1 || 3000 || 3060/242.7 || 1:19 || 189.6 || 7654-7655 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 34-7 || LD2 || 14.5 || 5.5 || 0.650 || 0.400 || -5.714 || 17.65 || +1.797 || 19.94 || +1 || 30000 || 30468/329.8 || 10:38 || 555.0 || 7661-7670 (~13uA all) || 500 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 34-8 || DUM || 40.0 || 5.5 || 0.650 || 0.400 || -5.714 || 17.65 || +1.797 || 19.94 || +1 || 3000 || 3654/341 || 1:55 || 277.5 || 7657-7660 (56 ?) || N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 34 total time : 23:17 hrs (0.97 days) | ||
+ | |||
+ | ==== Kinematic Group 35: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.5 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 35-1 || LD2 || 50.0 || 5.5 || 0.500 || 0.600 || -4.357 || 20.24 || -3.514 || 13.81 || -1 || 20000 || 22042/332.2 || 1:46 || 317.7 || 7671-7672 || 440 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 35-2 || DUM || 40.0 || 5.5 || 0.500 || 0.600 || -4.357 || 20.24 || -3.514 || 13.81 || -1 || 2000 || 2024/190.9 || 1:06 || 158.9 || 7673-7674 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 35-3 || LD2 || 45.8 || 5.5 || 0.500 || 0.500 || -4.357 || 20.24 || -2.928 || 13.81 || -1 || 30000 || 29798/413.9 || 2:47 || 456.5 || 7679-7682 || 500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 35-4 || DUM || 40.0 || 5.5 || 0.500 || 0.500 || -4.357 || 20.24 || -2.928 || 13.81 || -1 || 3000 || 3316/301.6 || 1:35 || 228.2 || 7675-7677 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 35-5 || LD2 || 20.6 || 5.5 || 0.500 || 0.400 || -4.357 || 20.24 || -2.341 || 13.81 || -1 || 30000 || 32108/401 || 6:46 || 503.5 || 7684-7692 (91 Junk) || 500 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 35-6 || DUM || 40.0 || 5.5 || 0.500 || 0.400 || -4.357 || 20.24 || -2.341 || 13.81 || -1 || 3000 || 4074/319.7 || 1:45 || 251.8 || 7694-7695 || N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 35 total time : 15.75 hours (0.66 days) | ||
+ | |||
+ | ==== Kinematic Group 36: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.5 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 36-1 || LD2 || 50.0 || 5.5 || 0.500 || 0.600 || -4.357 || 20.24 || +3.514 || 13.81 || +1 || 20000 || 21578/176.8 || 1:05 || 195.8 || 7699 (rfo 400.08), 7702-7703-short(rfo 398.1) || 450 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 36-2 || DUM || 40.0 || 5.5 || 0.500 || 0.600 || -4.357 || 20.24 || +3.514 || 13.81 || +1 || 2000 || 2591/141.2 || 0:41 || 97.9 || 7697-7698 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 36-3 || LD2 || 20.3 || 5.5 || 0.500 || 0.500 || -4.357 || 20.24 || +2.928 || 13.81 || +1 || 30000 || 31749/263.2 || 4:09 || 303.6 || 7706-7710 || 500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 36-4 || DUM || 40.0 || 5.5 || 0.500 || 0.500 || -4.357 || 20.24 || +2.928 || 13.81 || +1 || 3000 || 3340/173.1 || 1:03 || 151.8 || 7711-7712 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 36-5 || LD2 || 8.9 || 5.5 || 0.500 || 0.400 || -4.357 || 20.24 || +2.341 || 13.81 || +1 || 30000 || 29406/225.1 || 11:21 || 363.8 || 7716-7722 || 500 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 36-6 || DUM || 40.0 || 5.5 || 0.500 || 0.400 || -4.357 || 20.24 || +2.341 || 13.81 || +1 || 3000 || 3075/ 154.9 || 1:15 || 181.9 || 7713-7715 || N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 36 total time : 19.57 hours (0.82 days) | ||
+ | |||
+ | ==== Kinematic Group 37: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.6 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 37-1 || LH2 || 50.0 || 5.5 || 0.600 || 0.900 || -5.270 || 18.51 || -4.452 || 17.77 || -1 || N/A || 0.34 /107.7 || 0:33 || 100.0 || 7723 || <500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 37-2 || LD2 || 50.0 || 5.5 || 0.600 || 0.900 || -5.270 || 18.51 || -4.452 || 17.77 || -1 || N/A || 0.34/103.5 || 0:33 || 100.0 || 7724 || <500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 37-3 || DUM || 40.0 || 5.5 || 0.600 || 0.900 || -5.270 || 18.51 || -4.452 || 17.77 || -1 || N/A || 0.21/52.7 || 0:21 || 50.0 || 7725 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 37-4 || LH2 || 50.0 || 5.5 || 0.600 || 0.650 || -5.270 || 18.51 || -3.214 || 17.77 || -1 || 10000 || 10151/313.9 || 2:39 || 476.7 || 7730, 7733 || <500 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 37-5 || LD2 || 50.0 || 5.5 || 0.600 || 0.650 || -5.270 || 18.51 || -3.214 || 17.77 || -1 || 20000 || 20607/335.4 || 2:29 || 447.6 || 7735-7736 || <500 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 37-6 || DUM || 40.0 || 5.5 || 0.600 || 0.650 || -5.270 || 18.51 || -3.214 || 17.77 || -1 || 2000 || 2028/242.7 || 1:33 || 223.8 || 7727-7728 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 37-7 || LH2 || 50.0 || 5.5 || 0.600 || 0.550 || -5.270 || 18.51 || -2.718 || 17.77 || -1 || 10000 || 10232/325.1 || 2:16 || 407.6 || 7741-7743 || <500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 37-8 || LD2 || 50.0 || 5.5 || 0.600 || 0.550 || -5.270 || 18.51 || -2.718 || 17.77 || -1 || 30000 || 31915/337.5 || 3:19 || 597.6 || 7737-7740 || <500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 37-9 || DUM || 40.0 || 5.5 || 0.600 || 0.550 || -5.270 || 18.51 || -2.718 || 17.77 || -1 || 3000 || 2566/257.5 || 2:05 || 298.8 || 7747-7749 || N/A | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 37-10 || LH2 || 34.0 || 5.5 || 0.600 || 0.450 || -5.270 || 18.51 || -2.223 || 17.77 || -1 || 10000 || 10160/313.5 || 3:17 || 402.7 || 7753-7755 || <500 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 37-11 || LD2 || 33.2 || 5.5 || 0.600 || 0.450 || -5.270 || 18.51 || -2.223 || 17.77 || -1 || 30000 || 30424/460.2 || 5:08 || 613.6 || 7757- 7759 || <500 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 37-12 || DUM || 40.0 || 5.5 || 0.600 || 0.450 || -5.270 || 18.51 || -2.223 || 17.77 || -1 || 3000 || 3460/342.3 || 2:08 || 306.8 || 7750-7752 || N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 37 total time : 26.35 hours (1.1 days) | ||
+ | |||
+ | ==== Kinematic Group 38: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.6 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 38-1 || LH2 || 50.0 || 5.5 || 0.600 || 0.900 || -5.270 || 18.51 || +4.452 || 17.77 || +1 || N/A || 7374/83 || 0:33 || 100.0 || 7763 || <500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 38-2 || LD2 || 50.0 || 5.5 || 0.600 || 0.900 || -5.270 || 18.51 || +4.452 || 17.77 || +1 || N/A || 12407/110 || 0:33 || 100.0 || 7760 || <500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 38-3 || DUM || 40.0 || 5.5 || 0.600 || 0.900 || -5.270 || 18.51 || +4.452 || 17.77 || +1 || N/A || 692/50 || 0:21 || 50.0 || 7762 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 38-4 || LH2 || 50.0 || 5.5 || 0.600 || 0.650 || -5.270 || 18.51 || +3.214 || 17.77 || +1 || 10000 || 9854/122.1|| 1:14 || 222.6 || 7765-7766 || 70 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 38-5 || LD2 || 50.0 || 5.5 || 0.600 || 0.650 || -5.270 || 18.51 || +3.214 || 17.77 || +1 || 20000 || 18903/153.7 || 1:29 || 266.0 || 7768-7771 (67 may be ok) || 123 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 38-6 || DUM || 40.0 || 5.5 || 0.600 || 0.650 || -5.270 || 18.51 || +3.214 || 17.77 || +1 || 2000 || 2307/124.4 || 0:55 || 133.0 || 7772 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 38-7 || LH2 || 31.1 || 5.5 || 0.600 || 0.550 || -5.270 || 18.51 || +2.718 || 17.77 || +1 || 10000 || 10942/131.5 || 1:55 || 215.4 || 7778-7779 || 136 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 38-8 || LD2 || 30.3 || 5.5 || 0.600 || 0.550 || -5.270 || 18.51 || +2.718 || 17.77 || +1 || 30000 || 28250/241.9 || 3:30 || 382.4 || 7775-7777 || 325 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 38-9 || DUM || 40.0 || 5.5 || 0.600 || 0.550 || -5.270 || 18.51 || +2.718 || 17.77 || +1 || 3000 || 2974/182.9 || 1:20 || 191.2 || 7773-7774 || N/A | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 38-10 || LH2 || 13.1 || 5.5 || 0.600 || 0.450 || -5.270 || 18.51 || +2.223 || 17.77 || +1 || 10000 || 11148/135.1 || 5:08 || 242.0 || 7781-7782 || 280 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 38-11 || LD2 || 12.7 || 5.5 || 0.600 || 0.450 || -5.270 || 18.51 || +2.223 || 17.77 || +1 || 30000 || 30475/270 || 10:30 || 425.0 || 7783-7787 || 490 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 38-12 || DUM || 40.0 || 5.5 || 0.600 || 0.450 || -5.270 || 18.51 || +2.223 || 17.77 || +1 || 3000 || 2846/170.6 || 1:29 || 212.5 || 7790-7792 || N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 38 total time : 28.95 hours (1.2 days) | ||
+ | |||
+ | ==== Kinematic Group 39: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.55 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 39-1 || LD2 || 50.0 || 5.5 || 0.550 || 0.650 || -4.890 || 19.10 || -3.461 || 15.95 || -1 || 20000 || 20460/299.4 || 2:02 || 365.8 || 7796-7797 || <500 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 39-2 || DUM || 40.0 || 5.5 || 0.550 || 0.650 || -4.890 || 19.10 || -3.461 || 15.95 || -1 || 2000 || 2012/205.6 || 1:15 || 179.6 || 7793-7794 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 39-3 || LD2 || 50.0 || 5.5 || 0.550 || 0.550 || -4.890 || 19.10 || -2.928 || 15.95 || -1 || 20000 || 20354/303.9 || 1:49 || 325.8 || 7798-7799, 7800 test @ 25 uA || <500 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 39-4 || DUM || 40.0 || 5.5 || 0.550 || 0.550 || -4.890 || 19.10 || -2.928 || 15.95 || -1 || 2000 || 2215/218 || 1:07 || 162.9 || 7801-7802 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 39-5 || LD2 || 26.8 || 5.5 || 0.550 || 0.450 || -4.890 || 19.10 || -2.394 || 15.95 || -1 || 20000 || 21035/276.6|| 3:28 || 334.8 || 7805 - 7807 || <500 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 39-6 || DUM || 40.0 || 5.5 || 0.550 || 0.450 || -4.890 || 19.10 || -2.394 || 15.95 || -1 || 2000 || 2047/170 || 1:09 || 164.9 || 7803- 7804|| N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 39 total time : 10.8 hours (0.45 days) | ||
+ | |||
+ | ==== Kinematic Group 40: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.55 ==== | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="3" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Good Count Goals|| colspan="2" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Estimates || style="border: 1px solid black; padding: 5px; background: #99ccff;" | Runs || style="border: 1px solid black; padding: 5px; background: #ffdead;" | Target SHMS 3/4 (pTRIG1) rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || x || z || P HMS || th_HMS || P SHMS || th_SHMS || pol || desired || actual || hr:min || charge mC || # runs || kHz | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 40-1 || LD2 || 50.0 || 5.5 || 0.550 || 0.650 || -4.890 || 19.10 || +3.461 || 15.95 || +1 || 20000 || 20583/156.6|| 1:13 || 217.4 || 7808-7809|| 225 | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 40-2 || DUM || 40.0 || 5.5 || 0.550 || 0.650 || -4.890 || 19.10 || +3.461 || 15.95 || +1 || 2000 || 2038/106.4 || 0:45 || 108.4 || 7811 || N/A | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 40-3 || LD2 || 25.5 || 5.5 || 0.550 || 0.550 || -4.890 || 19.10 || +2.928 || 15.95 || +1 || 20000 || 20625/171.1 || 2:16 || 208.5 || 7813-7814 || 420 | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | 40-4 || DUM || 40.0 || 5.5 || 0.550 || 0.550 || -4.890 || 19.10 || +2.928 || 15.95 || +1 || 2000 || 2077/118.7 || 0:43 || 104.0 || 7812 || N/A | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | 40-5 || LD2 || 10.9 || 5.5 || 0.550 || 0.450 || -4.890 || 19.10 || +2.394 || 15.95 || +1 || 20000 || 22081/170.7 || 5:55 || 231.9 || 7815-7817 || 495 | ||
+ | |- style="text-align:center; background: #efeff5 | ||
+ | | 40-6 || DUM || 40.0 || 5.5 || 0.550 || 0.450 || -4.890 || 19.10 || +2.394 || 15.95 || +1 || 2000 || 2732/148.4 || 0:48 || 115.6 || 7819-7820 || N/A | ||
+ | |- | ||
+ | |} | ||
+ | Kinematic group 40 total time : 11.7 hours (0.49 days) | ||
− | + | ==== More Hydrogen Coincidence Elastics ==== | |
+ | Make sure both the HMS and SHMS magnets are cycled appropriately when doing this scan: go to MOL when increasing momentum. PS6=0 and PS4=0 all others (ps1, etc.) =-1 | ||
+ | {|class="wikitable" style="width: 85%" | ||
+ | ! colspan="3" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Setting|| colspan="1" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Kinematics || colspan="5" style="border: 1px solid black; padding: 5px; background: #ffdead;" | Spectrometer settings || colspan="2" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Count Goal|| est. || ||colspan="1" style="border: 1px solid black; padding: 5px; background: #99ccff;" | Rates | ||
+ | |- | ||
+ | ! number || target || Ibeam || Q2 || th_HMS || P HMS || th_SHMS || P SHMS || pol || desired || actual || time || # runs || coin | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | Heep-40a || LH2 || 50.000 || 8.99 || 23.22 || -5.714 || 22.26 || +5.65 || +1 || 10000 || 4066/202.5 || 02:00 || 7822-7823 || x | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | Heep-40a-D|| Dummy || 40.000 || 8.99 || 23.22 || -5.714 || 22.26 || +5.65 || +1 || N/A || 39/56 || 00:45 || 7824 || x | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | Heep-40b || LH2 || 50.000 || 8.45 || 21.93 || -5.714 || 23.46 || +5.36 || +1 || 10000 || 7889/218 || 01:06 || 7826-7827 || x | ||
+ | |- style="text-align:center; background: #efeff5;" | ||
+ | | Heep-40b-D|| Dummy || 40.000 || 8.45 || 21.93 || -5.714 || 23.46 || +5.36 || +1 || N/A || 25/20 || 00:30 || 7828 || x | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | Heep-40c || LH2 || 50.000 || 7.92 || 20.71 || -5.714 || 24.71 || +5.07 || +1 || 10000 || 5875/123.4 || 00:55 || 7830 || x | ||
+ | |- style="text-align:center; background: #ffffff;" | ||
+ | | Heep-40c-D|| Dummy || 40.000 || 7.92 || 20.71 || -5.714 || 24.71 || +5.07 || +1 || N/A || 9/4.1 || 00:25 || 7829 || x | ||
+ | |} | ||
+ | Kinematic group total time: 3.2 hours |
Latest revision as of 10:53, 9 March 2023
Run Group | ELOG | PT Scan Experiment | CSV Experiment | Software/Computing | CSV Analysis | SIDIS pages | This Navigation
Quick start instructions
- Always run the 50k replays!
- Each setting has count goal to be reached, e.g., "20000/ 276". This means 20000 "good coin events" (see next item) need to be counted. The charge, 276 mC, is just an estimate.
- The counts for a given replay are obtained by (see below for more details):<syntaxhighlight lang="bash">
If not already on cdaql1 -> ssh cdaql1 bash_csv replay # will setup environment do_good_coin -c 20000 # will run the counter on the latest run </syntaxhighlight> Note: Running this script will update the "Charge Goal" field on the "blue screen". Follow this charge goal to determine when a setting is complete. The full analysis takes some time, so the number of counts reflected in the "make_csv_runtable" command will not be accurate until the full analysis is complete.
Open web browser to online counter plots
- Files to update:
- DBASE/COIN/standard.kinematics --> This is now updated automatically. If the online plots come up blank, check that the file has updated appropriately.
- Keep current before running any replays
- Update the tables in the wiki:
- Add good coin counts in "actual"
- Set the correct run (or range of runs) under "Runs"
- Go to Information_for_Shift_Takers
More Details
Setup
ssh cdaql1 # connects to cdaql1 bash_csv replay # puts you in the correct directory
Note the detailed command line help for the following scripts.
`do_good_coin`
<syntaxhighlight lang="bash"> $ do_good_coin -h USAGE: do_good_coin [-c count_goal] [-r run_number] [-n nevents] OPTIONS:
-c,--count count goal. [default: 30000] -r,--run run number [default: most current run] -n,--nevents Number of events to replay. [default: 100000] -h,--help print help
</syntaxhighlight>
Run Table
root -b -q scripts/make_csv_table.cxx
This table is automatically populated. If it isn't updating, please contact expert (whit@jlab.org).
`make_csv_table.cxx`
To get the latest aggregate run information: <syntaxhighlight lang="bash"> root -b -q scripts/make_csv_table.cxx </syntaxhighlight>
`add_run_comment.py`
<syntaxhighlight lang="bash">
add_run_comment.py -h
usage: add_run_comment.py [-h] [-r RUN] [-a] [-u] [-f FILE] [-c COMMENT] [-k KINEMATIC]
Accumulate run information.
optional arguments:
-h, --help show this help message and exit -r RUN, --run RUN the run to add a comment -a, --append append to existing comments -u, --update update run file -f FILE, --file FILE The json run file to add a comment in -c COMMENT, --comment COMMENT specify the comment on the commandline -k KINEMATIC, --kine KINEMATIC specify the kinematic setting
</syntaxhighlight>
To mark a run as junk: <syntaxhighlight lang="bash"> $ add_run_comment.py -r 1234 --comment "this run is junk" </syntaxhighlight>
To add a comment for a given run
add_run_comment -r 1234 -c "this run was junk" -u
For detailed help, see add_run_comment -h
Blue screen (charge monitor)
blue_status_screen
The following is for experts only:
To reset the "Kinematic Setting" counter (if it did not reset at the start of a new run setting automatically). Do not do this if you have not yet started a new run.
caput hcRunSettingReconfigured 1
The counter will reset with the next run start.
To get the current run's charge and time:
caget hcCOINRunAccumulatedCharge caget hcCOINRunTime
To set the accumulated charge and time for setting:
caput hcRunSettingAccumulatedCharge CHARGE_IN_uC caput hcRunSettingTime SECONDS
Look at the latest results
Connect to plot display server (only works from counting house computers)
- The various plots are created when the full replay and counting scripts are finished.
Full replays
The full replay automatically starts about 3 minutes after a run start.
To see the currently replays in-progress:
./online_bin/auto_replay_stat
monitoring full replays
Looking at the logs (all replays)
mux logs
To attach to the tmux pane running the replay for a run, run the following command.
./online_bin/auto_replay_stat -r RUN_NUMBER
If you are still in tmux (with the blueish bar at the bottom), use the tmux command sequence "ctrl+a" then "d". This should detach you from the tmux session.
If the replay looks like it is stuck, you can do a "ctrl-c" and the replay should gracefully exit. When it is finished the tmux pane will close.
Running full replays
Sometimes it crashes or you want to re-do it, then run:
./bin/hc_coin_replay -r RUN_NUMBER -n -1
./online_bin/auto_replay_stat
Running the Scandalizer
If the CSS alarm handler (modern-ish looking one) is not being populated. The scandalizer has crashed (due to a known bug). You can manually run it by
./online_bin/scandalizer -r $(latest_run -t coin) -n -1 -s $(latest_event_number)
To bring up the CSS alaram handler run
$HOME/whit/bin/start_css_phoebus
2018-2019 Run Plan
Goal
The goal of the E12-09-002 experiment is to measure the ratio of semi-inclusive pi+ and pi- production from LD2 for the purpose of looking for Charge Symmetry Violation (CSV) in quark distributions.
Experimental setup
- Main trigger is 3/4 in the HMS in coincidence with 3/4 in the SHMS.
- HMS is setup for detecting electrons (inclusive DIS measurement).
- SHMS is setup for detecting charged pions and kaons (semi-inclusive DIS measurement).
Settings to monitor during shift
- Beam energy: 10.6 GeV. Raster 2x2
- Beam current:
- The nominal beam current is 50 muA for pi- and 25 muA for pi+. The main goal is to keep the total rate in the pion arm the same at both polarities (500 kHz or less). If the rate exceeds 500 kHz, please adjust the beam current accordingly.
- Trigger:
- Main trigger is 3/4 (TRIG 4) in HMS in coincidence with 3/4 (TRIG1) in SHMS.
- Prescale: PS6=0 all the time. Adjust PS4 to give at least 100 Hz (and no more than 200 Hz) of HMS singles.
Runplan - 2019
- Order of Kinematic Settings
- Setting 33 (Q2=5.5, x=0.65, pi-)
- Setting 34 (Q2=5.5, x=0.65, pi+)
Runplan - Fall 2018
- Order of Kinematic Settings
- Hydrogen Elastics DONE
- Setting 2 (Q2=4, x=0.35, pi+) DONE
- Setting 1 (Q2=4, x=0.35, pi-) DONE
- Setting 5 (Q2=4, x=0.45, pi-) DONE
- Setting 6 (Q2=4, x=0.45, pi+) DONE
- Setting 10 (Q2=4.75, x=0.45, pi+) DONE
- Setting 9 (Q2=4.75, x=0.45, pi-) DONE
- Setting 13 (Q2=4.76, x=0.55, pi-) PARTIALLY DONE - need lowest z setting: update: DONE
- Setting 14 (Q2=4.76, x=0.55, pi+) DONE
- Setting 13-10 to 13-12 (Q2=4.76, x=0.55, pi-)DONE
- Setting 16 (Q2=4.78, x=0.6, pi-) DONE
- Setting 15 (Q2=4.78, x=0.6, pi+) DONE
- Setting 11 (Q2=5, x=0.5, pi+) DONE
- Setting 12 (Q2=5, x=0.5, pi-) DONE
- SHMS electron singles run DONE
- Setting 8 (Q2=3.98, x=0.5, pi-)DONE
- Setting 7 (Q2=3.98, x=0.5, pi+) DONE
- Setting 17 (Q2=5.5, x=0.5, z=0.7 DONE
- Setting 18 (Q2=5.5, x=0.5, z=0.6 DONE
- Setting 3 (Q2=4, x=0.4, pi+) up to setting 3-6 (inclusive) (i.e. not 3-7 and 3-8) DONE
- Setting 4 (Q2=4, x=0.4, pi-) up to setting 4-6 (inclusive) (i.e. not 4-7 and 4-8) DONE
- https://hallcweb.jlab.org/wiki/index.php/5_pass_Run_Plan#Kinematic_Group_15 Do kinematics 16-11 (pi-) and then 15-11 (pi+). For these last 2 settings, scale the requested charge to account for the time remaining before 8 am. Both polarities are required, so plan to spend about half the remaining time on each.
Hydrogen Coincidence Elastics for HMS Checks
Make sure both the HMS and SHMS magnets are cycled appropriately when doing this scan: go to MOL when increasing momentum. PS6=0, all others (ps1, etc.) =-1
Setting | Kinematics | Spectrometer settings | Count Goal | est. | Rates | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | th_HMS | P HMS | th_SHMS | P SHMS | pol | desired | actual | time | # runs | coin |
Heep-1a | LH2 | 60.000 | 8.55 | 21.06 | -6.358 | 23.63 | +5.414 | +1 | 1000 | 963 | 11 min | 6009 | x |
Heep-1b | LH2 | 60.000 | 7.95 | 19.78 | -6.358 | 25.01 | +5.090 | +1 | 1000 | 2867 | 10 min | 6010 | x |
Heep-1b-D | Dummy | 40.000 | 7.95 | 19.78 | -6.358 | 25.01 | +5.090 | +1 | N/A | 26 | 10 min | 6011 | x |
Heep-1c | LH2 | 60.000 | 7.36 | 18.56 | -6.358 | 26.47 | +4.768 | +1 | 1000 | 3727 | 15 min | 6012 | x |
Heep-2 | LH2 | 60.000 | 8.66 | 21.29 | -5.983 | 23.40 | +5.471 | +1 | 1000 | 1320 | 12 min | 6013 | x |
Heep-2-D | Dummy | 40.000 | 8.66 | 21.29 | -5.983 | 23.40 | +5.471 | +1 | N/A | 9 | 10 min | 6014 | x |
Heep-3 | LH2 | 60.000 | 8.16 | 22.43 | -5.714 | 22.31 | +5.744 | +1 | 1000 | 1008 | 16 min | 6016 | x |
Heep-3-D | Dummy | 40.000 | 8.16 | 22.43 | -5.714 | 22.31 | +5.744 | +1 | N/A | 14 | 10 min | 6015 | x |
Heep-4 | LH2 | 60.000 | 9.98 | 24.42 | -5.270 | 20.60 | +6.193 | +1 | 1000 | 1023 | 25 min | 6017 | x |
Kinematic Group 1: Q2 = 4 GeV2, x = 0.35
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual/mC | hr:min | charge mC | # runs |
1-1 | LD2 | 50.0 | 4.000 | 0.350 | 0.700 | -4.508 | 16.64 | -4.262 | 11.61 | -1 | 20000 | 21113/130 | 1:31 | 276.0 | 6068(rfoff =399.1),6070+6071(rfoff=397.1)(done) |
1-2 | DUM | 40.0 | 4.000 | 0.350 | 0.700 | -4.508 | 16.64 | -4.262 | 11.61 | -1 | 3694 | 3639/109 | 1:03 | 151.5 | 6067(done) |
1-3 | LH2 | 50.0 | 4.000 | 0.350 | 0.700 | -4.508 | 16.64 | -4.262 | 11.61 | -1 | 20000 | 23632/271 | 3:21 | 605.8 | 6065,6066(done) |
1-4 | LD2 | 50.0 | 4.000 | 0.350 | 0.600 | -4.508 | 16.64 | -3.653 | 11.61 | -1 | 20000 | 21050/124 | 0:54 | 164.0 | 6073 (rfo 397.1), 6081 (399.1)(done) |
1-5 | DUM | 40.0 | 4.000 | 0.350 | 0.600 | -4.508 | 16.64 | -3.653 | 11.61 | -1 | 3589 | 4368/124 | 0:36 | 87.7 | 6080 (done) |
1-6 | LH2 | 50.0 | 4.000 | 0.350 | 0.600 | -4.508 | 16.64 | -3.653 | 11.61 | -1 | 20000 | 21683/274 | 1:56 | 350.6 | 6082 6083 (done) |
1-7 | LD2 | 50.0 | 4.000 | 0.350 | 0.500 | -4.508 | 16.64 | -3.043 | 11.61 | -1 | 20000 | 20129/111.09 | 0:53 | 161.0 | 6088-6090 (done) |
1-8 | DUM | 40.0 | 4.000 | 0.350 | 0.500 | -4.508 | 16.64 | -3.043 | 11.61 | -1 | 5284 | 5045/150.39 | 0:35 | 84.6 | 6087 (done) |
1-9 | LH2 | 50.0 | 4.000 | 0.350 | 0.500 | -4.508 | 16.64 | -3.043 | 11.61 | -1 | 20000 | 22474/273.94 | 1:52 | 338.3 | 6084-6086 (done) |
1-10 | LD2 | 50.0 | 4.000 | 0.350 | 0.400 | -4.508 | 16.64 | -2.433 | 11.61 | -1 | 20000 | 19897/90.24 | 0:37 | 113.7 | 6091,6093,6096(done) ( 6094 & 6095 v.short) |
1-11 | DUM | 40.0 | 4.000 | 0.350 | 0.400 | -4.508 | 16.64 | -2.433 | 11.61 | -1 | 5231 | 4688/126.01 | 0:24 | 59.2 | 6097,6098(done) |
1-12 | LH2 | 50.0 | 4.000 | 0.350 | 0.400 | -4.508 | 16.64 | -2.433 | 11.61 | -1 | 20000 | 20536/194 | 1:18 | 236.8 | 6099-6103 (done) |
Kinematic group 1 total time : 15.1382 hrs (0.630757 days)
Kinematic Group 2: Q2 = 4 GeV2, x = 0.35
Setting | Kinematics | Spectrometer settings | Count/Charge Goals | est. time | Rates | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | # runs | ||
2-1 | LD2 | 25.0 | 4.000 | 0.350 | 0.700 | -4.508 | 16.64 | 4.262 | 11.61 | +1 | 20000/ 129 | 60000/196 | 1:25 | 6018 & 6019 are HMS singles:ps4=7, coin= 6020-6021 (done) | ||
2-2 | DUM | 40.0 | 4.000 | 0.350 | 0.700 | -4.508 | 16.64 | 4.262 | 11.61 | +1 | 5066/ 98 | 5156/144 | 0:40 | 6022 and 6026 (done) | ||
2-3 | LH2 | 25.0 | 4.000 | 0.350 | 0.700 | -4.508 | 16.64 | 4.262 | 11.61 | +1 | 20000/ 246 | 19637/145 | 2:43 | 6023-6025 (done) | ||
2-4 | LD2 | 25.0 | 4.000 | 0.350 | 0.600 | -4.508 | 16.64 | 3.653 | 11.61 | +1 | 20000/ 90 | 21259/93.8 | 0:59 | 6029-6032 (done) | ||
2-5 | DUM | 40.0 | 4.000 | 0.350 | 0.600 | -4.508 | 16.64 | 3.653 | 11.61 | +1 | 5094/ 69 | 5659/138.7 | 0:28 | 6027-6028 (done) | ||
2-6 | LH2 | 25.0 | 4.000 | 0.350 | 0.600 | -4.508 | 16.64 | 3.653 | 11.61 | +1 | 20000/ 172 | 22491/176.5 | 1:54 | 6033,6034,6035,6036(done) | ||
2-7 | LD2 | 25.0 | 4.000 | 0.350 | 0.500 | -4.508 | 16.64 | 3.043 | 11.61 | +1 | 30000/ 99 | 19644/61.82 | 1:05 | 6043-6045 (done) | ||
2-8 | DUM | 40.0 | 4.000 | 0.350 | 0.500 | -4.508 | 16.64 | 3.043 | 11.61 | +1 | 7681/ 76 | 5280/94 | 0:31 | 6046 (done) | ||
2-9 | LH2 | 25.0 | 4.000 | 0.350 | 0.500 | -4.508 | 16.64 | 3.043 | 11.61 | +1 | 30000/ 190 | 30231/244.6 | 2:06 | 6038-6042(done) | ||
2-10 | LD2 | 25.0 | 4.000 | 0.350 | 0.400 | -4.508 | 16.64 | 2.433 | 11.61 | +1 | 20000/ 165 | 49396/124 | 0:49 | 6050-6055 (6049 short) (over done) | ||
2-11 | DUM | 40.0 | 4.000 | 0.350 | 0.400 | -4.508 | 16.64 | 2.433 | 11.61 | +1 | 5000/ 58 | 18493/305.36 | 0:24 | 6056-6058(done) | ||
2-12 | LH2 | 25.0 | 4.000 | 0.350 | 0.400 | -4.508 | 16.64 | 2.433 | 11.61 | +1 | 20000/ 267 | 58467/205 | 1:36 | 6059-6064 (done) |
Kinematic group 2 total time : 14.8007 hrs (0.616696 days)
Kinematic Group 3: Q2 = 4 GeV2, x = 0.4
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
3-1 | LD2 | 25.0 | 4.000 | 0.400 | 0.700 | -5.270 | 15.38 | 3.729 | 14.21 | +1 | 20000 | 22488/61.7 | 1:35 | 142.8 | 6537 |
3-2 | DUM | 40.0 | 4.000 | 0.400 | 0.700 | -5.270 | 15.38 | 3.729 | 14.21 | +1 | 2000 | 2528/26.2 | 0:14 | 35.7 | 6538 |
3-3 | LD2 | 25.0 | 4.000 | 0.400 | 0.600 | -5.270 | 15.38 | 3.195 | 14.21 | +1 | 20000 | 19436/55.6 | 1:06 | 99.7 | 6541 |
3-4 | DUM | 40.0 | 4.000 | 0.400 | 0.600 | -5.270 | 15.38 | 3.195 | 14.21 | +1 | 2000 | 2265/25.3 | 0:10 | 24.9 | 6539 |
3-5 | LD2 | 25.0 | 4.000 | 0.400 | 0.500 | -5.270 | 15.38 | 2.662 | 14.21 | +1 | 30000 | 30888/74.5 | 1:13 | 110.3 | 6542, 43 |
3-6 | DUM | 40.0 | 4.000 | 0.400 | 0.500 | -5.270 | 15.38 | 2.662 | 14.21 | +1 | 3000 | 3180/45.7 | 0:11 | 27.6 | 6544 |
3-7 | LD2 | 25.0 | 4.000 | 0.400 | 0.400 | -5.270 | 15.38 | 2.128 | 14.21 | +1 | 30000 | n | 0:55 | 83.7 | NN |
3-8 | DUM | 40.0 | 4.000 | 0.400 | 0.400 | -5.270 | 15.38 | 2.128 | 14.21 | +1 | 3000 | n | 0:08 | 20.9 | NN |
Kinematic group 3 total time : 5.60701 hrs (0.233625 days)
Kinematic Group 4: Q2 = 4 GeV2, x = 0.4
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
4-1 | LD2 | 50.0 | 4.000 | 0.400 | 0.700 | -5.270 | 15.38 | -3.729 | 14.21 | -1 | 20000 | 22154/109 | 1:42 | 306.7 | 6545 |
4-2 | DUM | 40.0 | 4.000 | 0.400 | 0.700 | -5.270 | 15.38 | -3.729 | 14.21 | -1 | 2000 | 2019/50.97 | 0:31 | 76.7 | 6546 |
4-3 | LD2 | 50.0 | 4.000 | 0.400 | 0.600 | -5.270 | 15.38 | -3.195 | 14.21 | -1 | 20000 | 21756/107.77 | 1:01 | 183.4 | 6548-6549 |
4-4 | DUM | 40.0 | 4.000 | 0.400 | 0.600 | -5.270 | 15.38 | -3.195 | 14.21 | -1 | 2000 | 2080/53.53 | 0:19 | 45.9 | 6547 |
4-5 | LD2 | 50.0 | 4.000 | 0.400 | 0.500 | -5.270 | 15.38 | -2.662 | 14.21 | -1 | 30000 | 30244/119.79 | 1:00 | 180.8 | 6550-6551 |
4-6 | DUM | 40.0 | 4.000 | 0.400 | 0.500 | -5.270 | 15.38 | -2.662 | 14.21 | -1 | 3000 | 3146/67.05 | 0:18 | 45.2 | 6552 |
4-7 | LD2 | 50.0 | 4.000 | 0.400 | 0.400 | -5.270 | 15.38 | -2.128 | 14.21 | -1 | 30000 | n | 0:42 | 128.1 | NN |
4-8 | DUM | 40.0 | 4.000 | 0.400 | 0.400 | -5.270 | 15.38 | -2.128 | 14.21 | -1 | 3000 | n | 0:13 | 32.0 | NN |
Kinematic group 4 total time : 5.82631 hrs (0.242763 days)
Kinematic Group 5: Q2 = 3.898 GeV2, x = 0.45
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual /mC | hr:min | charge mC | # runs |
5-1 | LD2 | 50.0 | 3.898 | 0.450 | 0.700 | -5.983 | 14.24 | -3.229 | 17.04 | -1 | 20000 | 20221/74.98 | 1:51 | 334.2 | 6111,6112,6114 |
5-2 | DUM | 40.0 | 3.898 | 0.450 | 0.700 | -5.983 | 14.24 | -3.229 | 17.04 | -1 | 3694 | 4104/101.6 | 1:16 | 183.4 | 6109-6110 |
5-3 | LH2 | 50.0 | 3.898 | 0.450 | 0.700 | -5.983 | 14.24 | -3.229 | 17.04 | -1 | 20000 | 20138/153.2 | 4:04 | 733.5 | 6104-6106 |
5-4 | LD2 | 50.0 | 3.898 | 0.450 | 0.600 | -5.983 | 14.24 | -2.767 | 17.04 | -1 | 20000 | 23473/88.66 | 1:07 | 202.4 | 6115-6116 |
5-5 | DUM | 40.0 | 3.898 | 0.450 | 0.600 | -5.983 | 14.24 | -2.767 | 17.04 | -1 | 3580 | 4118/94.76 | 0:44 | 107.9 | 6119,6120 |
5-6 | LH2 | 50.0 | 3.898 | 0.450 | 0.600 | -5.983 | 14.24 | -2.767 | 17.04 | -1 | 20000 | 21329/168.1 | 2:23 | 431.5 | 6117,6118,6121 |
5-7 | LD2 | 50.0 | 3.898 | 0.450 | 0.500 | -5.983 | 14.24 | -2.304 | 17.04 | -1 | 30000 | 39327/154 | 1:07 | 201.1 | 6124,6125 |
5-8 | DUM | 40.0 | 3.898 | 0.450 | 0.500 | -5.983 | 14.24 | -2.304 | 17.04 | -1 | 5261 | 5525/115 | 0:43 | 105.2 | 6127, 6128 |
5-9 | LH2 | 50.0 | 3.898 | 0.450 | 0.500 | -5.983 | 14.24 | -2.304 | 17.04 | -1 | 30000 | 33237/291 | 2:20 | 420.8 | 6122,6123,6126 |
5-10 | LD2 | 50.0 | 3.898 | 0.450 | 0.400 | -5.983 | 14.24 | -1.842 | 17.04 | -1 | 30000 | 31151/131.4 | 0:47 | 143.5 | 6136,6137,6138 |
5-11 | DUM | 40.0 | 3.898 | 0.450 | 0.400 | -5.983 | 14.24 | -1.842 | 17.04 | -1 | 5201 | 4920/118.3 | 0:30 | 74.3 | 6129, 6130, 6132, 6133, 6135 |
5-12 | LH2 | 50.0 | 3.898 | 0.450 | 0.400 | -5.983 | 14.24 | -1.842 | 17.04 | -1 | 30000 | 31411/223 | 1:39 | 297.1 | 6139,6140,6141 |
Kinematic group 5 total time : 18.6252 hrs (0.776048 days)
Kinematic Group 6: Q2 = 3.898 GeV2, x = 0.45
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual/mC | hr:min | charge /mC | # runs |
6-1 | LD2 | 25.0 | 3.898 | 0.450 | 0.700 | -5.983 | 14.24 | 3.229 | 17.04 | +1 | 20000 | 27188/86.97 | 1:44 | 156.6 | 6145,6146,6154 (low cur)(done) |
6-2 | DUM | 40.0 | 3.898 | 0.450 | 0.700 | -5.983 | 14.24 | 3.229 | 17.04 | +1 | 3104 | 4974/66.2 | 0:30 | 73.3 | 6155 (low counts),6168 (69, 3min) |
6-3 | LH2 | 25.0 | 3.898 | 0.450 | 0.700 | -5.983 | 14.24 | 3.229 | 17.04 | +1 | 20000 | 32154/165.57 | 3:15 | 293.3 | 6142,6144(done),6163,6164 (extra) |
6-4 | LD2 | 25.0 | 3.898 | 0.450 | 0.600 | -5.983 | 14.24 | 2.767 | 17.04 | +1 | 20000 | 30956/67.6 | 1:13 | 110.2 | 6170,6171 |
6-5 | DUM | 40.0 | 3.898 | 0.450 | 0.600 | -5.983 | 14.24 | 2.767 | 17.04 | +1 | 3123 | 3160/40.5 | 0:21 | 51.9 | 6172 |
6-6 | LH2 | 25.0 | 3.898 | 0.450 | 0.600 | -5.983 | 14.24 | 2.767 | 17.04 | +1 | 20000 | 22835/83.0 | 2:18 | 207.4 | 6174,6175 |
6-7 | LD2 | 25.0 | 3.898 | 0.450 | 0.500 | -5.983 | 14.24 | 2.304 | 17.04 | +1 | 30000 | 30434/63.5 | 1:21 | 122.4 | 6179,6180 |
6-8 | DUM | 40.0 | 3.898 | 0.450 | 0.500 | -5.983 | 14.24 | 2.304 | 17.04 | +1 | 4709 | 4865/64.8 | 0:24 | 57.9 | 6181,6182 |
6-9 | LH2 | 25.0 | 3.898 | 0.450 | 0.500 | -5.983 | 14.24 | 2.304 | 17.04 | +1 | 30000 | 32884/106.7 | 2:34 | 231.5 | 6177,6178 |
6-10 | LD2 | 25.0 | 3.898 | 0.450 | 0.400 | -5.983 | 14.24 | 1.842 | 17.04 | +1 | 30000 | 29735/71.13 | 1:02 | 93.4 | 6185,6186,6187 |
6-11 | DUM | 40.0 | 3.898 | 0.450 | 0.400 | -5.983 | 14.24 | 1.842 | 17.04 | +1 | 4726 | 4628/74 | 0:18 | 44.3 | 6183 (SHMS q2 trip at end), 6184 |
6-12 | LH2 | 25.0 | 3.898 | 0.450 | 0.400 | -5.983 | 14.24 | 1.842 | 17.04 | +1 | 30000 | 31225/117 | 1:58 | 177.2 | 6188,6189,6190 |
Kinematic group 6 total time : 17.0456 hrs (0.710234 days)
Kinematic Group 7: Q2 = 3.979 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
7-1 | LD2 | 25.0 | 3.979 | 0.500 | 0.700 | -6.358 | 13.96 | 2.966 | 19.09 | +1 | 20000 | 27290/73.7 | 2:14 | 202.4 | 6500 - 6501 |
7-2 | DUM | 40.0 | 3.979 | 0.500 | 0.700 | -6.358 | 13.96 | 2.966 | 19.09 | +1 | 3000 | 4585/70 | 0:21 | 50.6 | 6502 |
7-3 | LD2 | 25.0 | 3.979 | 0.500 | 0.600 | -6.358 | 13.96 | 2.541 | 19.09 | +1 | 20000 | 45770/112.6 | 1:35 | 143.1 | 6506(ps4=6,~500Hz),6507(ps4=8) |
7-4 | DUM | 40.0 | 3.979 | 0.500 | 0.600 | -6.358 | 13.96 | 2.541 | 19.09 | +1 | 3000 | 3809/66.7 | 0:14 | 35.8 | 6503-6504 |
7-5 | LD2 | 25.0 | 3.979 | 0.500 | 0.500 | -6.358 | 13.96 | 2.116 | 19.09 | +1 | 30000 | 28913/72.7 | 1:46 | 159.2 | 6509-10 |
7-6 | DUM | 40.0 | 3.979 | 0.500 | 0.500 | -6.358 | 13.96 | 2.116 | 19.09 | +1 | 2500 | 2734/43.6 | 0:16 | 39.8 | 6512 |
7-7 | LD2 | 25.0 | 3.979 | 0.500 | 0.400 | -6.358 | 13.96 | 1.691 | 19.09 | +1 | 30000 | 31564/90 | 1:21 | 121.8 | 6514-6517 |
7-8 | DUM | 40.0 | 3.979 | 0.500 | 0.400 | -6.358 | 13.96 | 1.691 | 19.09 | +1 | 2500 | 2296/42.5 | 0:12 | 30.5 | 6513 |
Kinematic group 7 total time : 8.04809 hrs (0.335337 days)
Kinematic Group 8: Q2 = 3.979 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
8-1 | LD2 | 50.0 | 3.979 | 0.500 | 0.700 | -6.358 | 13.96 | -2.966 | 19.09 | -1 | 20000 | 24001/102.8 | 2:23 | 429.3 | 6486 |
8-2 | DUM | 40.0 | 3.979 | 0.500 | 0.700 | -6.358 | 13.96 | -2.966 | 19.09 | -1 | 1682 | 1956/56.6 | 0:44 | 107.3 | 6487 |
8-3 | LD2 | 50.0 | 3.979 | 0.500 | 0.600 | -6.358 | 13.96 | -2.541 | 19.09 | -1 | 20000 | 20663/86.9 | 1:27 | 262.1 | 6489 |
8-4 | DUM | 40.0 | 3.979 | 0.500 | 0.600 | -6.358 | 13.96 | -2.541 | 19.09 | -1 | 1678 | 2015/48.1 | 0:27 | 65.5 | 6488 |
8-5 | LD2 | 50.0 | 3.979 | 0.500 | 0.500 | -6.358 | 13.96 | -2.116 | 19.09 | -1 | 30000 | 34500/145.6 | 1:27 | 261.8 | 6490, 6491(not bad),6493 |
8-6 | DUM | 40.0 | 3.979 | 0.500 | 0.500 | -6.358 | 13.96 | -2.116 | 19.09 | -1 | 2513 | 2547/62.52 | 0:27 | 65.5 | 6494 |
8-7 | LD2 | 50.0 | 3.979 | 0.500 | 0.400 | -6.358 | 13.96 | -1.691 | 19.09 | -1 | 30000 | 35025/166.9 | 1:02 | 187.5 | 6496-6499 |
8-8 | DUM | 40.0 | 3.979 | 0.500 | 0.400 | -6.358 | 13.96 | -1.691 | 19.09 | -1 | 2510 | 2818/70.2 | 0:19 | 46.9 | 6495 |
total time : 92.6258 hrs (3.85941 days)
Kinematic Group 9: Q2 = 4.75 GeV2, x = 0.45
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
9-1 | LD2 | 50.0 | 4.750 | 0.450 | 0.700 | -4.973 | 17.26 | -3.936 | 14.16 | -1 | 20000 | 21081/189 | 3:23 | 609.0 | 6245-6247 |
9-2 | DUM | 40.0 | 4.750 | 0.450 | 0.700 | -4.973 | 17.26 | -3.936 | 14.16 | -1 | 3715 | 3819/194 | 2:20 | 336.0 | 6242-6244 |
9-3 | LH2 | 50.0 | 4.750 | 0.450 | 0.700 | -4.973 | 17.26 | -3.936 | 14.16 | -1 | 20000 | 20365/338 | 7:28 | 1344.1 | 6237,6240,6241 |
9-4 | LD2 | 50.0 | 4.750 | 0.450 | 0.600 | -4.973 | 17.26 | -3.373 | 14.16 | -1 | 20000 | 20387/199 | 1:59 | 359.0 | 6248-6250 |
9-5 | DUM | 40.0 | 4.750 | 0.450 | 0.600 | -4.973 | 17.26 | -3.373 | 14.16 | -1 | 3584 | 3614/173 | 1:19 | 191.6 | 6251,6252 |
9-6 | LH2 | 50.0 | 4.750 | 0.450 | 0.600 | -4.973 | 17.26 | -3.373 | 14.16 | -1 | 20000 | 20321/358 | 4:15 | 766.6 | 6253-6255 |
9-7 | LD2 | 50.0 | 4.750 | 0.450 | 0.500 | -4.973 | 17.26 | -2.810 | 14.16 | -1 | 30000 | 32047/261 | 1:56 | 349.8 | 6263-6267 |
9-8 | DUM | 40.0 | 4.750 | 0.450 | 0.500 | -4.973 | 17.26 | -2.810 | 14.16 | -1 | 5253 | 5366/253 | 1:16 | 182.8 | 6261,6262 |
9-9 | LH2 | 50.0 | 4.750 | 0.450 | 0.500 | -4.973 | 17.26 | -2.810 | 14.16 | -1 | 30000 | 31423/531 | 4:03 | 731.2 | 6256-6260 |
9-10 | LD2 | 50.0 | 4.750 | 0.450 | 0.400 | -4.973 | 17.26 | -2.246 | 14.16 | -1 | 30000 | 30699/225 | 1:21 | 245.5 | 6270 - 6273 |
9-11 | DUM | 40.0 | 4.750 | 0.450 | 0.400 | -4.973 | 17.26 | -2.246 | 14.16 | -1 | 5186 | 4130/974 | 0:52 | 126.8 | 6274-6276 |
9-12 | LH2 | 50.0 | 4.750 | 0.450 | 0.400 | -4.973 | 17.26 | -2.246 | 14.16 | -1 | 30000 | 31312/460 | 2:49 | 507.2 | 6277, 6281,6282,6284 |
Kinematic group 9 total time : 33.1056 hrs (1.3794 days)
Kinematic Group 10: Q2 = 4.75 GeV2, x = 0.45
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
10-1 | LD2 | 25.0 | 4.750 | 0.450 | 0.700 | -4.973 | 17.26 | 3.936 | 14.16 | +1 | 20000 | 20477/110.0 | 3:05 | 278.6 | 6194,6195 |
10-2 | DUM | 40.0 | 4.750 | 0.450 | 0.700 | -4.973 | 17.26 | 3.936 | 14.16 | +1 | 3077 | 3576/98.77 | 0:53 | 129.4 | 6196 |
10-3 | LH2 | 25.0 | 4.750 | 0.450 | 0.700 | -4.973 | 17.26 | 3.936 | 14.16 | +1 | 20000 | 22024/151.3 | 5:44 | 517.4 | 6192,6193 |
10-4 | LD2 | 25.0 | 4.750 | 0.450 | 0.600 | -4.973 | 17.26 | 3.373 | 14.16 | +1 | 20000 | 20481/109.7 | 2:08 | 192.7 | 6198,6199 (done) |
10-5 | DUM | 40.0 | 4.750 | 0.450 | 0.600 | -4.973 | 17.26 | 3.373 | 14.16 | +1 | 3097 | 3113/91.48 | 0:37 | 90.0 | 6197 (done) |
10-6 | LH2 | 25.0 | 4.750 | 0.450 | 0.600 | -4.973 | 17.26 | 3.373 | 14.16 | +1 | 20000 | 22858/188.7 | 4:00 | 360.1 | 6200,6201 (done) |
10-7 | LD2 | 25.0 | 4.750 | 0.450 | 0.500 | -4.973 | 17.26 | 2.810 | 14.16 | +1 | 30000 | 30756/150 | 2:21 | 211.7 | 6205,6208-6210 |
10-8 | DUM | 40.0 | 4.750 | 0.450 | 0.500 | -4.973 | 17.26 | 2.810 | 14.16 | +1 | 4674 | 7427/145 | 0:41 | 99.4 | 6211,6212 |
10-9 | LH2 | 25.0 | 4.750 | 0.450 | 0.500 | -4.973 | 17.26 | 2.810 | 14.16 | +1 | 30000 | 30118/226 | 4:25 | 397.8 | 6202,6203,6204 |
10-10 | LD2 | 25.0 | 4.750 | 0.450 | 0.400 | -4.973 | 17.26 | 2.246 | 14.16 | +1 | 30000 | 30656/138 | 1:46 | 159.6 | 6215-6217,6219,6220 |
10-11 | DUM | 40.0 | 4.750 | 0.450 | 0.400 | -4.973 | 17.26 | 2.246 | 14.16 | +1 | 4693 | 5338/155 | 0:31 | 75.2 | 6213,6214 |
10-12 | LH2 | 25.0 | 4.750 | 0.450 | 0.400 | -4.973 | 17.26 | 2.246 | 14.16 | +1 | 30000 | 29590/212 | 3:20 | 301.0 | 6221-6225 |
Kinematic group 10 total time : 29.615 hrs (1.23396 days)
Kinematic Group 11: Q2 = 5 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
11-1 | LD2 | 25.0 | 5.000 | 0.500 | 0.700 | -5.270 | 17.21 | 3.729 | 15.64 | +1 | 20000 | 21647/136.63 | 4:22 | 393.6 | 6419- 6422 (6418, 6420 junk 6419 may not be ok) |
11-2 | DUM | 40.0 | 5.000 | 0.500 | 0.700 | -5.270 | 17.21 | 3.729 | 15.64 | +1 | 3000 | 3353/112.3 | 0:40 | 98.4 | 6423, 25, 26 |
11-3 | LD2 | 25.0 | 5.000 | 0.500 | 0.600 | -5.270 | 17.21 | 3.195 | 15.64 | +1 | 20000 | 21180/147.5 | 3:01 | 272.6 | Note: Rate test setting. Determine beam current based on pTRIG1. Then take 10k at 1/2 and 3/4 beam current in addition to normal 20k. 40uA=Run 6429,30,31. 30uA=Run 6432. 20uA=Run 6433. |
11-4 | DUM | 40.0 | 5.000 | 0.500 | 0.600 | -5.270 | 17.21 | 3.195 | 15.64 | +1 | 3000 | 3175/115.7 | 0:28 | 68.2 | 6427, 28 |
11-5 | LD2 | 25.0 | 5.000 | 0.500 | 0.500 | -5.270 | 17.21 | 2.662 | 15.64 | +1 | 30000 | 29040/163.8 | 3:19 | 299.4 | 6434, 6435, 6436 |
11-6 | DUM | 40.0 | 5.000 | 0.500 | 0.500 | -5.270 | 17.21 | 2.662 | 15.64 | +1 | 3000 | 2887/101.1 | 0:31 | 74.8 | 6439, 6440 |
11-7 | LD2 | 25.0 | 5.000 | 0.500 | 0.400 | -5.270 | 17.21 | 2.128 | 15.64 | +1 | 30000 | 31541/181.6 | 2:30 | 225.7 | 6443-6448 (9.5 uA)) |
11-8 | DUM | 40.0 | 5.000 | 0.500 | 0.400 | -5.270 | 17.21 | 2.128 | 15.64 | +1 | 3000 | 3103/116.3 | 0:23 | 56.4 | 6441, 6442 |
Kinematic group 11 total time : 15.3056 hrs (0.637731 days)
Kinematic Group 12: Q2 = 5 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
12-1 | LD2 | 50.0 | 5.000 | 0.500 | 0.700 | -5.270 | 17.21 | -3.729 | 15.64 | -1 | 20000 | 21547/222.8 | 4:47 | 861.1 | 6451,6452,6453 (6449+6450,check) |
12-2 | DUM | 40.0 | 5.000 | 0.500 | 0.700 | -5.270 | 17.21 | -3.729 | 15.64 | -1 | 1683 | 2707/188.9 | 1:29 | 215.3 | 6454, 6455 |
12-3 | LD2 | 50.0 | 5.000 | 0.500 | 0.600 | -5.270 | 17.21 | -3.195 | 15.64 | -1 | 20000 | 21660/246.7 | 2:49 | 508.6 | 6459 (65 uA), 6460 (65 uA), 6461 (55 uA) Note: Rate test setting 6462 (48 uA), 6463 (35 uA), 6464 (35uA) |
12-4 | DUM | 40.0 | 5.000 | 0.500 | 0.600 | -5.270 | 17.21 | -3.195 | 15.64 | -1 | 1678 | 1699/106.5 | 0:52 | 127.2 | 6456 |
12-5 | LD2 | 50.0 | 5.000 | 0.500 | 0.500 | -5.270 | 17.21 | -2.662 | 15.64 | -1 | 30000 | 29600/287.9 | 2:45 | 495.8 | 6465, 6466, 6467 |
12-6 | DUM | 40.0 | 5.000 | 0.500 | 0.500 | -5.270 | 17.21 | -2.662 | 15.64 | -1 | 2513 | 2854/154.7 | 0:51 | 124.0 | 6468, 6469 (both with PS4=7); 6470 (PS4=5) |
12-7 | LD2 | 50.0 | 5.000 | 0.500 | 0.400 | -5.270 | 17.21 | -2.128 | 15.64 | -1 | 30000 | 30893/283.3 | 1:55 | 348.0 | 6473, 6474 (both had PS4 too high); 6475-6479 (ongoing) |
12-8 | DUM | 40.0 | 5.000 | 0.500 | 0.400 | -5.270 | 17.21 | -2.128 | 15.64 | -1 | 2510 | 2642/141.6 | 0:36 | 87.0 | 6471, 6472 |
Kinematic group 12 total time : 16.1401 hrs (0.672505 days)
At end of setting 12, take electron singles in SHMS.
Settings: Theta_SHMS = 9 degrees, P_SHMS = -7 GeV. LD2 target. Set PS1 to keep rates at 2 KHz or smaller. All other prescales set to -1 (take SHMS 3/4 only). Take 1 run at high current (60-70 uA if possible) - get at least 100k electrons (more is better). Take 2 more runs: one at 2/3 max current, another at 1/3 of max current. Get at least 100k good electrons.
6482 (60 uA, 134K good electrons,Ptrig1=825K), 6483 (40 uA, 172 K good e-, PTrig1 = 540K), 6484 (30 uA, 164K good e-, pTrig1=400K), 6485 (20 uA, 160K good e-, pTrig1=266K)
Kinematic Group 13: Q2 = 4.764 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
13-1 | LD2 | 50.0 | 4.764 | 0.550 | 0.700 | -5.983 | 15.75 | -3.229 | 18.55 | -1 | 20000 | 22135/185 | 5:04 | 914.4 | 6290-6291 |
13-2 | DUM | 40.0 | 4.764 | 0.550 | 0.700 | -5.983 | 15.75 | -3.229 | 18.55 | -1 | 3707 | 5113/301 | 3:29 | 503.5 | 6288-6289 |
13-3 | LH2 | 50.0 | 4.764 | 0.550 | 0.700 | -5.983 | 15.75 | -3.229 | 18.55 | -1 | 20000 | 20916/351 | 11:11 | 2013.8 | 6285-6287 |
13-4 | LD2 | 50.0 | 4.764 | 0.550 | 0.600 | -5.983 | 15.75 | -2.767 | 18.55 | -1 | 20000 | 20330/183 | 3:03 | 549.4 | 6292- 6293 |
13-5 | DUM | 40.0 | 4.764 | 0.550 | 0.600 | -5.983 | 15.75 | -2.767 | 18.55 | -1 | 3571 | 5096/277 | 2:01 | 292.3 | 6294-6296 |
13-6 | LH2 | 50.0 | 4.764 | 0.550 | 0.600 | -5.983 | 15.75 | -2.767 | 18.55 | -1 | 20000 | 21827/338.9 | 6:29 | 1169.1 | 6297-6299 |
13-7 | LD2 | 50.0 | 4.764 | 0.550 | 0.500 | -5.983 | 15.75 | -2.304 | 18.55 | -1 | 30000 | 35406/305.7 | 3:00 | 541.7 | 6306-6308 |
13-8 | DUM | 40.0 | 4.764 | 0.550 | 0.500 | -5.983 | 15.75 | -2.304 | 18.55 | -1 | 5231 | 5481/3204 | 1:57 | 281.9 | 6304-6305 |
13-9 | LH2 | 50.0 | 4.764 | 0.550 | 0.500 | -5.983 | 15.75 | -2.304 | 18.55 | -1 | 30000 | 30990/503.82 | 6:15 | 1127.8 | 6300-6302 |
13-10 | LD2 | 50.0 | 4.764 | 0.550 | 0.400 | -5.983 | 15.75 | -1.842 | 18.55 | -1 | 30000 | 30511/255.5 | 2:07 | 383.6 | 6348- 6351 |
13-11 | DUM | 40.0 | 4.764 | 0.550 | 0.400 | -5.983 | 15.75 | -1.842 | 18.55 | -1 | 5161 | 5980/287.3 | 1:22 | 197.2 | 6352-6354 |
13-12 | LH2 | 50.0 | 4.764 | 0.550 | 0.400 | -5.983 | 15.75 | -1.842 | 18.55 | -1 | 30000 | 31862/598 | 4:22 | 788.7 | 6355-6358 |
Kinematic group 13 total time : 50.455 hrs (2.10229 days)
Kinematic Group 14: Q2 = 4.764 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
14-1 | LD2 | 25.0 | 4.764 | 0.550 | 0.700 | -5.983 | 15.75 | 3.229 | 18.55 | +1 | 20000 | 23833/127.8 | 4:42 | 424.2 | 6309-6310 (rfo = 397.05) |
14-2 | DUM | 40.0 | 4.764 | 0.550 | 0.700 | -5.983 | 15.75 | 3.229 | 18.55 | +1 | 3030 | 3291/101 | 1:20 | 194.2 | 6311(rfo = 397.05)- 6312 ( rfo = 399) |
14-3 | LH2 | 25.0 | 4.764 | 0.550 | 0.700 | -5.983 | 15.75 | 3.229 | 18.55 | +1 | 20000 | 21818/156 | 8:37 | 777.0 | 6313-6314 |
14-4 | LD2 | 25.0 | 4.764 | 0.550 | 0.600 | -5.983 | 15.75 | 2.767 | 18.55 | +1 | 20000 | 22283/115.9 | 3:18 | 297.1 | 6322-6323 |
14-5 | DUM | 40.0 | 4.764 | 0.550 | 0.600 | -5.983 | 15.75 | 2.767 | 18.55 | +1 | 3051 | 5473/164.2 | 0:57 | 136.9 | 6317-6318 |
14-6 | LH2 | 25.0 | 4.764 | 0.550 | 0.600 | -5.983 | 15.75 | 2.767 | 18.55 | +1 | 20000 | 21088/161 | 6:05 | 547.6 | 6315-6316 |
14-7 | LD2 | 25.0 | 4.764 | 0.550 | 0.500 | -5.983 | 15.75 | 2.304 | 18.55 | +1 | 30000 | 31169/154.5 | 3:38 | 327.9 | 6325-6327 (6324 check) |
14-8 | DUM | 40.0 | 4.764 | 0.550 | 0.500 | -5.983 | 15.75 | 2.304 | 18.55 | +1 | 4605 | 5088/156 | 1:03 | 151.9 | 6328 - 6329 |
14-9 | LH2 | 25.0 | 4.764 | 0.550 | 0.500 | -5.983 | 15.75 | 2.304 | 18.55 | +1 | 30000 | 32578/242 | 6:45 | 607.7 | 6331 - 6332 |
14-10 | LD2 | 25.0 | 4.764 | 0.550 | 0.400 | -5.983 | 15.75 | 1.842 | 18.55 | +1 | 30000 | 32516.8/191.9 | 2:45 | 248.8 | 6339(v.short)6340-6344, 6347 |
14-11 | DUM | 40.0 | 4.764 | 0.550 | 0.400 | -5.983 | 15.75 | 1.842 | 18.55 | +1 | 4625 | 4915.2/172.2 | 0:48 | 115.7 | 6345-6346 |
14-12 | LH2 | 25.0 | 4.764 | 0.550 | 0.400 | -5.983 | 15.75 | 1.842 | 18.55 | +1 | 30000 | 31659/333 | 5:08 | 463.0 | 6334-6338(5runs) |
Kinematic group 14 total time : 45.194 hrs (1.88308 days)
Kinematic Group 15: Q2 = 4.775 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
15-1 | LD2 | 25.0 | 4.775 | 0.600 | 0.700 | -6.358 | 15.30 | 2.966 | 20.58 | +1 | 20000 | 42099/233.6,20327/113.16 | 6:03 | 545.3 | 6387-6388,6397-6398 |
15-2 | DUM | 40.0 | 4.775 | 0.600 | 0.700 | -6.358 | 15.30 | 2.966 | 20.58 | +1 | 3000 | 3023.9/94.0 | 0:56 | 136.3 | 6385 (bad!), 6386,6389 |
15-3 | LD2 | 25.0 | 4.775 | 0.600 | 0.600 | -6.358 | 15.30 | 2.541 | 20.58 | +1 | 20000 | 29891/169 | 4:16 | 384.6 | 6393-6396 |
15-4 | DUM | 40.0 | 4.775 | 0.600 | 0.600 | -6.358 | 15.30 | 2.541 | 20.58 | +1 | 3000 | 3164.9/100.2 | 0:40 | 96.1 | 6390-6391 |
15-5 | LD2 | 25.0 | 4.775 | 0.600 | 0.500 | -6.358 | 15.30 | 2.116 | 20.58 | +1 | 30000 | 32699/195.7 | 4:43 | 425.5 | 6399-6404 (6401=junk, 6400 ~junk 6399 low count |
15-6 | DUM | 40.0 | 4.775 | 0.600 | 0.500 | -6.358 | 15.30 | 2.116 | 20.58 | +1 | 3000 | 3165.8/116.0 | 0:44 | 106.4 | 6405,6406 |
15-7 | LD2 | 25.0 | 4.775 | 0.600 | 0.400 | -6.358 | 15.30 | 1.691 | 20.58 | +1 | 30000 | 32018 /210.8 | 3:36 | 324.2 | 6410-6413,6415-6417 |
15-8 | DUM | 40.0 | 4.775 | 0.600 | 0.400 | -6.358 | 15.30 | 1.691 | 20.58 | +1 | 3000 | 3165.8/130.0 | 0:33 | 81.1 | 6407,6408 |
Kinematic group 15 total time : 21.5776 hrs (0.899065 days)
Kinematic Group 16: Q2 = 4.775 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
16-1 | LD2 | 50.0 | 4.775 | 0.600 | 0.700 | -6.358 | 15.30 | -2.966 | 20.58 | -1 | 20000 | 23599/242 | 6:27 | 1161.7 | 6359-6360 |
16-2 | DUM | 40.0 | 4.775 | 0.600 | 0.700 | -6.358 | 15.30 | -2.966 | 20.58 | -1 | 1683 | 2719/ 192 | 2:01 | 290.4 | 6363-6365(61- junk, 62- likely junk) |
16-3 | LD2 | 50.0 | 4.775 | 0.600 | 0.600 | -6.358 | 15.30 | -2.541 | 20.58 | -1 | 20000 | 24855/237 | 3:55 | 706.0 | 6367 -6370 (69junk) |
16-4 | DUM | 40.0 | 4.775 | 0.600 | 0.600 | -6.358 | 15.30 | -2.541 | 20.58 | -1 | 3000 | 3057/185 | 1:13 | 176.5 | 6371 - 6372 |
16-5 | LD2 | 50.0 | 4.775 | 0.600 | 0.500 | -6.358 | 15.30 | -2.116 | 20.58 | -1 | 30000 | 30732.2/309.3 | 3:53 | 701.3 | 6375-6377 |
16-6 | DUM | 40.0 | 4.775 | 0.600 | 0.500 | -6.358 | 15.30 | -2.116 | 20.58 | -1 | 3000 | 3170/178 | 1:13 | 175.3 | 6373-6374 |
16-7 | LD2 | 50.0 | 4.775 | 0.600 | 0.400 | -6.358 | 15.30 | -1.691 | 20.58 | -1 | 30000 | 30111.2/285.9 | 2:46 | 499.3 | 6378-6381 |
16-8 | DUM | 40.0 | 4.775 | 0.600 | 0.400 | -6.358 | 15.30 | -1.691 | 20.58 | -1 | 3000 | 3119.0/184.3 | 0:52 | 124.8 | 6382-6383 |
total time : 233.766 hrs (9.74024 days)
Kinematic Group 17: Q2 = 5.5 GeV2, x = 0.5 (Continued in Kin 35-36)
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
17-1 | LD2 | 50.0 | 5.500 | 0.500 | 0.700 | -4.736 | 19.05 | -4.102 | 14.17 | -1 | 20000 | 21603/363 | 6:33 | 1181.9 | 6524-6526 |
17-2 | DUM | 40.0 | 5.500 | 0.500 | 0.700 | -4.736 | 19.05 | -4.102 | 14.17 | -1 | 1684 | 2003/195 | 2:03 | 295.5 | 6522,6523 |
17-3 | LD2 | 25.0 | 5.500 | 0.500 | 0.700 | -4.736 | 19.05 | 4.102 | 14.17 | +1 | 20000 | 20888/198 | 5:56 | 534.6 | 6518-6520 |
17-4 | DUM | 40.0 | 5.500 | 0.500 | 0.700 | -4.736 | 19.05 | 4.102 | 14.17 | +1 | 1654 | 1971/102 | 0:55 | 133.7 | 6521 |
Kinematic group 17 total time : 15.4866 hrs (0.645276 days)
Kinematic Group 18: Q2 = 5.5 GeV2, x = 0.5 (Continued in Kin 35-36)
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
18-1 | LD2 | 25.0 | 5.500 | 0.500 | 0.600 | -4.736 | 19.05 | 3.515 | 14.17 | +1 | 20000 | 22033/211 | 4:04 | 367.4 | 6535-6536 |
18-2 | DUM | 40.0 | 5.500 | 0.500 | 0.600 | -4.736 | 19.05 | 3.515 | 14.17 | +1 | 1655 | 2050/112.4 | 0:38 | 91.8 | 6533, 6534 |
18-3 | LD2 | 50.0 | 5.500 | 0.500 | 0.600 | -4.736 | 19.05 | -3.515 | 14.17 | -1 | 20000 | 21887/376 | 3:49 | 689.8 | 6527,6528,6529 |
18-4 | DUM | 40.0 | 5.500 | 0.500 | 0.600 | -4.736 | 19.05 | -3.515 | 14.17 | -1 | 1678 | 1977/186 | 1:11 | 172.5 | 6531,6532 |
Kinematic group 18 total time : 9.75011 hrs (0.406254 days)
Kinematic Group 19: Q2 = 5.5 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
19-1 | LD2 | 50.0 | 5.500 | 0.500 | 0.500 | -4.736 | 19.05 | -2.928 | 14.17 | -1 | 30000 | n | 3:42 | 666.7 | NN |
19-2 | DUM | 40.0 | 5.500 | 0.500 | 0.500 | -4.736 | 19.05 | -2.928 | 14.17 | -1 | 2513 | n | 1:09 | 166.7 | NN |
19-3 | LD2 | 25.0 | 5.500 | 0.500 | 0.500 | -4.736 | 19.05 | 2.928 | 14.17 | +1 | 30000 | n | 4:27 | 401.5 | NN |
19-4 | DUM | 40.0 | 5.500 | 0.500 | 0.500 | -4.736 | 19.05 | 2.928 | 14.17 | +1 | 2485 | n | 0:41 | 100.4 | NN |
Kinematic group 19 total time : 10.0194 hrs (0.417474 days)
Kinematic Group 20: Q2 = 5.5 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
20-1 | LD2 | 25.0 | 5.500 | 0.500 | 0.400 | -4.736 | 19.05 | 2.341 | 14.17 | +1 | 30000 | n | 3:20 | 301.2 | NN |
20-2 | DUM | 40.0 | 5.500 | 0.500 | 0.400 | -4.736 | 19.05 | 2.341 | 14.17 | +1 | 2486 | n | 0:31 | 75.3 | NN |
20-3 | LD2 | 50.0 | 5.500 | 0.500 | 0.400 | -4.736 | 19.05 | -2.341 | 14.17 | -1 | 30000 | n | 2:34 | 464.5 | NN |
20-4 | DUM | 40.0 | 5.500 | 0.500 | 0.400 | -4.736 | 19.05 | -2.341 | 14.17 | -1 | 2510 | n | 0:48 | 116.1 | NN |
Kinematic group 20 total time : 7.2565 hrs (0.302354 days)
Kinematic Group 21: Q2 = 5.499 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
21-1 | LD2 | 50.0 | 5.499 | 0.550 | 0.700 | -5.270 | 18.05 | -3.728 | 16.29 | -1 | 20000 | n | 8:05 | 1457.8 | NN |
21-2 | DUM | 40.0 | 5.499 | 0.550 | 0.700 | -5.270 | 18.05 | -3.728 | 16.29 | -1 | 1684 | n | 2:31 | 364.4 | NN |
21-3 | LD2 | 25.0 | 5.499 | 0.550 | 0.700 | -5.270 | 18.05 | 3.728 | 16.29 | +1 | 20000 | n | 7:22 | 663.9 | NN |
21-4 | DUM | 40.0 | 5.499 | 0.550 | 0.700 | -5.270 | 18.05 | 3.728 | 16.29 | +1 | 1653 | n | 1:09 | 166.0 | NN |
Kinematic group 21 total time : 19.1588 hrs (0.798284 days)
Kinematic Group 22: Q2 = 5.499 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
22-1 | LD2 | 25.0 | 5.499 | 0.550 | 0.600 | -5.270 | 18.05 | 3.195 | 16.29 | +1 | 20000 | n | 5:05 | 458.9 | NN |
22-2 | DUM | 40.0 | 5.499 | 0.550 | 0.600 | -5.270 | 18.05 | 3.195 | 16.29 | +1 | 1654 | n | 0:47 | 114.7 | NN |
22-3 | LD2 | 50.0 | 5.499 | 0.550 | 0.600 | -5.270 | 18.05 | -3.195 | 16.29 | -1 | 20000 | n | 4:46 | 858.2 | NN |
22-4 | DUM | 40.0 | 5.499 | 0.550 | 0.600 | -5.270 | 18.05 | -3.195 | 16.29 | -1 | 1678 | n | 1:29 | 214.6 | NN |
Kinematic group 22 total time : 12.1535 hrs (0.506396 days)
Kinematic Group 23: Q2 = 5.499 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
23-1 | LD2 | 50.0 | 5.499 | 0.550 | 0.500 | -5.270 | 18.05 | -2.661 | 16.29 | -1 | 30000 | n | 4:38 | 834.0 | NN |
23-2 | DUM | 40.0 | 5.499 | 0.550 | 0.500 | -5.270 | 18.05 | -2.661 | 16.29 | -1 | 2512 | n | 1:26 | 208.5 | NN |
23-3 | LD2 | 25.0 | 5.499 | 0.550 | 0.500 | -5.270 | 18.05 | 2.661 | 16.29 | +1 | 30000 | n | 5:35 | 502.6 | NN |
23-4 | DUM | 40.0 | 5.499 | 0.550 | 0.500 | -5.270 | 18.05 | 2.661 | 16.29 | +1 | 2483 | n | 0:52 | 125.6 | NN |
Kinematic group 23 total time : 12.5379 hrs (0.522411 days)
Kinematic Group 24: Q2 = 5.499 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
24-1 | LD2 | 25.0 | 5.499 | 0.550 | 0.400 | -5.270 | 18.05 | 2.127 | 16.29 | +1 | 30000 | n | 4:12 | 378.0 | NN |
24-2 | DUM | 40.0 | 5.499 | 0.550 | 0.400 | -5.270 | 18.05 | 2.127 | 16.29 | +1 | 2484 | n | 0:39 | 94.5 | NN |
24-3 | LD2 | 50.0 | 5.499 | 0.550 | 0.400 | -5.270 | 18.05 | -2.127 | 16.29 | -1 | 30000 | n | 3:14 | 583.4 | NN |
24-4 | DUM | 40.0 | 5.499 | 0.550 | 0.400 | -5.270 | 18.05 | -2.127 | 16.29 | -1 | 2509 | n | 1:00 | 145.8 | NN |
Kinematic group 24 total time : 9.11064 hrs (0.37961 days)
Kinematic Group 25: Q2 = 5.5 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
25-1 | LD2 | 50.0 | 5.500 | 0.600 | 0.700 | -5.714 | 17.33 | -3.418 | 18.30 | -1 | 20000 | n | 10:17 | 1853.6 | NN |
25-2 | DUM | 40.0 | 5.500 | 0.600 | 0.700 | -5.714 | 17.33 | -3.418 | 18.30 | -1 | 1683 | n | 3:13 | 463.4 | NN |
25-3 | LD2 | 25.0 | 5.500 | 0.600 | 0.700 | -5.714 | 17.33 | 3.418 | 18.30 | +1 | 20000 | n | 9:28 | 852.4 | NN |
25-4 | DUM | 40.0 | 5.500 | 0.600 | 0.700 | -5.714 | 17.33 | 3.418 | 18.30 | +1 | 1652 | n | 1:28 | 213.1 | NN |
Kinematic group 25 total time : 24.4658 hrs (1.01941 days)
Kinematic Group 26: Q2 = 5.5 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
26-1 | LD2 | 25.0 | 5.500 | 0.600 | 0.600 | -5.714 | 17.33 | 2.928 | 18.30 | +1 | 20000 | n | 6:35 | 593.0 | NN |
26-2 | DUM | 40.0 | 5.500 | 0.600 | 0.600 | -5.714 | 17.33 | 2.928 | 18.30 | +1 | 1653 | n | 1:01 | 148.2 | NN |
26-3 | LD2 | 50.0 | 5.500 | 0.600 | 0.600 | -5.714 | 17.33 | -2.928 | 18.30 | -1 | 20000 | n | 6:07 | 1102.2 | NN |
26-4 | DUM | 40.0 | 5.500 | 0.600 | 0.600 | -5.714 | 17.33 | -2.928 | 18.30 | -1 | 1678 | n | 1:54 | 275.5 | NN |
Kinematic group 26 total time : 15.6546 hrs (0.652274 days)
Kinematic Group 27: Q2 = 5.5 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
27-1 | LD2 | 50.0 | 5.500 | 0.600 | 0.500 | -5.714 | 17.33 | -2.439 | 18.30 | -1 | 30000 | n | 5:59 | 1077.8 | NN |
27-2 | DUM | 40.0 | 5.500 | 0.600 | 0.500 | -5.714 | 17.33 | -2.439 | 18.30 | -1 | 2512 | n | 1:52 | 269.4 | NN |
27-3 | LD2 | 25.0 | 5.500 | 0.600 | 0.500 | -5.714 | 17.33 | 2.439 | 18.30 | +1 | 30000 | n | 7:13 | 650.8 | NN |
27-4 | DUM | 40.0 | 5.500 | 0.600 | 0.500 | -5.714 | 17.33 | 2.439 | 18.30 | +1 | 2482 | n | 1:07 | 162.7 | NN |
Kinematic group 27 total time : 16.2192 hrs (0.675802 days)
Kinematic Group 28: Q2 = 5.5 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
28-1 | LD2 | 25.0 | 5.500 | 0.600 | 0.400 | -5.714 | 17.33 | 1.950 | 18.30 | +1 | 30000 | n | 5:27 | 491.0 | NN |
28-2 | DUM | 40.0 | 5.500 | 0.600 | 0.400 | -5.714 | 17.33 | 1.950 | 18.30 | +1 | 2483 | n | 0:51 | 122.8 | NN |
28-3 | LD2 | 50.0 | 5.500 | 0.600 | 0.400 | -5.714 | 17.33 | -1.950 | 18.30 | -1 | 30000 | n | 4:12 | 757.3 | NN |
28-4 | DUM | 40.0 | 5.500 | 0.600 | 0.400 | -5.714 | 17.33 | -1.950 | 18.30 | -1 | 2509 | n | 1:18 | 189.3 | NN |
Kinematic group 28 total time : 11.8304 hrs (0.492934 days)
Kinematic Group 29: Q2 = 5.63 GeV2, x = 0.65
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
29-1 | LD2 | 50.0 | 5.630 | 0.650 | 0.700 | -5.983 | 17.14 | -3.229 | 19.85 | -1 | 20000 | n | 14:27 | 2601.0 | NN |
29-2 | DUM | 40.0 | 5.630 | 0.650 | 0.700 | -5.983 | 17.14 | -3.229 | 19.85 | -1 | 1683 | n | 4:30 | 650.3 | NN |
29-3 | LD2 | 25.0 | 5.630 | 0.650 | 0.700 | -5.983 | 17.14 | 3.229 | 19.85 | +1 | 20000 | n | 13:24 | 1206.2 | NN |
29-4 | DUM | 40.0 | 5.630 | 0.650 | 0.700 | -5.983 | 17.14 | 3.229 | 19.85 | +1 | 1651 | n | 2:05 | 301.6 | NN |
Kinematic group 29 total time : 34.4627 hrs (1.43594 days)
Kinematic Group 30: Q2 = 5.63 GeV2, x = 0.65
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
30-1 | LD2 | 25.0 | 5.630 | 0.650 | 0.600 | -5.983 | 17.14 | 2.767 | 19.85 | +1 | 20000 | n | 9:21 | 842.9 | NN |
30-2 | DUM | 40.0 | 5.630 | 0.650 | 0.600 | -5.983 | 17.14 | 2.767 | 19.85 | +1 | 1653 | n | 1:27 | 210.7 | NN |
30-3 | LD2 | 50.0 | 5.630 | 0.650 | 0.600 | -5.983 | 17.14 | -2.767 | 19.85 | -1 | 20000 | n | 8:39 | 1558.0 | NN |
30-4 | DUM | 40.0 | 5.630 | 0.650 | 0.600 | -5.983 | 17.14 | -2.767 | 19.85 | -1 | 1678 | n | 2:42 | 389.5 | NN |
Kinematic group 30 total time : 22.1895 hrs (0.924563 days)
Kinematic Group 31: Q2 = 5.63 GeV2, x = 0.65
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
31-1 | LD2 | 50.0 | 5.630 | 0.650 | 0.500 | -5.983 | 17.14 | -2.304 | 19.85 | -1 | 30000 | n | 8:30 | 1530.1 | NN |
31-2 | DUM | 40.0 | 5.630 | 0.650 | 0.500 | -5.983 | 17.14 | -2.304 | 19.85 | -1 | 2511 | n | 2:39 | 382.5 | NN |
31-3 | LD2 | 25.0 | 5.630 | 0.650 | 0.500 | -5.983 | 17.14 | 2.304 | 19.85 | +1 | 30000 | n | 10:17 | 926.0 | NN |
31-4 | DUM | 40.0 | 5.630 | 0.650 | 0.500 | -5.983 | 17.14 | 2.304 | 19.85 | +1 | 2481 | n | 1:36 | 231.5 | NN |
Kinematic group 31 total time : 23.053 hrs (0.960542 days)
Kinematic Group 32: Q2 = 5.63 GeV2, x = 0.65
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs |
32-1 | LD2 | 25.0 | 5.630 | 0.650 | 0.400 | -5.983 | 17.14 | 1.842 | 19.85 | +1 | 30000 | n | 7:46 | 700.0 | NN |
32-2 | DUM | 40.0 | 5.630 | 0.650 | 0.400 | -5.983 | 17.14 | 1.842 | 19.85 | +1 | 2482 | n | 1:12 | 175.0 | NN |
32-3 | LD2 | 50.0 | 5.630 | 0.650 | 0.400 | -5.983 | 17.14 | -1.842 | 19.85 | -1 | 30000 | n | 5:59 | 1078.3 | NN |
32-4 | DUM | 40.0 | 5.630 | 0.650 | 0.400 | -5.983 | 17.14 | -1.842 | 19.85 | -1 | 2508 | n | 1:52 | 269.6 | NN |
total time : 260.204 hrs (10.8418 days)
Kinematic Group 33: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.65
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
33-1 | LD2 | 50.0 | 5.5 | 0.650 | 0.700 | -5.714 | 17.65 | -3.150 | 19.94 | -1 | 20000 | 21130/423.2 | 3:16 | 588.7 | 7593-7597 | < 500 |
33-2 | DUM | 40.0 | 5.5 | 0.650 | 0.700 | -5.714 | 17.65 | -3.150 | 19.94 | -1 | 2000 | 2143/283.4 | 2:00 | 294.4 | 7600-7604 (7599Junk) | N/A |
33-3 | LD2 | 50.0 | 5.5 | 0.650 | 0.600 | -5.714 | 17.65 | -2.699 | 19.94 | -1 | 20000 | 21652/474.2 | 2:41 | 483.7 | 7608-7610 | < 500 |
33-4 | DUM | 40.0 | 5.5 | 0.650 | 0.600 | -5.714 | 17.65 | -2.699 | 19.94 | -1 | 2000 | 2082/256.8 | 1:41 | 241.9 | 7605-7607 | N/A |
33-5 | LD2 | 50.0 | 5.5 | 0.650 | 0.500 | -5.714 | 17.65 | -2.248 | 19.94 | -1 | 30000 | 25768/718.2 | 3:52 | 695.4 | 7611-7616 | < 500 |
33-6 | DUM | 40.0 | 5.5 | 0.650 | 0.500 | -5.714 | 17.65 | -2.248 | 19.94 | -1 | 3000 | 3421/398.8 | 2:25 | 347.7 | 7617-7619 | N/A |
33-7 | LD2 | 40.0 | 5.5 | 0.650 | 0.400 | -5.714 | 17.65 | -1.797 | 19.94 | -1 | 30000 | 31751/1075.7 | 5:25 | 768.2 | 7625-7634 | < 500 |
33-8 | DUM | 40.0 | 5.5 | 0.650 | 0.400 | -5.714 | 17.65 | -1.797 | 19.94 | -1 | 3000 | 3099/379.8 | 2:42 | 384.1 | 7620-7623 | N/A |
Kinematic group 33 total time : 24 hrs (1 day)
Kinematic Group 34: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.65
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
34-1 | LD2 | 50.0 | 5.5 | 0.650 | 0.700 | -5.714 | 17.65 | +3.150 | 19.94 | +1 | 20000 | 20988/199.7 | 1:53 | 337.6 | 7635-7637 | 100 |
34-2 | DUM | 40.0 | 5.5 | 0.650 | 0.700 | -5.714 | 17.65 | +3.150 | 19.94 | +1 | 2000 | 2035/136.6 | 1:10 | 168.8 | 7638-7639 | N/A |
34-3 | LD2 | 50.0 | 5.5 | 0.650 | 0.600 | -5.714 | 17.65 | +2.699 | 19.94 | +1 | 20000 | 20342/279.2 | 1:40 | 298.0 | 7642-9645 | 180 |
34-4 | DUM | 40.0 | 5.5 | 0.650 | 0.600 | -5.714 | 17.65 | +2.699 | 19.94 | +1 | 2000 | 1959/136.1 | 1:02 | 149.0 | 7640-7641 | N/A |
34-5 | LD2 | 35.0 | 5.5 | 0.650 | 0.500 | -5.714 | 17.65 | +2.248 | 19.94 | +1 | 30000 | 30214/482.6 | 3:40 | 379.2 | 7646-7652 | 365 |
34-6 | DUM | 40.0 | 5.5 | 0.650 | 0.500 | -5.714 | 17.65 | +2.248 | 19.94 | +1 | 3000 | 3060/242.7 | 1:19 | 189.6 | 7654-7655 | N/A |
34-7 | LD2 | 14.5 | 5.5 | 0.650 | 0.400 | -5.714 | 17.65 | +1.797 | 19.94 | +1 | 30000 | 30468/329.8 | 10:38 | 555.0 | 7661-7670 (~13uA all) | 500 |
34-8 | DUM | 40.0 | 5.5 | 0.650 | 0.400 | -5.714 | 17.65 | +1.797 | 19.94 | +1 | 3000 | 3654/341 | 1:55 | 277.5 | 7657-7660 (56 ?) | N/A |
Kinematic group 34 total time : 23:17 hrs (0.97 days)
Kinematic Group 35: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
35-1 | LD2 | 50.0 | 5.5 | 0.500 | 0.600 | -4.357 | 20.24 | -3.514 | 13.81 | -1 | 20000 | 22042/332.2 | 1:46 | 317.7 | 7671-7672 | 440 |
35-2 | DUM | 40.0 | 5.5 | 0.500 | 0.600 | -4.357 | 20.24 | -3.514 | 13.81 | -1 | 2000 | 2024/190.9 | 1:06 | 158.9 | 7673-7674 | N/A |
35-3 | LD2 | 45.8 | 5.5 | 0.500 | 0.500 | -4.357 | 20.24 | -2.928 | 13.81 | -1 | 30000 | 29798/413.9 | 2:47 | 456.5 | 7679-7682 | 500 |
35-4 | DUM | 40.0 | 5.5 | 0.500 | 0.500 | -4.357 | 20.24 | -2.928 | 13.81 | -1 | 3000 | 3316/301.6 | 1:35 | 228.2 | 7675-7677 | N/A |
35-5 | LD2 | 20.6 | 5.5 | 0.500 | 0.400 | -4.357 | 20.24 | -2.341 | 13.81 | -1 | 30000 | 32108/401 | 6:46 | 503.5 | 7684-7692 (91 Junk) | 500 |
35-6 | DUM | 40.0 | 5.5 | 0.500 | 0.400 | -4.357 | 20.24 | -2.341 | 13.81 | -1 | 3000 | 4074/319.7 | 1:45 | 251.8 | 7694-7695 | N/A |
Kinematic group 35 total time : 15.75 hours (0.66 days)
Kinematic Group 36: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.5
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
36-1 | LD2 | 50.0 | 5.5 | 0.500 | 0.600 | -4.357 | 20.24 | +3.514 | 13.81 | +1 | 20000 | 21578/176.8 | 1:05 | 195.8 | 7699 (rfo 400.08), 7702-7703-short(rfo 398.1) | 450 |
36-2 | DUM | 40.0 | 5.5 | 0.500 | 0.600 | -4.357 | 20.24 | +3.514 | 13.81 | +1 | 2000 | 2591/141.2 | 0:41 | 97.9 | 7697-7698 | N/A |
36-3 | LD2 | 20.3 | 5.5 | 0.500 | 0.500 | -4.357 | 20.24 | +2.928 | 13.81 | +1 | 30000 | 31749/263.2 | 4:09 | 303.6 | 7706-7710 | 500 |
36-4 | DUM | 40.0 | 5.5 | 0.500 | 0.500 | -4.357 | 20.24 | +2.928 | 13.81 | +1 | 3000 | 3340/173.1 | 1:03 | 151.8 | 7711-7712 | N/A |
36-5 | LD2 | 8.9 | 5.5 | 0.500 | 0.400 | -4.357 | 20.24 | +2.341 | 13.81 | +1 | 30000 | 29406/225.1 | 11:21 | 363.8 | 7716-7722 | 500 |
36-6 | DUM | 40.0 | 5.5 | 0.500 | 0.400 | -4.357 | 20.24 | +2.341 | 13.81 | +1 | 3000 | 3075/ 154.9 | 1:15 | 181.9 | 7713-7715 | N/A |
Kinematic group 36 total time : 19.57 hours (0.82 days)
Kinematic Group 37: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
37-1 | LH2 | 50.0 | 5.5 | 0.600 | 0.900 | -5.270 | 18.51 | -4.452 | 17.77 | -1 | N/A | 0.34 /107.7 | 0:33 | 100.0 | 7723 | <500 |
37-2 | LD2 | 50.0 | 5.5 | 0.600 | 0.900 | -5.270 | 18.51 | -4.452 | 17.77 | -1 | N/A | 0.34/103.5 | 0:33 | 100.0 | 7724 | <500 |
37-3 | DUM | 40.0 | 5.5 | 0.600 | 0.900 | -5.270 | 18.51 | -4.452 | 17.77 | -1 | N/A | 0.21/52.7 | 0:21 | 50.0 | 7725 | N/A |
37-4 | LH2 | 50.0 | 5.5 | 0.600 | 0.650 | -5.270 | 18.51 | -3.214 | 17.77 | -1 | 10000 | 10151/313.9 | 2:39 | 476.7 | 7730, 7733 | <500 |
37-5 | LD2 | 50.0 | 5.5 | 0.600 | 0.650 | -5.270 | 18.51 | -3.214 | 17.77 | -1 | 20000 | 20607/335.4 | 2:29 | 447.6 | 7735-7736 | <500 |
37-6 | DUM | 40.0 | 5.5 | 0.600 | 0.650 | -5.270 | 18.51 | -3.214 | 17.77 | -1 | 2000 | 2028/242.7 | 1:33 | 223.8 | 7727-7728 | N/A |
37-7 | LH2 | 50.0 | 5.5 | 0.600 | 0.550 | -5.270 | 18.51 | -2.718 | 17.77 | -1 | 10000 | 10232/325.1 | 2:16 | 407.6 | 7741-7743 | <500 |
37-8 | LD2 | 50.0 | 5.5 | 0.600 | 0.550 | -5.270 | 18.51 | -2.718 | 17.77 | -1 | 30000 | 31915/337.5 | 3:19 | 597.6 | 7737-7740 | <500 |
37-9 | DUM | 40.0 | 5.5 | 0.600 | 0.550 | -5.270 | 18.51 | -2.718 | 17.77 | -1 | 3000 | 2566/257.5 | 2:05 | 298.8 | 7747-7749 | N/A |
37-10 | LH2 | 34.0 | 5.5 | 0.600 | 0.450 | -5.270 | 18.51 | -2.223 | 17.77 | -1 | 10000 | 10160/313.5 | 3:17 | 402.7 | 7753-7755 | <500 |
37-11 | LD2 | 33.2 | 5.5 | 0.600 | 0.450 | -5.270 | 18.51 | -2.223 | 17.77 | -1 | 30000 | 30424/460.2 | 5:08 | 613.6 | 7757- 7759 | <500 |
37-12 | DUM | 40.0 | 5.5 | 0.600 | 0.450 | -5.270 | 18.51 | -2.223 | 17.77 | -1 | 3000 | 3460/342.3 | 2:08 | 306.8 | 7750-7752 | N/A |
Kinematic group 37 total time : 26.35 hours (1.1 days)
Kinematic Group 38: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.6
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
38-1 | LH2 | 50.0 | 5.5 | 0.600 | 0.900 | -5.270 | 18.51 | +4.452 | 17.77 | +1 | N/A | 7374/83 | 0:33 | 100.0 | 7763 | <500 |
38-2 | LD2 | 50.0 | 5.5 | 0.600 | 0.900 | -5.270 | 18.51 | +4.452 | 17.77 | +1 | N/A | 12407/110 | 0:33 | 100.0 | 7760 | <500 |
38-3 | DUM | 40.0 | 5.5 | 0.600 | 0.900 | -5.270 | 18.51 | +4.452 | 17.77 | +1 | N/A | 692/50 | 0:21 | 50.0 | 7762 | N/A |
38-4 | LH2 | 50.0 | 5.5 | 0.600 | 0.650 | -5.270 | 18.51 | +3.214 | 17.77 | +1 | 10000 | 9854/122.1 | 1:14 | 222.6 | 7765-7766 | 70 |
38-5 | LD2 | 50.0 | 5.5 | 0.600 | 0.650 | -5.270 | 18.51 | +3.214 | 17.77 | +1 | 20000 | 18903/153.7 | 1:29 | 266.0 | 7768-7771 (67 may be ok) | 123 |
38-6 | DUM | 40.0 | 5.5 | 0.600 | 0.650 | -5.270 | 18.51 | +3.214 | 17.77 | +1 | 2000 | 2307/124.4 | 0:55 | 133.0 | 7772 | N/A |
38-7 | LH2 | 31.1 | 5.5 | 0.600 | 0.550 | -5.270 | 18.51 | +2.718 | 17.77 | +1 | 10000 | 10942/131.5 | 1:55 | 215.4 | 7778-7779 | 136 |
38-8 | LD2 | 30.3 | 5.5 | 0.600 | 0.550 | -5.270 | 18.51 | +2.718 | 17.77 | +1 | 30000 | 28250/241.9 | 3:30 | 382.4 | 7775-7777 | 325 |
38-9 | DUM | 40.0 | 5.5 | 0.600 | 0.550 | -5.270 | 18.51 | +2.718 | 17.77 | +1 | 3000 | 2974/182.9 | 1:20 | 191.2 | 7773-7774 | N/A |
38-10 | LH2 | 13.1 | 5.5 | 0.600 | 0.450 | -5.270 | 18.51 | +2.223 | 17.77 | +1 | 10000 | 11148/135.1 | 5:08 | 242.0 | 7781-7782 | 280 |
38-11 | LD2 | 12.7 | 5.5 | 0.600 | 0.450 | -5.270 | 18.51 | +2.223 | 17.77 | +1 | 30000 | 30475/270 | 10:30 | 425.0 | 7783-7787 | 490 |
38-12 | DUM | 40.0 | 5.5 | 0.600 | 0.450 | -5.270 | 18.51 | +2.223 | 17.77 | +1 | 3000 | 2846/170.6 | 1:29 | 212.5 | 7790-7792 | N/A |
Kinematic group 38 total time : 28.95 hours (1.2 days)
Kinematic Group 39: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
39-1 | LD2 | 50.0 | 5.5 | 0.550 | 0.650 | -4.890 | 19.10 | -3.461 | 15.95 | -1 | 20000 | 20460/299.4 | 2:02 | 365.8 | 7796-7797 | <500 |
39-2 | DUM | 40.0 | 5.5 | 0.550 | 0.650 | -4.890 | 19.10 | -3.461 | 15.95 | -1 | 2000 | 2012/205.6 | 1:15 | 179.6 | 7793-7794 | N/A |
39-3 | LD2 | 50.0 | 5.5 | 0.550 | 0.550 | -4.890 | 19.10 | -2.928 | 15.95 | -1 | 20000 | 20354/303.9 | 1:49 | 325.8 | 7798-7799, 7800 test @ 25 uA | <500 |
39-4 | DUM | 40.0 | 5.5 | 0.550 | 0.550 | -4.890 | 19.10 | -2.928 | 15.95 | -1 | 2000 | 2215/218 | 1:07 | 162.9 | 7801-7802 | N/A |
39-5 | LD2 | 26.8 | 5.5 | 0.550 | 0.450 | -4.890 | 19.10 | -2.394 | 15.95 | -1 | 20000 | 21035/276.6 | 3:28 | 334.8 | 7805 - 7807 | <500 |
39-6 | DUM | 40.0 | 5.5 | 0.550 | 0.450 | -4.890 | 19.10 | -2.394 | 15.95 | -1 | 2000 | 2047/170 | 1:09 | 164.9 | 7803- 7804 | N/A |
Kinematic group 39 total time : 10.8 hours (0.45 days)
Kinematic Group 40: Ebeam=10.219 GeV Q2 = 5.5 GeV2, x = 0.55
Setting | Kinematics | Spectrometer settings | Good Count Goals | Estimates | Runs | Target SHMS 3/4 (pTRIG1) rates | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | x | z | P HMS | th_HMS | P SHMS | th_SHMS | pol | desired | actual | hr:min | charge mC | # runs | kHz |
40-1 | LD2 | 50.0 | 5.5 | 0.550 | 0.650 | -4.890 | 19.10 | +3.461 | 15.95 | +1 | 20000 | 20583/156.6 | 1:13 | 217.4 | 7808-7809 | 225 |
40-2 | DUM | 40.0 | 5.5 | 0.550 | 0.650 | -4.890 | 19.10 | +3.461 | 15.95 | +1 | 2000 | 2038/106.4 | 0:45 | 108.4 | 7811 | N/A |
40-3 | LD2 | 25.5 | 5.5 | 0.550 | 0.550 | -4.890 | 19.10 | +2.928 | 15.95 | +1 | 20000 | 20625/171.1 | 2:16 | 208.5 | 7813-7814 | 420 |
40-4 | DUM | 40.0 | 5.5 | 0.550 | 0.550 | -4.890 | 19.10 | +2.928 | 15.95 | +1 | 2000 | 2077/118.7 | 0:43 | 104.0 | 7812 | N/A |
40-5 | LD2 | 10.9 | 5.5 | 0.550 | 0.450 | -4.890 | 19.10 | +2.394 | 15.95 | +1 | 20000 | 22081/170.7 | 5:55 | 231.9 | 7815-7817 | 495 |
40-6 | DUM | 40.0 | 5.5 | 0.550 | 0.450 | -4.890 | 19.10 | +2.394 | 15.95 | +1 | 2000 | 2732/148.4 | 0:48 | 115.6 | 7819-7820 | N/A |
Kinematic group 40 total time : 11.7 hours (0.49 days)
More Hydrogen Coincidence Elastics
Make sure both the HMS and SHMS magnets are cycled appropriately when doing this scan: go to MOL when increasing momentum. PS6=0 and PS4=0 all others (ps1, etc.) =-1
Setting | Kinematics | Spectrometer settings | Count Goal | est. | Rates | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
number | target | Ibeam | Q2 | th_HMS | P HMS | th_SHMS | P SHMS | pol | desired | actual | time | # runs | coin |
Heep-40a | LH2 | 50.000 | 8.99 | 23.22 | -5.714 | 22.26 | +5.65 | +1 | 10000 | 4066/202.5 | 02:00 | 7822-7823 | x |
Heep-40a-D | Dummy | 40.000 | 8.99 | 23.22 | -5.714 | 22.26 | +5.65 | +1 | N/A | 39/56 | 00:45 | 7824 | x |
Heep-40b | LH2 | 50.000 | 8.45 | 21.93 | -5.714 | 23.46 | +5.36 | +1 | 10000 | 7889/218 | 01:06 | 7826-7827 | x |
Heep-40b-D | Dummy | 40.000 | 8.45 | 21.93 | -5.714 | 23.46 | +5.36 | +1 | N/A | 25/20 | 00:30 | 7828 | x |
Heep-40c | LH2 | 50.000 | 7.92 | 20.71 | -5.714 | 24.71 | +5.07 | +1 | 10000 | 5875/123.4 | 00:55 | 7830 | x |
Heep-40c-D | Dummy | 40.000 | 7.92 | 20.71 | -5.714 | 24.71 | +5.07 | +1 | N/A | 9/4.1 | 00:25 | 7829 | x |
Kinematic group total time: 3.2 hours