-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·873 lines (749 loc) · 36.8 KB
/
index.html
File metadata and controls
executable file
·873 lines (749 loc) · 36.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xmlns="http://www.w3.org/TR/REC-html40"><head>
<!-- saved from url=(0029)http://home.fnal.gov/~prebys/ -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="ProgId" content="Word.Document">
<meta name="Generator" content="Microsoft Word 11">
<meta name="Originator" content="Microsoft Word 11">
<link rel="File-List" href="http://home.fnal.gov/%7Eprebys/index_files/filelist.xml">
<link rel="Edit-Time-Data" href="http://home.fnal.gov/%7Eprebys/index_files/editdata.mso"><!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]--><title>Eric Prebys Web Page</title>
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;
mso-font-charset:2;
mso-generic-font-family:auto;
mso-font-pitch:variable;
mso-font-signature:0 268435456 0 0 -2147483648 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0in;
margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:black;}
h2
{mso-margin-top-alt:auto;
margin-right:0in;
mso-margin-bottom-alt:auto;
margin-left:0in;
mso-pagination:widow-orphan;
mso-outline-level:2;
font-size:18.0pt;
font-family:"Times New Roman";
color:black;
font-weight:bold;}
a:link, span.MsoHyperlink
{color:#0000EE;
text-decoration:underline;
text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
{color:#551A8B;
text-decoration:underline;
text-underline:single;}
p
{mso-margin-top-alt:auto;
margin-right:0in;
mso-margin-bottom-alt:auto;
margin-left:0in;
mso-pagination:widow-orphan;
font-size:12.0pt;
font-family:"Times New Roman";
mso-fareast-font-family:"Times New Roman";
color:black;}
@page Section1
{size:8.5in 11.0in;
margin:1.0in 1.25in 1.0in 1.25in;
mso-header-margin:.5in;
mso-footer-margin:.5in;
mso-paper-source:0;}
div.Section1
{page:Section1;}
/* List Definitions */
@list l0
{mso-list-id:624312278;
mso-list-template-ids:2123035412;}
@list l0:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l0:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l0:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1
{mso-list-id:801919552;
mso-list-template-ids:1803824902;}
@list l1:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l1:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l1:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2
{mso-list-id:1310211582;
mso-list-template-ids:-88055230;}
@list l2:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l2:level2
{mso-level-number-format:bullet;
mso-level-text:o;
mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:"Courier New";
mso-bidi-font-family:"Times New Roman";}
@list l2:level3
{mso-level-number-format:bullet;
mso-level-text:\F0A7;
mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Wingdings;}
@list l2:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l2:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3
{mso-list-id:1557859086;
mso-list-template-ids:-2076649928;}
@list l3:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l3:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l3:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4
{mso-list-id:1631983840;
mso-list-template-ids:-7276970;}
@list l4:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l4:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l4:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5
{mso-list-id:1652707277;
mso-list-template-ids:-2017527536;}
@list l5:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l5:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l5:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6
{mso-list-id:1672024181;
mso-list-template-ids:842299102;}
@list l6:level1
{mso-level-number-format:bullet;
mso-level-text:\F0B7;
mso-level-tab-stop:.5in;
mso-level-number-position:left;
text-indent:-.25in;
mso-ansi-font-size:10.0pt;
font-family:Symbol;}
@list l6:level2
{mso-level-tab-stop:1.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level3
{mso-level-tab-stop:1.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level4
{mso-level-tab-stop:2.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level5
{mso-level-tab-stop:2.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level6
{mso-level-tab-stop:3.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level7
{mso-level-tab-stop:3.5in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level8
{mso-level-tab-stop:4.0in;
mso-level-number-position:left;
text-indent:-.25in;}
@list l6:level9
{mso-level-tab-stop:4.5in;
mso-level-number-position:left;
text-indent:-.25in;}
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style></head><body alink="#ff0000" bgcolor="white" lang="EN-US" link="#0000ee" vlink="#551a8b">
<o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="State"></o:smarttagtype>
<o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="City"></o:smarttagtype><o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="country-region"></o:smarttagtype> <o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="place"></o:smarttagtype><!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>Beams Division</o:Author>
<o:LastAuthor>Beams Division</o:LastAuthor>
<o:Revision>3</o:Revision>
<o:TotalTime>2</o:TotalTime>
<o:Created>2006-08-29T16:40:00Z</o:Created>
<o:LastSaved>2006-08-29T16:40:00Z</o:LastSaved>
<o:Pages>1</o:Pages>
<o:Words>1563</o:Words>
<o:Characters>8914</o:Characters>
<o:Company>FermiLab</o:Company>
<o:Lines>74</o:Lines>
<o:Paragraphs>20</o:Paragraphs>
<o:CharactersWithSpaces>10457</o:CharactersWithSpaces>
<o:Version>11.8028</o:Version>
</o:DocumentProperties>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:WordDocument>
<w:Zoom>75</w:Zoom>
<w:ValidateAgainstSchemas/>
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
<w:IgnoreMixedContent>false</w:IgnoreMixedContent>
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
</w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
<w:LatentStyles DefLockedState="false" LatentStyleCount="156">
</w:LatentStyles>
</xml><![endif]--><!--[if !mso]><object
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
<style>
st1\:*{behavior:url(#ieooui) }
</style>
<![endif]--><!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}
</style>
<![endif]--><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="7170"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
<div class="Section1">
<p class="MsoNormal"> </p>
<p class="MsoNormal" style="text-align: center;" align="center"><o:p> </o:p></p>
<div align="center">
<table style="border: 2.25pt outset ; width: 604px; height: 424px; text-align: left; margin-left: auto; margin-right: auto;" class="MsoNormalTable" border="1" cellpadding="0" cellspacing="5">
<tbody>
<tr style="">
<td style="padding: 3.75pt; width: 327px;">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 36pt;">Eric Prebys</span></p>
</td>
<td colspan="1" rowspan="3" style="padding: 3.75pt; width: 242px;">
<p class="MsoNormal" style="text-align: center;" align="center"><a href="http://home.fnal.gov/%7Eprebys/#general"><span style="text-decoration: none;"></span></a><span style="text-decoration: underline;"><img style="width: 450px; height: 411px;" alt="" src="prebys_smp_2.jpg"></span><br>
</p>
</td>
</tr>
<tr style="">
<td colspan="1" rowspan="1" style="padding: 3.75pt; width: 327px;">
<p class="MsoNormal" style="text-align: center;" align="center"><a href="http://www.fnal.gov/"><span style="text-decoration: none;"><br>
</span></a></p>
<div style="text-align: center;"><a href="http://physics.ucdavis.edu/"><img style="border: 0px solid ; width: 314px; height: 310px;" alt="" src="davis_seal.png"></a><br>
</div>
</td>
</tr>
<tr align="center">
</tr>
<tr style="">
<td colspan="1" style="padding: 3.75pt; width: 327px; text-align: center;"><a href="http://crocker.ucdavis.edu/"><img style="border: 0px solid ; width: 388px; height: 74px;" alt="" src="crocker.png"></a><a href="http://apc.fnal.gov/"><br>
</a></td>
<td style="text-align: center; width: 242px;"><a href="http://mu2e.fnal.gov/"><img style="border: 0px solid ; width: 252px; height: 132px;" alt="Mu2e" src="./index_files/mu2e_logo_oval.png"></a></td>
</tr>
</tbody>
</table>
</div>
<p><i>(This page last updated 15-MAY-2018)</i></p>
<p style="font-weight: bold;">Note: This page is no longer maintained; however, it remains the most complete <a href="#selected">archive of my talks and lectures</a> given prior to the Fall 2017, at which time I left Fermilab to take a faculty position at UC Davis.<br>
</p>
<p style="font-weight: bold;">My official UC Davis faculty page can be found <a href="http://physics.ucdavis.edu/people/faculty/eric-prebys">here</a>, and my personal page, including course information and more recent talks, can be found <a href="http://eprebys.faculty.ucdavis.edu/">here</a>.<br>
</p>
<h2><a style="font-weight: bold;" name="general"></a>General
<o:p> </o:p></h2>
<blockquote style="margin-top: 5pt; margin-bottom: 5pt;"><table class="MsoNormalTable" border="0" cellpadding="0"><tbody>
<tr>
<td colspan="2" rowspan="1" style="vertical-align: top;">Professor of Physics<br>
<a href="http://physics.ucdavis.edu/">University of California, Davis</a><br>
</td>
</tr>
<tr style="">
<td style="padding: 0.75pt;">
<p class="MsoNormal">Office:</p>
</td>
<td style="padding: 0.75pt;">
<p class="MsoNormal">Department of Physics, Room 337</p>
<p class="MsoNormal">Jungerman Hall (CNL), Room 103<br>
</p>
</td>
</tr>
<tr style="">
<td style="padding: 0.75pt;">
<p class="MsoNormal">Email:</p>
</td>
<td style="padding: 0.75pt;">
<p class="MsoNormal"><a href="mailto:eprebys@ucdavis.edu">eprebys@ucdavis.edu</a><br>
</p>
</td>
</tr>
<tr style="">
<td style="padding: 0.75pt;" valign="top">
<p class="MsoNormal">Address:</p>
</td>
<td style="padding: 0.75pt;">
<p class="MsoNormal">Department of Physic</p>
<p class="MsoNormal">UC Davis<br>
</p>
<p class="MsoNormal">One Shields Avenue
<br>
<st1:street w:st="on">Davis, CA 95616</st1:street><st1:postalcode w:st="on"></st1:postalcode></p>
</td>
</tr>
</tbody>
</table>
</blockquote>
<ul>
<li><a href="cv_prebys_davis.pdf">Curriculum Vitae</a><br>
</li>
</ul>
<h2><img id="_x0000_i1029" src="./index_files/atoms.gif" border="0" height="31" width="32">Current Responsibilities and Research
Activities:</h2>
<br>
<ul style="margin-top: 0in;" type="disc">
<li class="MsoNormal"><img style="width: 257px; height: 49px;" alt="" src="crocker.png" align="middle"> Director, <a href="http://crocker.ucdavis.edu/">Crocker Nuclear Laboratory </a></li>
<li class="MsoNormal" style=""><img style="width: 136px; height: 78px;" alt="Mu2e" src="./index_files/mu2e_logo_oval.png" align="middle"> muon 2 electron
(<a href="http://mu2e.fnal.gov/">mu2e</a>) conversion experiment</li>
</ul>
<h2>Previous Research Activities</h2>
<ul style="margin-top: 0in;" type="disc">
</ul>
<ul>
<li>Deputy Head, Fermilab Accelerator Physics Center (<a href="http://apc.fnal.gov/">APC</a>) </li>
<li>In charge of proton injection for <a href="https://cdcvs.fnal.gov/redmine/projects/iota/wiki/Wiki">IOTA</a> project.</li>
<li><a href="http://www.illinoisacceleratorinstitute.org/">Lee Teng
Undergraduate Internship</a> - Program Director/Committee Chair</li>
<li><a href="http://www.uslarp.org/"><img style="border: 0px solid ; width: 54px; height: 70px;" alt="LARP" src="index_files/larp_dipole_logo.gif" align="middle"></a><a href="http://www.uslarp.org/">LARP</a> Director</li>
<li class="MsoNormal" style=""><a href="http://www.snowmass2013.org/tiki-index.php">Snowmass 2013 (SnowMiss)</a>, Technical adviser to <a href="http://www.snowmass2013.org/tiki-index.php?page=Energy+Frontier">Energy Frontier Group</a></li>
<li><a href="http://apc.fnal.gov/programs2/joint_university.shtml">Joint
University - Fermilab Doctoral Program in Accelerator Physics and
Technology </a>- Committee Chair</li>
<li>Adjunct Professor of Physics, <a href="http://www.utexas.edu/">University of Texas, Austin</a></li>
<li><a href="http://www-accel-proj.fnal.gov/Proton_Plan/index.shtml">Proton
Plan</a> Project Manager</li>
</ul>
<ul>
<li><img id="_x0000_i1030" src="./index_files/boone.gif" style="height: 104px; width: 98px;" title="" align="middle" border="0" height="121" width="115"> <a href="http://www-boone.fnal.gov/">MiniBooNE</a>
- Search for neutrino oscillations</li>
</ul>
<ul style="margin-top: 0in;" type="disc">
<li class="MsoNormal" style=""><a href="http://www.hep.princeton.edu/%7Eprebys/belle/">BELLE</a>
(B-Factory at KEK, Tsukuba City, <st1:country-region w:st="on"><st1:place w:st="on">Japan</st1:place></st1:country-region>), a study of CP
violation in the B-meson system.</li>
<li class="MsoNormal" style="">SLAC Experiment <a href="http://www.slac.stanford.edu/exp/e144/e144.html">E144</a> , a
study of QED at very high fields.</li>
<li class="MsoNormal" style=""><a href="http://en.wikipedia.org/wiki/Superconducting_Super_Collider">Superconducting
Super Collider</a>, <st1:place w:st="on"><st1:city w:st="on">Dallas</st1:city>,
<st1:state w:st="on">TX</st1:state></st1:place>, SSC Fellow</li>
<li class="MsoNormal" style="">The <a href="http://opal.web.cern.ch/Opal/">OPAL experiment</a> at <a href="http://public.web.cern.ch/Public/ACCELERATORS/LepAcc.html">LEP</a>,
study of e+e- interactions at the Z resonance.</li>
<li class="MsoNormal" style="">Fermilab experiment <a href="http://www-e706.fnal.gov/">E706</a>, a study of direct photon
production in hadronic interactions.</li>
</ul>
<h2>Employment and Educational History</h2>
<ul style="margin-top: 0in;" type="disc">
<li class="MsoNormal">2017 -> present: Professor, <a href="http://physics.ucdavis.edu/">Department of Physics</a>, <a href="https://www.ucdavis.edu/">University of California, Davis</a><br>
</li>
<li class="MsoNormal" style="">2006 -> 2017: Senior Scientist, <a href="http://www.fnal.gov/">Fermi National Accelerator Laboratory</a></li>
<li class="MsoNormal" style="">2001 -> 2006: Scientist, <a href="http://www.fnal.gov/">Fermi National Accelerator Laboratory</a><br>
</li>
<li class="MsoNormal" style="">1994->2001: Assistant Professor of
Physics, <a href="http://www.princeton.edu/">Princeton University</a></li>
<li class="MsoNormal" style="">1992->1994: Research Associate, <a href="http://www.princeton.edu/">Princeton University</a></li>
<li class="MsoNormal" style="">1990->1992: Scientific Associate, <a href="http://www.cern.ch/">European Laboratory for High Energy Physics
(CERN)</a></li>
<li class="MsoNormal" style="">1990: PhD in Physics,<a href="http://www.rochester.edu/"> University of Rochester</a></li>
<li class="MsoNormal" style="">1984: BS in Engineering Physics, <a href="http://www.arizona.edu/">University of Arizona</a></li>
</ul>
<h2><a name="selected"></a>Selected Presentations:</h2>(Note, some of these powerpoints require supporting video files, which can be found <a href="talks/Video%20Files/">here</a>)<br>
<br>
<ul style="margin-top: 0in;" type="disc">
<li class="MsoNormal">"Beam Delivery and Out of Time Extinction in the Mu2e Experiment at Fermilab", <a href="http://mu2e-docdb.fnal.gov/cgi-bin/DisplayMeeting?sessionid=3137">Mu2e Student Talks</a>, <a href="http://www.fnal.gov/">Fermilab</a>, August 3, 2017 (<a href="talks/prebys_mu2e_newcomers_20170803.pptx">PPT</a>,<a href="talks/prebys_mu2e_newcomers_20170803.pdf">PDF</a>)<br>
</li>
<li class="MsoNormal">"Beam Delivery and Out of Time Extinction in the Mu2e Experiment at Fermilab", <a href="https://indico.fnal.gov/conferenceDisplay.py?ovw=True&confId=11999">2017 APS DPF Meeting</a>, <a href="http://www.fnal.gov">Fermilab</a>, August 3, 2017 (<a href="talks/prebys_APS_20170803.pptx">PPT</a>,<a href="talks/prebys_APS_20170803.pdf">PDF</a>)<br>
</li>
<li class="MsoNormal">"The Art of Applying to <st1:placename w:st="on">Graduate</st1:placename> <st1:placetype w:st="on">School</st1:placetype>",
Talk given to summer students, 7/6/17 (<a href="talks/gradschooltalk_fermilab_20170706.pptx">PowerPoint</a><span style="color: black; text-decoration: none;"><span style="">, <a href="talks/gradschooltalk_fermilab_20170706.pdf">PDF</a>)</span></span></li>
<li class="MsoNormal">"Particle Accelerators", FNAL Summer Lecture Series, June 29, 2017 (<a href="talks/prebys_interns_Accelerators_20170629.pptx">PowerPoint</a>, <a href="talks/prebys_interns_Accelerators_20170629.pdf">PDF</a>, Videos:<a href="talks/Video%20Files/Mythbusters%20Cement%20truck%20%28trimmed%29.mp4"> Mythbusters</a>, <a href="talks/Video%20Files/Castle%20Bravo%20%28trimmed%29.mp4">Castle Bravo</a>, <a href="talks/Video%20Files/head-on.mp4">Head-on</a>, <a href="talks/Video%20Files/parked%20car.mp4">Parked Car</a><span style="text-decoration: underline;">)</span><a href="talks/Video%20Files/parked%20car.mp4"><br>
</a></li>
<li class="MsoNormal">"Accelerator Physics", Lecture given at the <a href="http://saturdaymorningphysics.fnal.gov/spring-2017-slides-and-photographs/">Spring 2017 session of Saturday Morning Physics</a>, <a href="http://www.fnal.gov/">Fermilab</a>, April 22, 2017 (<a href="talks/prebys_SMP_Accelerators_20170422.pptx">PPT</a>, <a href="talks/prebys_SMP_Accelerators_20170422.pdf">PDF</a>, <a href="talks/Video%20Files/">video files</a>)<br>
</li>
<li class="MsoNormal">"Accelerators and High Energy Physics", slides shown to students visiting from <a href="https://case.edu/">Case Western Reserve University</a> (not very polished!), March 14, 2017 ( <a href="talks/prebys_CWRU_visit_20170314.pptx">PowerPoint</a>, <a href="talks/prebys_CWRU_visit_20170314.pdf">PDF</a>, video files)<br>
</li>
<li class="MsoNormal">"Mu2e: Muon to Electron Conversion at Fermilab", colloquium given at <a href="https://www.ucdavis.edu/">UC Davis</a>, February 22, 2017 (<a href="talks/mu2e_UCDavis_20170222.pptx">PPT</a>,<a href="talks/mu2e_UCDavis_20170222.pdf">PDF</a>)<br>
</li>
<li class="MsoNormal">"Enlightened: Some Things we've Learned by Studying Light", <a href="http://ed.fnal.gov/programs/tours/ask-a-scientist.shtml">Fermilab Ask-a-Scientist</a>, December 4,2016 (<a href="talks/prebys_ask_a_scientist_20161204.pptx">PPT</a>,<a href="talks/prebys_ask_a_scientist_20161204.pdf">PDF</a>)</li>
<ul>
<li class="MsoNormal"><a href="talks/Video%20Files/Interference_pattern_built_up_photon_by_photon_480.wmv">Video file</a> for embedded quantum double-slit demonstration.</li>
</ul>
<li class="MsoNormal">"Fermilab Accelerator Science and Technology (FAST) Facility", Seminar given and the <a href="http://physics.ucdavis.edu/">UC Davis Physics Department</a>, October 18, 2016 (<a href="talks/prebys_FAST_UCDavis_20161018.pptx">PPT</a>,<a href="talks/prebys_FAST_UCDavis_20161018.pdf">PDF</a>)<br>
</li>
<li class="MsoNormal">"The Fundamentals of Accelerator Physics", Course given at the <a href="http://uspas.fnal.gov/programs/2016/colorado/">2016 Summer Session of the USPAS, Ft. Collins, CO</a>, June 13-24, 2016 (<a href="http://home.fnal.gov/%7Eprebys/misc/uspas_2016/">All course materials</a>)<br>
</li>
<li class="MsoNormal">"Particle Accelerators", FNAL Summer Lecture Series, June 9, 2016 (<a href="talks/prebys_interns_20160609.pptx">PowerPoint</a>, <a href="talks/prebys_interns_20160609.pdf">PDF</a>)</li>
<li class="MsoNormal">"Fermilab
Accelerator Science and Technology (FAST) Facility", Seminar given at
<a href="http://ireap.umd.edu/">University of Maryland IREAP</a>, September 15, 2015 (<a href="talks/prebys_FAST_UMD_20150915.pptx">PPT</a>,<a href="talks/prebys_FAST_UMD_20150915.pdf">PDF</a>)<br>
</li>
<li class="MsoNormal">"Increasing Power to the High Energy Neutrino Program: PIP-(I,II,III), talk given at <a href="https://indico.fnal.gov/conferenceDisplay.py?confId=10100">DUNE Collaboration Meeting</a>, September 3, 2015 (<a href="https://indico.fnal.gov/getFile.py/access?contribId=105&sessionId=14&resId=0&materialId=slides&confId=10100">PPT</a>,<a href="https://indico.fnal.gov/getFile.py/access?contribId=105&sessionId=14&resId=1&materialId=slides&confId=10100">PDF</a>)<br>
</li>
<li class="MsoNormal">"Fermilab Accelerator Complex", lunch time talk given at "SeaQuest Academy", October 29, 2014 (<a href="talks/prebys_seaquest_20141029.pptx">PPT</a>)<br>
</li>
<li class="MsoNormal">"Hadron Accelerators", lectures given at the <a href="http://projects.fnal.gov/hcpss/hcpss14/">2014 Fermilab-CERN Hadron Collider Physics Summer School</a>, Fermilab, August 11-22, 2014</li>
<ul>
<li class="MsoNormal">Lecture 1: transverse motion, lattice functions, emittance (<a href="talks/prebys_HCPSS_A_20140811.pptx">PPT</a>, <a href="talks/prebys_HCPSS_A_20140811.pdf">PDF</a>)</li>
<li class="MsoNormal">Lecture 2: longitudinal motion, tricks of the trade, colliders and luminosity (<a href="talks/prebys_HCPSS_B_20140812.pptx">PPT</a>, <a href="talks/prebys_HCPSS_B_20140812.pdf">PDF</a>,<a href="talks/quench.wmv">quench video file</a>)<br>
</li>
<li class="MsoNormal">Lecture 3: Tevatron, LHC, "The Incident", HL-LHC, What's next? (<a href="talks/prebys_HCPSS_C_20140813.pptx">PPT</a>, <a href="talks/prebys_HCPSS_C_20140813.pdf">PDF</a>)<br>
</li>
</ul>
<li class="MsoNormal">"Introduction to Accelerator Physics", Guest lectures for <a href="http://nicadd.niu.edu/%7Ehedin/790/790.html">NIU Phy 790</a>, March 18 and 20, 2014</li>
<ul>
<li class="MsoNormal"><a href="misc/NIU_Phys_790/prebys_p790_main_20140318.pptx">Main lecture</a> on strong focusing and betatron motion (<a href="misc/NIU_Phys_790/problem_set.pdf">problem set</a>)</li>
<li class="MsoNormal"><a href="misc/NIU_Phys_790/prebys_p790_extra_20140320.pptx">Supplemental lecture</a>, incudling off-momentum particles, matching, colliding beams, and longitudinal motion.</li>
<li class="MsoNormal"><a href="misc/NIU_Phys_790/prebys_NIU_Phy_790.zip">Zip file</a> with lectures, problem set source, MADX example, g4beamline example, and root analysis files.<br>
</li>
</ul>
<li class="MsoNormal">"Accelerating Toward the Energy Frontier", Fermilab Ask-a-Scientist Talk, 3/2/14 (<a href="talks/prebys_ask_a_scientist_20140302/">directory with powerpoint and video files</a>)<br>
</li>
<li class="MsoNormal">"<a href="http://home.fnal.gov/%7Eprebys/misc/uspas_2014/">Accelerator Physics</a>", course taught at US Particle Accelerator School (<a href="http://uspas.fnal.gov/">USPAS</a>), Knoxville, TN, January 20-31, 2014.</li>
<li class="MsoNormal">"Energy: No Such Thing as a Free
Lunch", (shorter version of my perpetual motion talk) given at Fermilab
<a href="http://ed.fnal.gov/programs/ask/">Ask-a-scientist</a>, May 5, 2013 (<a href="http://home.fnal.gov/%7Eprebys/talks/ask_a_scientist_energy/">Directory</a>
with <a href="talks/ask_a_scientist_energy/ask_a_scientist_20130505.pptx">Powerpoint
file</a> and associated video clips)</li>
<li class="MsoNormal"><span style="color: black; text-decoration: none;"><span style="">"The Intensity Frontier at Fermilab", Joint HEP/Nuclear seminar at MSU, 4/12/13 (<a href="talks/prebys_intensity_frontier_msu_20130412.pptx">PowerPoint</a>)</span></span></li><li class="MsoNormal">"Extinction and Extinction Monitoring in the Mu2e Experiment", Talk given at the <a href="http://hb2012.ihep.ac.cn/">HB2012 Workshop</a>, Beijing, China, September 17-21, 2012 (<a href="talks/HB2012_THO3B01_talk.pptx">Powerpoint</a>)</li>
<li class="MsoNormal">"The Energy Frontier:
Tevatron->LHC->??", Invited talk at 2011 April APS Meeting,
Anaheim, CA, 5/1/2011 (<a href="talks/prebys_aps_20110430.pptx">PowerPoint</a>)</li><li class="MsoNormal" style="">"Upgrade Path for the LHC and the Role
of US Collaboration", Colloquium given at MIT, 9/20/10 (<a href="talks/MIT_20100920.pptx">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"Energy: No Such Thing as a Free
Lunch", (shorter version of my perpetual motion talk) given at Fermilab
<a href="http://ed.fnal.gov/programs/ask/">Ask-a-scientist</a>,
December 6, 2009 (<a href="http://home.fnal.gov/%7Eprebys/talks/ask_a_scientist_energy/">Directory</a>
with <a href="http://home.fnal.gov/%7Eprebys/talks/ask_a_scientist_energy/ask_a_scientist_20091206.ppt">Powerpoint
file</a> and associated video clips)</li>
<li class="MsoNormal" style="">"R&D Topics for the Phase II
Upgrade of the LHC", Talk given at the <a href="http://sarantsev09.jinr.ru/indexen.html">VIIIth International
Workshop in Memory of R.S. Sarantsev</a>, Alushta, Ukraine, 9/4/09 (<a href="http://home.fnal.gov/%7Eprebys/talks/prebys_larp_sarantsev_workshop_20090904.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"LHC: The New Frontier", Talk
given to Fermilab summer interns, 7/27/09 (<a href="http://home.fnal.gov/%7Eprebys/talks/lhctalk_20090727.ppt">PowerPoint</a>)
(this is a slightly updated version of <a href="http://home.fnal.gov/%7Eprebys/talks/mit_20090217.ppt">MIT guest
lecture</a>) </li>
<li class="MsoNormal" style="">"Life After the Tevatron: The
Intensity Frontier at Fermilab" - <a href="http://www.ifj.edu.pl/hep2009/">European Physical Society HEP
Meeting</a>, Krakow, Poland, 7/17/09 (<a href="http://home.fnal.gov/%7Eprebys/talks/eps_hep_20090717.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"Particle Physics/Accelerator Physics"
- Rotolo Middle School Career Day, 3/25/09 (<a href="http://home.fnal.gov/%7Eprebys/talks/careerday_20090325.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"LHC
Status, Upgrade plans, and US Contributions (LARP, LAFS, APL)",
Presentation to DOE/NSF Joint Oversight Group on the LHC Program,
10/31/08 (<a href="http://home.fnal.gov/%7Eprebys/talks/LARP_jog_prebys_20081031.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"Life After the Energy Frontier, The
Future of Fermilab", Jefferson Lab, Newport News, VA, 9/18/08 (<a href="http://home.fnal.gov/%7Eprebys/talks/jlab_20080918.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"Energy: No Such Thing as a Free
Lunch" - Guest Lecture at Columbia University, 4/11/08 (<a href="http://home.fnal.gov/%7Eprebys/talks/perpetual_motion/perpetual_motion_public.ppt">PowerPoint</a>,
<a href="http://home.fnal.gov/%7Eprebys/talks/perpetual_motion/perpetual_motion_public.pdf">PDF</a>)</li>
<li class="MsoNormal" style="">"MiniBooNE: First Results" - High
Energy Seminar, UT Austin, 4/30/07 (<a href="http://home.fnal.gov/%7Eprebys/talks/austin_20070430.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"Fermilab Accelerator PhD Program" -
Talk to UT Austin grad students, 5/01/07 (<a href="http://home.fnal.gov/%7Eprebys/talks/austin_student_talk_20070501.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">“MiniBooNE and NuMI – Why
do They Need so Many Protons?”, Accelerator Division Seminar,
Fermilab, 10/06/2005 (<a href="http://home.fnal.gov/%7Eprebys/talks/adseminar_20051006.ppt">Powerpoint</a>)</li>
<li class="MsoNormal" style="">“The future of the Fermilab
Neutrino Program”, Colloquium at <st1:placename w:st="on">New
Mexico</st1:placename> <st1:placetype w:st="on">State</st1:placetype> <st1:placetype w:st="on">University</st1:placetype>, <st1:city w:st="on">Las Cruces</st1:city>,
9/29/2005 (<a href="http://home.fnal.gov/%7Eprebys/talks/nmsu_20050929.ppt">Powerpoint</a>)</li>
</ul>
<ul style="margin-top: 0in;" type="disc">
<li class="MsoNormal" style="">"Accelerator Physics Basics", Talk
given to MiniBooNE Summer Students, 6/16/03 (<a href="http://home.fnal.gov/%7Eprebys/talks/student_talk_20030616.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"The Mirror Crack'd: History and
Status of CP Violation Studies", <st1:place w:st="on"><st1:placetype w:st="on">University</st1:placetype> of <st1:placename w:st="on">Rochester
Physics Colloquium</st1:placename></st1:place>, 9/26/01. (<a href="http://home.fnal.gov/%7Eprebys/talks/rochester_20010926.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"CP Violation in the B Meson System:
The Belle Measurement of <i>sin2</i><i><span style="font-family: Symbol;">f</span></i><i><span style="font-size: 7.5pt; font-family: Symbol;">1</span></i>", Beams
Division Seminar at FNAL , 4/26/01 [some extra general slides at end]. (<a href="http://home.fnal.gov/%7Eprebys/talks/fnal_20010426.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"E144 - A Study of High Field QED",
Seminar at <st1:place w:st="on"><st1:city w:st="on">University of Iowa</st1:city>,
<st1:state w:st="on">Iowa</st1:state></st1:place> City IA, 1/30/01.
(<a href="http://home.fnal.gov/%7Eprebys/talks/e144_iowa_20010130.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"Satellite Imagery: A New Approach to
Introductory Physics". (<a href="http://home.fnal.gov/%7Eprebys/talks/satellite_seminar.ppt">PowerPoint</a>)</li>
<li class="MsoNormal" style="">"Experimental Techniques in Particle
Physics", Guest Lecture in Princeton Phy 312, 4/24/00 - Some good stuff
on basic
HEP and principles of detection (<a href="http://home.fnal.gov/%7Eprebys/talks/experimental_hep_20000424.ppt">PowerPoint</a>)</li>
</ul><br>
<a href="http://home.fnal.gov/%7Eprebys/talks/">Complete talk archive</a>.<br>
<h2>Other/Personal:</h2>
<ul type="disc">
<li class="MsoNormal" style="">Personal:<br>
</li>
<ul>
<li class="MsoNormal" style=""><a href="https://www.facebook.com/eric.prebys">My FaceBook page</a></li>
<li class="MsoNormal" style=""><a href="http://ididntbuildthat.blogspot.com/">My blog</a><br>
</li>
<li class="MsoNormal" style=""><a href="countries.html">Countries I've visited</a>.</li>
<li class="MsoNormal"><a href="misc/theater.html">Community theater productions</a> I've been involved in, as an actor, tech, or musician.</li>
<li class="MsoNormal" style=""><a href="misc/stained_glass/index.html">Stained glass projects</a> I've created.<br>
</li>
</ul>
<li class="MsoNormal" style="">Fun and General Interest:</li>
<ul>
<li class="MsoNormal" style=""><a href="http://www.snopes.com/">Snopes:
The Truth Behind Urban Legends</a> (check here before forwarding anything!)<br>
</li>
<li class="MsoNormal" style=""><a href="http://math.ucr.edu/home/baez/physics/">Physics FAQ</a> -
General physics info</li>
</ul>
<ul type="circle">
<li class="MsoNormal" style=""><a href="http://www.archive.org/">www.archive.org</a>
- The whole web archived every few months. Lots of other public domain stuff, too.<br>
</li>
</ul>
</ul>
<p class="MsoNormal" style="margin-bottom: 12pt;"><br>
<br>
<br style="">
<!--[if !supportLineBreakNewLine]--><br style="">
<!--[endif]--></p>
</div>
</body></html>