-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfileList.txt
1221 lines (1221 loc) · 98.8 KB
/
fileList.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
total 3151728
-rw-rw-r--. 1 scaldwell scaldwell 0 Jun 8 12:04 fileList.txt
-rw-rw-r--. 1 scaldwell bpt 164174 May 9 03:15 allMacros.c
-rw-rw-r--. 1 scaldwell bpt 164174 May 9 03:15 allMacros.c~
-rw-rw-r--. 1 scaldwell scaldwell 27326 May 9 03:14 NeutronSpectrum_136sb01_LowEnergy.pdf
-rw-rw-r--. 1 scaldwell scaldwell 29922 May 9 03:13 NeutronSpectrum_136sb01_WithAccidentals.pdf
-rw-rw-r--. 1 scaldwell scaldwell 15770 May 9 03:13 NeutronSpectrum_136sb01_FinalZoom.pdf
-rw-rw-r--. 1 scaldwell scaldwell 18047 May 9 03:12 NeutronSpectrum_136sb01_Final.pdf
-rw-rw-r--. 1 scaldwell scaldwell 17893 May 9 03:12 NeutronSpectrum_136sb01_EfficiencyCorrection.pdf
-rw-rw-r--. 1 scaldwell scaldwell 15771 May 9 03:06 NeutronSpectrum_137i07_Final.pdf
-rw-rw-r--. 1 scaldwell scaldwell 15741 May 9 03:05 NeutronSpectrum_137i07_TeSubtract.pdf
-rw-rw-r--. 1 scaldwell scaldwell 27292 May 9 03:05 NeutronSpectrum_135sb08_LowEnergy.pdf
-rw-rw-r--. 1 scaldwell scaldwell 29295 May 9 03:04 NeutronSpectrum_135sb08_WithAccidentals.pdf
-rw-rw-r--. 1 scaldwell scaldwell 15721 May 9 03:03 NeutronSpectrum_135sb08_FinalZoom.pdf
-rw-rw-r--. 1 scaldwell scaldwell 18043 May 9 03:03 NeutronSpectrum_135sb08_Final.pdf
-rw-rw-r--. 1 scaldwell scaldwell 17759 May 9 02:59 NeutronSpectrum_135sb08_EfficiencyCorrection.pdf
-rw-rw-r--. 1 scaldwell scaldwell 15593 May 9 02:49 NeutronSpectrum_137i07_EfficiencyCorrection.pdf
-rw-rw-r--. 1 scaldwell scaldwell 27864 May 9 02:39 NeutronSpectrum_137i07_AccidentalsArgument.pdf
-rw-rw-r--. 1 scaldwell scaldwell 28862 May 9 02:38 NeutronSpectrum_137i07_WithAccidentals.pdf
drwxrwxr-x. 3 scaldwell scaldwell 24576 May 9 00:17 gitBFit2
-rw-rw-r--. 1 scaldwell scaldwell 55941 May 3 09:19 BFitCases.csv_transposed
-rw-rw-r--. 1 scaldwell scaldwell 25973 May 3 09:19 BDNCases.csv_transposed
-rwxrwxr-x. 1 scaldwell scaldwell 549320 May 3 09:19 bdnSort
-rw-rw-r--. 1 scaldwell scaldwell 33640 May 3 09:19 mcpGridCorrection.o
-rw-rw-r--. 1 scaldwell scaldwell 109864 May 3 09:19 CSVtoStruct.o
-rw-rw-r--. 1 scaldwell scaldwell 83528 May 3 09:19 bdnTrees.o
-rw-rw-r--. 1 scaldwell scaldwell 270944 May 3 09:19 bdnHistograms.o
-rw-rw-r--. 1 scaldwell scaldwell 701896 May 3 09:19 bdnSort.o
-rw-rw-r--. 1 scaldwell scaldwell 139919 May 3 09:19 bdnSort.cxx
-rw-rw-r--. 1 scaldwell scaldwell 13615 May 3 09:18 bdnHistograms.h
-rw-rw-r--. 1 scaldwell scaldwell 13615 May 3 09:18 bdnHistograms.h~
-rw-rw-r--. 1 scaldwell scaldwell 139901 May 3 09:16 bdnSort.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 43481 May 3 09:11 bdnHistograms.cxx
-rw-rw-r--. 1 scaldwell scaldwell 803 May 2 13:50 HistToText.C
-rw-rw-r--. 1 scaldwell scaldwell 315875 May 2 13:43 testHisto.xml
-rw-rw-r--. 1 scaldwell scaldwell 12257 May 2 13:42 testHisto.C
-rw-rw-r--. 1 scaldwell scaldwell 2147 Apr 24 15:28 rerun_hadd.c
-rw-rw-r--. 1 scaldwell scaldwell 2147 Apr 24 15:24 rerun_hadd.c~
-rwxrwxr-x. 1 scaldwell scaldwell 196127 Apr 24 10:37 DeadtimeCorrection
-rw-rw-r--. 1 scaldwell scaldwell 272416 Apr 24 10:37 DeadtimeCorrection.o
-rw-rw-r--. 1 scaldwell scaldwell 55458 Apr 24 10:37 DeadtimeCorrection.cxx
-rw-rw-r--. 1 scaldwell scaldwell 55458 Apr 24 10:35 DeadtimeCorrection.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 42590 Apr 24 10:16 bdnHistograms.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 199 Apr 19 17:52 mcpPhysicalMap.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1231 Apr 19 09:36 mcpPhysicalMap.cxx~
-rw-r--r--. 1 scaldwell scaldwell 16946 Apr 18 11:19 137i07_tof_2dE_mcp.root
-rw-r--r--. 1 scaldwell scaldwell 16640 Apr 18 11:19 137i07_tof_2dE_T_mcp.root
-rw-r--r--. 1 scaldwell scaldwell 16720 Apr 18 11:18 137i07_tof_2dE_R_mcp.root
-rw-r--r--. 1 scaldwell scaldwell 32288 Apr 18 11:17 137i07_tof_ADC_cut_corr_BT.root
-rw-r--r--. 1 scaldwell scaldwell 31129 Apr 18 11:17 137i07_tof_ADC_cut_corr_BR.root
-rw-r--r--. 1 scaldwell scaldwell 33773 Apr 18 11:16 137i07_tof_ADC_cut_corr_LR.root
-rw-r--r--. 1 scaldwell scaldwell 28403 Apr 18 11:16 137i07_tof_ADC_cut_corr_LT.root
-rw-r--r--. 1 scaldwell scaldwell 40967 Apr 18 11:15 137i07_tof_ADC_cut_corr.root
-rwxrwxr-x. 1 scaldwell scaldwell 195772 Apr 18 10:58 PrintCaseInfo
-rw-rw-r--. 1 scaldwell scaldwell 308888 Apr 18 10:58 PrintCaseInfo.o
-rw-rw-r--. 1 scaldwell scaldwell 10682 Apr 18 10:58 PrintCaseInfo.cxx
-rw-rw-r--. 1 scaldwell scaldwell 10682 Apr 18 10:57 PrintCaseInfo.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 6674 Apr 18 10:41 CSVtoStruct.h
-rw-rw-r--. 1 scaldwell scaldwell 6671 Apr 18 10:41 CSVtoStruct.h~
-rw-rw-r--. 1 scaldwell scaldwell 530 Apr 18 10:38 nex_DeadtimeCorrection
-rw-r--r--. 1 scaldwell scaldwell 30387 Apr 18 09:53 137i07_tof_ADC_cut_nocorr_BR.root
-rw-r--r--. 1 scaldwell scaldwell 32279 Apr 18 09:53 137i07_tof_ADC_cut_nocorr_BT.root
-rw-r--r--. 1 scaldwell scaldwell 33217 Apr 18 09:52 137i07_tof_ADC_cut_nocorr_LR.root
-rw-r--r--. 1 scaldwell scaldwell 28414 Apr 18 09:51 137i07_tof_ADC_cut_nocorr_LT.root
-rw-r--r--. 1 scaldwell scaldwell 40427 Apr 18 09:50 137i07_tof_ADC_cut_nocorr.root
-rw-rw-r--. 1 scaldwell scaldwell 55741 Apr 14 20:42 BFitCases.csv
-rwxrwxr-x. 1 scaldwell scaldwell 522444 Apr 10 18:45 bdn_sort_20141027
-rwxrwxr-x. 1 scaldwell scaldwell 160620 Apr 10 18:45 BFitModelTest
-rwxrwxr-x. 1 scaldwell scaldwell 522444 Apr 10 18:45 bdn_sort_20140909
-rwxrwxr-x. 1 scaldwell scaldwell 519764 Apr 10 18:45 bdn_sort_20140805
-rwxrwxr-x. 1 scaldwell scaldwell 518652 Apr 10 18:45 bdn_sort_20140613
-rwxrwxr-x. 1 scaldwell scaldwell 509161 Apr 10 18:45 bdn_sort_20140527
-rwxrwxr-x. 1 scaldwell scaldwell 164607 Apr 10 18:45 ExampleProgram
-rwxrwxr-x. 1 scaldwell scaldwell 108052 Apr 10 18:45 Metadata
-rwxrwxr-x. 1 scaldwell scaldwell 403680 Apr 10 18:45 BFit
-rw-rw-r--. 1 scaldwell scaldwell 6057 Apr 10 18:43 bdnTrees.h
-rw-rw-r--. 1 scaldwell scaldwell 13705 Apr 10 18:42 bdnTrees.cxx
-rw-rw-r--. 1 scaldwell scaldwell 2954 Apr 7 11:18 nsort_cal2013.out
-rw-rw-r--. 1 scaldwell scaldwell 7166 Apr 7 11:18 nsort_cal2013
-rw-rw-r--. 1 scaldwell scaldwell 7166 Apr 7 11:18 nsort_cal2013~
-rw-r--r--. 1 scaldwell scaldwell 214 Apr 5 16:28 BFit2_137i07BR_2.root
-rw-r--r--. 1 scaldwell scaldwell 214 Apr 5 16:28 BFit.root
drwxrwxr-x. 2 scaldwell scaldwell 4096 Apr 4 18:47 oldBFit2_20150404_GlobalsInNamespace
-rwxrwxr-x. 1 scaldwell scaldwell 516581 Apr 3 17:11 BFit2
-rw-rw-r--. 1 scaldwell scaldwell 118696 Apr 3 17:11 BFit2Populations.o
-rw-rw-r--. 1 scaldwell scaldwell 126208 Apr 3 17:11 BFit2Model.o
-rw-rw-r--. 1 scaldwell scaldwell 700712 Apr 3 17:11 BFit2.o
drwxrwxr-x. 2 scaldwell scaldwell 4096 Apr 3 14:28 oldBFit_2014Jul_modify_fyAll
drwxrwxr-x. 2 scaldwell scaldwell 4096 Apr 3 09:30 oldBFit_2014Jul_addParPrinting
-rw-rw-r--. 1 scaldwell scaldwell 54181 Apr 2 17:12 BFit2.cxx
-rw-rw-r--. 1 scaldwell scaldwell 54197 Apr 2 17:08 BFit2.cxx~
drwxrwxr-x. 4 scaldwell scaldwell 4096 Apr 2 14:00 oldBFit2_20150402
drwxrwxr-x. 2 scaldwell scaldwell 4096 Apr 2 13:44 oldBFit_2014Dec
drwxrwxr-x. 2 scaldwell scaldwell 4096 Apr 2 12:53 oldBFit_2014Jul
-rw-rw-r--. 1 scaldwell scaldwell 2342 Apr 1 17:03 exBFit
-rw-r--r--. 1 scaldwell scaldwell 4395038 Apr 1 16:56 BFit2_137i07BR_1.root
-rw-rw-r--. 1 scaldwell scaldwell 2323 Apr 1 16:35 exBFit~
-rw-rw-r--. 1 scaldwell scaldwell 13406 Apr 1 16:34 BFit2_137i07BR_0.out
-rw-r--r--. 1 scaldwell scaldwell 125972 Apr 1 16:34 BFit2_137i07BR_0.root
-rw-rw-r--. 1 scaldwell scaldwell 12619 Apr 1 16:20 BFit2_137i07BR_1.out
-rw-rw-r--. 1 scaldwell scaldwell 41104 Apr 1 16:19 thesis_BFit2_137i07BR_0.pdf
-rw-r--r--. 1 scaldwell scaldwell 171585 Apr 1 15:43 BFit2_137i07Br_1.root
-rw-rw-r--. 1 scaldwell scaldwell 19768 Apr 1 15:19 BFit2_137i07Br_1.out
-rw-rw-r--. 1 scaldwell scaldwell 4007849 Apr 1 15:16 BFit2_137i07Br_0.out
-rw-r--r--. 1 scaldwell scaldwell 157854 Apr 1 15:16 BFit2_137i07Br_0.root
-rw-r--r--. 1 scaldwell scaldwell 157845 Apr 1 15:07 BFit2_137i07Br.root
-rw-rw-r--. 1 scaldwell scaldwell 166184 Apr 1 15:04 BFitModel.o
-rw-rw-r--. 1 scaldwell scaldwell 557208 Apr 1 15:04 BFit.o
-rw-r--r--. 1 scaldwell scaldwell 71868 Mar 27 20:46 BFit2_134sb02Br.root
-rw-r--r--. 1 scaldwell scaldwell 106778 Mar 27 17:37 BFit2_134sb02Br_4.root
-rw-rw-r--. 1 scaldwell scaldwell 12119 Mar 27 17:34 BFit2_134sb02Br_4.out
-rw-rw-r--. 1 scaldwell scaldwell 458739 Mar 27 16:43 BFit2_134sb02Br_3.out
-rw-r--r--. 1 scaldwell scaldwell 47812 Mar 27 16:43 BFit2_134sb02Br_3.root
-rw-rw-r--. 1 scaldwell scaldwell 458743 Mar 27 16:39 BFit2_134sb02Br_2.out
-rw-r--r--. 1 scaldwell scaldwell 48031 Mar 27 16:39 BFit2_134sb02Br_2.root
-rw-rw-r--. 1 scaldwell scaldwell 83612 Mar 27 16:33 BFit2_134sb02Br_1.out
-rw-r--r--. 1 scaldwell scaldwell 73919 Mar 27 16:33 BFit2_134sb02Br_1.root
-rw-rw-r--. 1 scaldwell scaldwell 83616 Mar 27 16:32 BFit2_134sb02Br_0.out
-rw-r--r--. 1 scaldwell scaldwell 74149 Mar 27 16:32 BFit2_134sb02Br_0.root
-rw-rw-r--. 1 scaldwell scaldwell 72258 Mar 27 14:30 BFit2_134sb02Br_1.pdf
-rw-rw-r--. 1 scaldwell scaldwell 72250 Mar 27 14:28 BFit2_134sb02Br_0.pdf
-rw-r--r--. 1 scaldwell scaldwell 74937 Mar 27 13:10 BFit2_134sb02Br_2014.root
-rw-rw-r--. 1 scaldwell scaldwell 27733 Mar 26 17:22 CSVtoStruct.cxx
-rw-rw-r--. 1 scaldwell scaldwell 27733 Mar 26 17:22 CSVtoStruct.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 54 Mar 26 15:54 strTest
-rw-rw-r--. 1 scaldwell scaldwell 54 Mar 26 15:54 strTest~
-rw-rw-r--. 1 scaldwell scaldwell 12910 Mar 25 22:10 BFit2Populations.cxx
-rw-rw-r--. 1 scaldwell scaldwell 35471 Mar 25 21:28 BFit2Model.cxx
-rw-rw-r--. 1 scaldwell scaldwell 35471 Mar 25 21:18 BFit2Model.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 714 Mar 25 21:07 drawBFit.C
-rw-rw-r--. 1 scaldwell scaldwell 714 Mar 25 20:54 drawBFit.C~
-rw-rw-r--. 1 scaldwell scaldwell 228 Mar 25 19:06 gitAddBFit2
-rw-rw-r--. 1 scaldwell scaldwell 228 Mar 25 19:06 gitPushBFit
-rw-rw-r--. 1 scaldwell scaldwell 25966 Mar 25 16:20 BDNCases.csv
-rw-rw-r--. 1 scaldwell scaldwell 77866 Mar 25 10:20 thesis_BetaSinglesModel_Allpops.pdf
-rw-rw-r--. 1 scaldwell scaldwell 55437 Mar 25 10:10 thesis_BetaSinglesModel_Allpops.jpg
-rw-rw-r--. 1 scaldwell scaldwell 29961 Mar 25 10:10 thesis_BetaSinglesModel_Allpops.png
-rw-rw-r--. 1 scaldwell scaldwell 404123 Mar 25 10:09 thesis_BetaSinglesModel_Allpops.svg
-rw-rw-r--. 1 scaldwell scaldwell 27616 Mar 25 10:08 thesis_BetaSinglesModel_Allpops.gif
-rw-rw-r--. 1 scaldwell scaldwell 123775 Mar 25 10:08 thesis_BetaSinglesModel_Allpops.ps
-rw-rw-r--. 1 scaldwell scaldwell 122209 Mar 25 10:05 thesis_BetaSinglesModel_Allpops.eps
-rw-rw-r--. 1 scaldwell scaldwell 154302 Mar 25 09:45 thesisPlots.C
-rw-rw-r--. 1 scaldwell scaldwell 154300 Mar 25 09:42 thesisPlots.C~
-rw-rw-r--. 1 scaldwell scaldwell 48255 Mar 25 09:42 thesis_BetaSinglesModel_Tpops.eps
-rw-rw-r--. 1 scaldwell scaldwell 50179 Mar 25 09:40 thesis_BetaSinglesModel_Ypops.eps
-rw-rw-r--. 1 scaldwell scaldwell 47227 Mar 25 09:40 thesis_BetaSinglesModel_Xpops.eps
-rw-rw-r--. 1 scaldwell scaldwell 68246 Mar 25 09:39 thesis_BetaSinglesModel_Zpops.eps
-rw-rw-r--. 1 scaldwell scaldwell 71888 Mar 25 09:36 thesis_BetaSinglesModel_Wpops.eps
-rw-rw-r--. 1 scaldwell scaldwell 67344 Mar 25 09:36 thesis_BetaSinglesModel_Vpops.eps
-rw-r--r--. 1 scaldwell scaldwell 1429872050 Mar 24 22:49 BMC_0033.root
-rwxrwxr-x. 1 scaldwell scaldwell 63546 Mar 24 17:18 BMonteCarlo_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 5974 Mar 24 17:18 BMonteCarlo_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 50827 Mar 24 17:18 BMC_runDescriptions.txt
-rw-rw-r--. 1 scaldwell scaldwell 50827 Mar 24 17:18 BMC_runDescriptions.txt~
-rw-rw-r--. 1 scaldwell scaldwell 37669 Mar 24 17:17 BMonteCarlo.cxx
-rw-rw-r--. 1 scaldwell scaldwell 37669 Mar 24 17:17 BMonteCarlo.cxx~
-rw-------. 1 scaldwell scaldwell 718659 Mar 24 17:07 nohup.out
-rw-rw-r--. 1 scaldwell scaldwell 12882 Mar 24 16:05 BFit2Populations.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 48397 Mar 24 15:28 test.eps
-rw-rw-r--. 1 scaldwell scaldwell 44730 Mar 24 14:32 test1.eps
-rw-rw-r--. 1 scaldwell scaldwell 143952 Mar 24 08:40 ExampleProgram.o
-rw-rw-r--. 1 scaldwell scaldwell 8691 Mar 23 20:07 BFit2Model.h
-rw-rw-r--. 1 scaldwell scaldwell 4974 Mar 23 19:57 ExampleProgram.cxx
-rw-rw-r--. 1 scaldwell scaldwell 4974 Mar 23 19:57 ExampleProgram.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1234 Mar 23 19:18 debugCSVtoStruct.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 8685 Mar 23 18:45 BFit2Model.h~
-rw-rw-r--. 1 scaldwell scaldwell 169 Mar 23 10:19 workBFit2
-rw-rw-r--. 1 scaldwell scaldwell 7287 Mar 22 12:48 Makefile
-rw-rw-r--. 1 scaldwell scaldwell 48873 Mar 22 09:51 BFit2Model_20150322.cxx
-rw-rw-r--. 1 scaldwell scaldwell 77402 Mar 21 16:49 thesis_BetaSinglesModel.pdf
-rw-rw-r--. 1 scaldwell scaldwell 45166 Mar 21 16:48 thesis_BetaSinglesModel_Tpops.pdf
-rw-rw-r--. 1 scaldwell scaldwell 48928 Mar 21 16:48 thesis_BetaSinglesModel_Vpops.pdf
-rw-rw-r--. 1 scaldwell scaldwell 48838 Mar 21 16:47 thesis_BetaSinglesModel_Wpops.pdf
-rw-rw-r--. 1 scaldwell scaldwell 48887 Mar 21 16:47 thesis_BetaSinglesModel_Zpops.pdf
-rw-rw-r--. 1 scaldwell scaldwell 37543 Mar 21 16:47 thesis_BetaSinglesModel_Xpops.pdf
-rw-rw-r--. 1 scaldwell scaldwell 38593 Mar 21 16:46 thesis_BetaSinglesModel_Ypops.pdf
-rw-rw-r--. 1 scaldwell scaldwell 160328 Mar 19 16:44 hadd_2013.c
-rw-rw-r--. 1 scaldwell scaldwell 160328 Mar 19 16:44 hadd_2013.c~
-rw-rw-r--. 1 scaldwell scaldwell 1335 Mar 19 16:25 nsort_mcpGridTests
-rw-rw-r--. 1 scaldwell scaldwell 1342 Mar 19 16:24 nsort_mcpGridTests~
lrwxrwxrwx. 1 scaldwell scaldwell 60 Mar 19 15:16 roomBkgd03.root -> /music/bpt1/bpt/bdn/shane/roomBkgd/rootfiles/roomBkgd03.root
lrwxrwxrwx. 1 scaldwell scaldwell 60 Mar 19 15:10 roomBkgd02.root -> /music/bpt1/bpt/bdn/shane/roomBkgd/rootfiles/roomBkgd02.root
-rw-rw-r--. 1 scaldwell scaldwell 678 Mar 19 15:10 nsort_roomBkgd
-rw-rw-r--. 1 scaldwell scaldwell 673 Mar 19 15:07 nsort_roomBkgd~
lrwxrwxrwx. 1 scaldwell scaldwell 60 Mar 19 14:26 roomBkgd01.root -> /music/bpt1/bpt/bdn/shane/roomBkgd/rootfiles/roomBkgd01.root
-rw-rw-r--. 1 scaldwell bpt 196 Mar 18 20:24 nsort
-rw-rw-r--. 1 scaldwell bpt 196 Mar 18 20:24 nsort~
-rw-rw-r--. 1 scaldwell scaldwell 231 Mar 18 20:01 nsort_144cs
-rw-rw-r--. 1 scaldwell scaldwell 618 Mar 18 19:59 nsort_145cs
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 145cs02.root -> /music/bpt1/bpt/bdn/shane/145cs/rootfiles/145cs02.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 144cs02.root -> /music/bpt1/bpt/bdn/shane/144cs/rootfiles/144cs02.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 140xe01.root -> /music/bpt1/bpt/bdn/shane/140xe/rootfiles/140xe01.root
lrwxrwxrwx. 1 scaldwell scaldwell 52 Mar 18 17:16 140i03.root -> /music/bpt1/bpt/bdn/shane/140i/rootfiles/140i03.root
lrwxrwxrwx. 1 scaldwell scaldwell 52 Mar 18 17:16 140i02.root -> /music/bpt1/bpt/bdn/shane/140i/rootfiles/140i02.root
lrwxrwxrwx. 1 scaldwell scaldwell 52 Mar 18 17:16 139i01.root -> /music/bpt1/bpt/bdn/shane/139i/rootfiles/139i01.root
lrwxrwxrwx. 1 scaldwell scaldwell 52 Mar 18 17:16 138i07.root -> /music/bpt1/bpt/bdn/shane/138i/rootfiles/138i07.root
lrwxrwxrwx. 1 scaldwell scaldwell 52 Mar 18 17:16 138i06.root -> /music/bpt1/bpt/bdn/shane/138i/rootfiles/138i06.root
lrwxrwxrwx. 1 scaldwell scaldwell 52 Mar 18 17:16 138i05.root -> /music/bpt1/bpt/bdn/shane/138i/rootfiles/138i05.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 136sb01.root -> /music/bpt1/bpt/bdn/shane/136sb/rootfiles/136sb01.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 bdn.root -> /music/bpt1/bpt/bdn/shane/136sb/rootfiles/136sb01.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 135te01.root -> /music/bpt1/bpt/bdn/shane/135te/rootfiles/135te01.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 135sb08.root -> /music/bpt1/bpt/bdn/shane/135sb/rootfiles/135sb08.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 135sb07.root -> /music/bpt1/bpt/bdn/shane/135sb/rootfiles/135sb07.root
lrwxrwxrwx. 1 scaldwell scaldwell 56 Mar 18 17:16 134sb0103.root -> /music/bpt1/bpt/bdn/shane/134sb/rootfiles/134sb0103.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 134sb03.root -> /music/bpt1/bpt/bdn/shane/134sb/rootfiles/134sb03.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 134sb02.root -> /music/bpt1/bpt/bdn/shane/134sb/rootfiles/134sb02.root
lrwxrwxrwx. 1 scaldwell scaldwell 54 Mar 18 17:16 134sb01.root -> /music/bpt1/bpt/bdn/shane/134sb/rootfiles/134sb01.root
-rw-rw-r--. 1 scaldwell scaldwell 1328 Mar 18 17:15 makeLinksToSumFiles
-rw-rw-r--. 1 scaldwell scaldwell 1328 Mar 18 17:15 makeLinksToSumFiles~
lrwxrwxrwx. 1 scaldwell scaldwell 52 Mar 18 17:07 137i07.root -> /music/bpt1/bpt/bdn/shane/137i/rootfiles/137i07.root
-rw-rw-r--. 1 scaldwell scaldwell 404 Mar 18 15:35 nsort_139i
-rw-rw-r--. 1 scaldwell scaldwell 241 Mar 18 15:34 nsort_140xe
-rw-rw-r--. 1 scaldwell scaldwell 404 Mar 18 15:28 nsort_136sb
-rw-rw-r--. 1 scaldwell scaldwell 404 Mar 18 15:28 nsort_136sb~
-rw-rw-r--. 1 scaldwell scaldwell 1160 Mar 18 14:37 nsort_140i
-rw-rw-r--. 1 scaldwell scaldwell 1152 Mar 18 09:17 nsort_140i~
-rw-rw-r--. 1 scaldwell scaldwell 1454 Mar 17 23:28 nsort_137i
-rw-rw-r--. 1 scaldwell scaldwell 682 Mar 17 23:27 nsort_135sb
-rw-rw-r--. 1 scaldwell scaldwell 2495 Mar 17 23:26 nsort_134sb
-rw-rw-r--. 1 scaldwell scaldwell 1447 Mar 17 23:26 nsort_137i~
-rw-rw-r--. 1 scaldwell scaldwell 217 Mar 17 14:14 nsort_140xe~
-rw-rw-r--. 1 scaldwell scaldwell 530 Mar 17 13:47 nex_DeadtimeCorrection~
-rw-rw-r--. 1 scaldwell scaldwell 594 Mar 17 10:46 nsort_145cs~
-rw-rw-r--. 1 scaldwell scaldwell 1492 Mar 16 23:27 nsort_138i
-rw-rw-r--. 1 scaldwell scaldwell 380 Mar 16 23:24 nsort_139i~
-rw-rw-r--. 1 scaldwell scaldwell 1492 Mar 16 23:24 nsort_138i~
-rw-rw-r--. 1 scaldwell scaldwell 281 Mar 16 23:18 nsort_135te
-rw-rw-r--. 1 scaldwell scaldwell 280 Mar 16 23:18 nsort_135te~
-rw-rw-r--. 1 scaldwell scaldwell 658 Mar 16 23:13 nsort_135sb~
-rw-rw-r--. 1 scaldwell scaldwell 2471 Mar 16 19:21 nsort_134sb~
-rw-rw-r--. 1 scaldwell scaldwell 172053 Mar 16 17:16 thesis_trigger_rate_vs_cycle_time_137i07.pdf
-rw-rw-r--. 1 scaldwell scaldwell 172078 Mar 16 15:59 thesis_triggers_vs_cycle_time_137i07.pdf
-rw-rw-r--. 1 scaldwell scaldwell 159388 Mar 16 15:09 thesis_deadtime_correction_137i07.pdf
-rw-r--r--. 1 scaldwell scaldwell 49109 Mar 16 14:23 thesis_trigger_rate_vs_cycle_time_137i07.root
drwxrwxr-x. 3 scaldwell scaldwell 4096 Mar 11 20:25 SolovayKitaev
-rw-rw-r--. 1 scaldwell scaldwell 181400 Mar 9 16:39 thesis_triggers_vs_cycle_time_13707.pdf
-rw-rw-r--. 1 scaldwell scaldwell 5921 Mar 9 14:59 bdnTrees.h~
-rw-rw-r--. 1 scaldwell scaldwell 13586 Mar 9 14:59 bdnTrees.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 637141 Mar 9 12:23 h_cycles_vs_cycle_time_137i07.pdf
-rw-rw-r--. 1 scaldwell scaldwell 209 Mar 9 11:37 nsort_144cs~
-rw-rw-r--. 1 scaldwell scaldwell 757245 Mar 9 11:12 h_cycles_vs_cycle_time.pdf
-rwxrwxr-x. 1 scaldwell scaldwell 99225 Mar 9 10:35 covTest
-rw-rw-r--. 1 scaldwell scaldwell 144256 Mar 9 10:35 covTest.o
-rw-rw-r--. 1 scaldwell scaldwell 4289 Mar 7 11:23 covTest.cxx
-rw-rw-r--. 1 scaldwell scaldwell 5294 Mar 7 11:15 covTest.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1416 Mar 5 15:24 mcpIntrinsicEfficiencyCorrection.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1414 Mar 5 15:19 mcpIntrinsicEfficiencyCorrection.cxx~
-rw-r--r--. 1 scaldwell scaldwell 9293452 Mar 3 14:24 BMC_0032.root
drwxrwxr-x. 3 scaldwell scaldwell 4096 Mar 2 15:52 exportBFit2
-rw-rw-r--. 1 scaldwell scaldwell 16352 Mar 2 14:39 BMC_0005_QIROMES.out
-rw-rw-r--. 1 scaldwell scaldwell 15927 Mar 2 14:19 BMC_0005_QIROES.out
-rw-r--r--. 1 scaldwell scaldwell 10064040 Feb 28 18:35 BMC_0031.root
-rw-r--r--. 1 scaldwell scaldwell 8846436 Feb 28 18:21 BMC_0030.root
-rw-r--r--. 1 scaldwell scaldwell 6653558 Feb 26 16:58 BMC_0029.root
-rw-r--r--. 1 scaldwell scaldwell 7239027 Feb 26 16:56 BMC_0028.root
-rw-r--r--. 1 scaldwell scaldwell 7239027 Feb 26 16:51 BMC_0027.root
-rw-r--r--. 1 scaldwell scaldwell 6302761 Feb 26 16:36 BMC_0026.root
-rw-r--r--. 1 scaldwell scaldwell 6647022 Feb 26 16:32 BMC_0025.root
-rw-rw-r--. 1 scaldwell scaldwell 7268 Feb 25 16:18 Makefile~
-rw-rw-r--. 1 scaldwell scaldwell 5050 Feb 25 13:55 B_fit_cpp.d
-rw-rw-r--. 1 scaldwell scaldwell 38568 Feb 23 17:16 Y2Y3.pdf
drwxrwxr-x. 2 scaldwell scaldwell 4096 Feb 23 12:42 Ge_Cal_With_and_Without_MCP
-rw-r--r--. 1 scaldwell scaldwell 6262496 Feb 22 13:24 BMC_0024.root
-rw-r--r--. 1 scaldwell scaldwell 5470733 Feb 17 11:09 BMC_0023.root
-rw-r--r--. 1 scaldwell scaldwell 6141468 Feb 13 19:45 BMC_0022.root
-rw-r--r--. 1 scaldwell scaldwell 9981081 Feb 12 11:58 BMC_0021.root
-rw-r--r--. 1 scaldwell scaldwell 7248069 Feb 11 20:11 BMC_0020.root
-rw-r--r--. 1 scaldwell scaldwell 9303000 Feb 9 10:08 BMC_0019.root
-rw-r--r--. 1 scaldwell scaldwell 5222680 Feb 3 09:17 BMC_0018.root
-rw-r--r--. 1 scaldwell scaldwell 3140410 Jan 30 12:23 BMC_0017.root
-rw-r--r--. 1 scaldwell scaldwell 5225334 Jan 26 17:12 BMC_0016.root
-rw-r--r--. 1 scaldwell scaldwell 5194609 Jan 26 16:57 BMC_0015.root
-rw-r--r--. 1 scaldwell scaldwell 4395442 Jan 26 16:50 BMC_0014.root
-rw-r--r--. 1 scaldwell scaldwell 5303214 Jan 26 15:23 BMC_0013.root
-rw-r--r--. 1 scaldwell scaldwell 3359496 Jan 26 14:13 BMC_0012.root
-rw-rw-r--. 1 scaldwell scaldwell 148 Jan 26 09:42 workBFit2~
-rw-r--r--. 1 scaldwell scaldwell 557959556 Jan 25 14:35 BMC_0005.root
-rw-r--r--. 1 scaldwell scaldwell 1572393 Jan 25 11:44 BMC_0009.root
drwxrwxr-x. 7 scaldwell scaldwell 12288 Jan 23 11:11 old_code
-rw-rw-r--. 1 scaldwell scaldwell 5659 Jan 23 11:09 BFitModel_2015-01-22.h
-rw-rw-r--. 1 scaldwell scaldwell 5659 Jan 23 11:09 BFitModel.h
-rw-rw-r--. 1 scaldwell scaldwell 35400 Jan 23 11:09 BFitModel_2015-01-22.cxx
-rw-rw-r--. 1 scaldwell scaldwell 35400 Jan 23 11:09 BFitModel.cxx
-rw-rw-r--. 1 scaldwell scaldwell 35595 Jan 23 11:07 BFit_2015-01-22.cxx
-rw-rw-r--. 1 scaldwell scaldwell 35595 Jan 23 11:07 BFit.cxx
-rw-rw-r--. 1 scaldwell scaldwell 34172 Jan 22 19:17 BFitModel.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 6665 Jan 22 19:12 BFitModel.h~
-rw-rw-r--. 1 scaldwell scaldwell 36819 Jan 22 16:28 BFit.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 8206 Jan 22 09:44 BFitCases_4.csv
-rw-r--r--. 1 scaldwell scaldwell 1419457 Jan 21 20:41 BMC_0011.root
-rw-rw-r--. 1 scaldwell scaldwell 7535 Jan 20 17:21 BFitCases_2015-01-20.csv
-rw-rw-r--. 1 scaldwell scaldwell 5764 Jan 20 16:23 BFitModel_2015-01-20.h
-rw-rw-r--. 1 scaldwell scaldwell 58355 Jan 20 16:03 BFitModel_2015-01-20.cxx
-rw-rw-r--. 1 scaldwell scaldwell 55503 Jan 19 13:47 BFitModel_2015-01-19.cxx
-rw-rw-r--. 1 scaldwell scaldwell 56963 Jan 19 13:46 BFitModel_old.cxx
-rw-rw-r--. 1 scaldwell scaldwell 2366 Jan 19 13:20 commits-to-revert.txt
-rw-r--r--. 1 scaldwell scaldwell 1066099 Jan 19 11:35 BMC_0010.root
-rwxrwxr-x. 1 scaldwell scaldwell 434351 Jan 19 11:22 bdn_sort_20140515
-rw-rw-r--. 1 scaldwell scaldwell 13359 Jan 18 12:28 h_DY3_cyctime.dat
-rw-rw-r--. 1 scaldwell scaldwell 1854 Jan 18 12:27 ExportTH1.C
-rw-rw-r--. 1 scaldwell scaldwell 1888 Jan 18 12:25 ExportTH1.C~
-rw-rw-r--. 1 scaldwell scaldwell 161 Dec 10 14:40 gitPushSort
-rw-rw-r--. 1 scaldwell scaldwell 161 Dec 10 14:40 gitPushSort~
-rw-rw-r--. 1 scaldwell scaldwell 224 Dec 10 14:39 gitPushBFit~
-rw-rw-r--. 1 scaldwell scaldwell 144 Dec 10 14:38 workBFit
-rw-rw-r--. 1 scaldwell scaldwell 82952 Dec 10 12:32 bdn_trees_20140613.o
-rw-rw-r--. 1 scaldwell scaldwell 252680 Dec 10 12:32 bdn_histograms.o
-rw-rw-r--. 1 scaldwell scaldwell 658520 Dec 10 12:32 bdn_sort_20141027.o
-rwxrwxr-x. 1 scaldwell scaldwell 64599 Dec 10 12:27 draw_no_spikes_loop
-rw-rw-r--. 1 scaldwell scaldwell 102200 Dec 10 12:27 draw_no_spikes_loop.o
-rwxrwxr-x. 1 scaldwell scaldwell 89322 Dec 10 12:27 no_spikes_sb135
-rw-rw-r--. 1 scaldwell scaldwell 156552 Dec 10 12:27 no_spikes_sb135.o
-rwxrwxr-x. 1 scaldwell scaldwell 59919 Dec 10 12:27 cooling
-rw-rw-r--. 1 scaldwell scaldwell 86680 Dec 10 12:27 cooling.o
-rwxrwxr-x. 1 scaldwell scaldwell 66062 Dec 10 12:27 tof_from_E
-rw-rw-r--. 1 scaldwell scaldwell 96128 Dec 10 12:27 tof_from_E.o
-rwxrwxr-x. 1 scaldwell scaldwell 63448 Dec 10 12:27 gate_on_low_tof_noise
-rw-rw-r--. 1 scaldwell scaldwell 90832 Dec 10 12:27 gate_on_low_tof_noise.o
-rwxrwxr-x. 1 scaldwell scaldwell 104978 Dec 10 12:27 tof_cuts
-rw-rw-r--. 1 scaldwell scaldwell 158696 Dec 10 12:27 tof_cuts.o
-rw-rw-r--. 1 scaldwell scaldwell 100736 Dec 10 12:15 BFitModelTest.o
-rw-rw-r--. 1 scaldwell scaldwell 5893 Dec 10 12:15 bdn_trees_20140613.h
-rw-rw-r--. 1 scaldwell scaldwell 4439 Dec 10 12:14 bdn_trees.h
-rw-rw-r--. 1 scaldwell scaldwell 4439 Dec 10 12:14 bdn_trees.h~
-rw-rw-r--. 1 scaldwell scaldwell 5893 Dec 10 12:14 bdn_trees_20140613.h~
-rw-rw-r--. 1 scaldwell scaldwell 52865 Dec 10 11:23 HistToTextOutput.txt
-rw-rw-r--. 1 scaldwell scaldwell 803 Dec 10 11:23 HistToText.C~
-rw-rw-r--. 1 scaldwell scaldwell 590 Dec 9 22:14 HistPubPlot.py
-rw-rw-r--. 1 scaldwell scaldwell 589 Dec 9 22:14 HistPubPlot.py~
-rw-rw-r--. 1 scaldwell scaldwell 2000 Dec 8 15:23 BFitModelTest.cxx
-rw-rw-r--. 1 scaldwell scaldwell 2105 Dec 8 15:20 BFitModelTest.cxx~
-rw-r--r--. 1 scaldwell scaldwell 1192956 Dec 1 2014 BMC_0008.root
-rw-r--r--. 1 scaldwell scaldwell 1288851 Dec 1 2014 BMC_0007.root
-rw-r--r--. 1 scaldwell scaldwell 18279455 Dec 1 2014 BMC_0006.root
-rw-r--r--. 1 scaldwell scaldwell 238965354 Nov 23 2014 BMC_0004.root
-rw-r--r--. 1 scaldwell scaldwell 15373747 Nov 21 2014 BMC_0003.root
-rw-r--r--. 1 scaldwell scaldwell 16113799 Nov 19 2014 BMC_0002.root
-rw-rw-r--. 1 scaldwell scaldwell 144 Nov 8 2014 workBFit~
-rw-rw-r--. 1 scaldwell scaldwell 27 Nov 7 2014 Portfolio.cxx
-rw-r--r--. 1 scaldwell scaldwell 1788235 Nov 7 2014 BMC_0001.root
-rw-rw-r--. 1 scaldwell scaldwell 3793 Nov 7 2014 drawBMC.C
-rw-rw-r--. 1 scaldwell scaldwell 3668 Nov 7 2014 drawBMC.C~
-rw-r--r--. 1 scaldwell scaldwell 2569929 Nov 5 2014 B_monte_carlo_feeding_lifetime_6.root
-rw-rw-r--. 1 scaldwell scaldwell 32686 Nov 5 2014 B_monte_carlo_feeding_lifetime.cxx
-rw-rw-r--. 1 scaldwell scaldwell 33763 Nov 5 2014 B_monte_carlo_feeding_lifetime.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 479 Nov 4 2014 stSLLint.cpp
-rw-rw-r--. 1 scaldwell scaldwell 601 Nov 4 2014 stSLLint.h
-rw-rw-r--. 1 scaldwell scaldwell 479 Nov 4 2014 stSLLint.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 625 Nov 4 2014 stSLLint.h~
-rw-rw-r--. 1 scaldwell scaldwell 8718 Oct 30 2014 X2X3Y2Y3.cxx
-rw-rw-r--. 1 scaldwell scaldwell 132772 Oct 27 2014 bdn_sort_20141027.cxx
-rw-rw-r--. 1 scaldwell scaldwell 132772 Oct 27 2014 bdn_sort_20141027.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 377 Oct 27 2014 draw_beta_singles.c
-rw-rw-r--. 1 scaldwell scaldwell 377 Oct 27 2014 draw_beta_singles.c~
-rwxrwxr-x. 1 scaldwell scaldwell 60451 Oct 22 2014 B_monte_carlo_feeding_lifetime_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7817 Oct 22 2014 B_monte_carlo_feeding_lifetime_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 76041 Oct 17 2014 BMC_LifetimeTest.pdf
-rw-rw-r--. 1 scaldwell scaldwell 29747 Oct 15 2014 BFitModel_TUonly.cxx
-rw-rw-r--. 1 scaldwell scaldwell 47914 Oct 13 2014 BFitModel_20141013.cxx
-rw-rw-r--. 1 scaldwell scaldwell 47914 Oct 13 2014 BFitModel_20141013.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 6822 Oct 2 2014 bdn.h
-rw-rw-r--. 1 scaldwell scaldwell 39952 Oct 1 2014 bdn_histograms_20141027.cxx
-rw-rw-r--. 1 scaldwell scaldwell 39952 Oct 1 2014 bdn_histograms.cxx
-rw-rw-r--. 1 scaldwell scaldwell 39948 Sep 30 2014 bdn_histograms.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 658280 Sep 30 2014 bdn_sort_20140909.o
-rw-rw-r--. 1 scaldwell scaldwell 12702 Sep 30 2014 bdn_histograms_20141027.h
-rw-rw-r--. 1 scaldwell scaldwell 12702 Sep 30 2014 bdn_histograms.h
-rw-rw-r--. 1 scaldwell scaldwell 132346 Sep 30 2014 bdn_sort_20140909.cxx
-rw-rw-r--. 1 scaldwell scaldwell 654208 Sep 30 2014 bdn_sort_20140805.o
-rw-rw-r--. 1 scaldwell scaldwell 132360 Sep 30 2014 bdn_sort_20140909.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 12705 Sep 30 2014 bdn_histograms.h~
-rw-rw-r--. 1 scaldwell scaldwell 129804 Sep 9 2014 bdn_sort_20140805.cxx
-rw-rw-r--. 1 scaldwell scaldwell 70228 Aug 9 2014 134sb02_ConversionElectrons_NoTrapLoss_WithUntrapped.pdf
-rw-rw-r--. 1 scaldwell scaldwell 70493 Aug 9 2014 134sb02_ConversionElectrons_WithTrapLoss0.01_WithUntrapped.pdf
-rw-rw-r--. 1 scaldwell scaldwell 71423 Aug 9 2014 134sb02_ConversionElectrons_WithTrapLoss_WithUntrapped.pdf
-rw-rw-r--. 1 scaldwell scaldwell 70468 Aug 9 2014 134sb02_ConversionElectrons_WithUntrapped.pdf
-rw-rw-r--. 1 scaldwell scaldwell 58017 Aug 9 2014 134sb0103_ConversionElectrons_NoDC.pdf
-rw-rw-r--. 1 scaldwell scaldwell 57331 Aug 8 2014 134sb01_ConversionElectrons.pdf
-rw-rw-r--. 1 scaldwell scaldwell 57478 Aug 8 2014 134sb03_ConversionElectrons.pdf
-rw-rw-r--. 1 scaldwell scaldwell 57406 Aug 8 2014 134sb0103_ConversionElectrons.pdf
-rw-rw-r--. 1 scaldwell scaldwell 69446 Aug 8 2014 134sb02_ConversionElectrons_TrapLifetimeVarying.pdf
-rw-rw-r--. 1 scaldwell scaldwell 69788 Aug 8 2014 134sb02_ConversionElectrons_TrapLifetimeEqualsBetaSinglesValue.pdf
-rw-rw-r--. 1 scaldwell scaldwell 58060 Aug 8 2014 134sb01_ConversionElectrons_TrapLifetimeEqualsBetaSinglesValue.pdf
-rw-rw-r--. 1 scaldwell scaldwell 129700 Aug 5 2014 bdn_sort_20140805.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 36806 Aug 5 2014 bdn_histograms_20140805.cxx
-rw-rw-r--. 1 scaldwell scaldwell 12354 Aug 4 2014 E-scint-cal-investigations-02389.root
-rw-rw-r--. 1 scaldwell scaldwell 12132 Aug 4 2014 E-scint-cal-investigations-02390.root
-rw-rw-r--. 1 scaldwell scaldwell 63064 Aug 4 2014 134sb03_slow_vs_cycle_time.pdf
-rw-rw-r--. 1 scaldwell scaldwell 72412 Aug 4 2014 134sb02_slow_vs_cycle_time.pdf
-rw-rw-r--. 1 scaldwell scaldwell 62734 Aug 4 2014 134sb01_slow_vs_cycle_time.pdf
-rw-rw-r--. 1 scaldwell scaldwell 65407 Aug 4 2014 134sb0103_slow_vs_cycle_time.pdf
-rw-r--r--. 1 scaldwell scaldwell 18202 Aug 4 2014 slow_vs_rf_134sb0103.root
-rw-r--r--. 1 scaldwell scaldwell 18202 Aug 4 2014 slow_vs_rf.root
-rw-r--r--. 1 scaldwell scaldwell 17714 Aug 4 2014 slow_vs_rf_134sb03.root
-rw-r--r--. 1 scaldwell scaldwell 17266 Aug 4 2014 slow_vs_rf_134sb02.root
-rw-r--r--. 1 scaldwell scaldwell 17765 Aug 4 2014 slow_vs_rf_134sb01.root
-rw-r--r--. 1 scaldwell scaldwell 157238 Jul 16 2014 B_monte_carlo_feeding_lifetime_5.root
drwxrwxr-x. 2 scaldwell scaldwell 4096 Jul 14 2014 DataIncubatorChallenge
drwxrwxr-x. 4 scaldwell scaldwell 4096 Jul 13 2014 MPI
-rw-rw-r--. 1 scaldwell scaldwell 53286 Jul 9 2014 BFitModel_Slow.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 34584 Jul 9 2014 varTest
-rw-rw-r--. 1 scaldwell scaldwell 5752 Jul 9 2014 varTestFunc.o
-rw-rw-r--. 1 scaldwell scaldwell 180 Jul 9 2014 varTestFunc.cxx
-rw-rw-r--. 1 scaldwell scaldwell 163 Jul 9 2014 varTestFunc.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 43648 Jul 9 2014 varTest.o
-rw-rw-r--. 1 scaldwell scaldwell 196 Jul 9 2014 varTest.cxx
-rw-rw-r--. 1 scaldwell scaldwell 195 Jul 9 2014 varTest.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 53140 Jul 9 2014 BFitModel_bookGlobals.cxx
-rw-rw-r--. 1 scaldwell scaldwell 94 Jul 8 2014 codeBFit
-rw-rw-r--. 1 scaldwell scaldwell 94 Jul 8 2014 codeBFit~
-rw-rw-r--. 1 scaldwell scaldwell 17 Jul 3 2014 test.d
-rw-rw-r--. 1 scaldwell scaldwell 36 Jul 3 2014 test_def.d
-rw-rw-r--. 1 scaldwell scaldwell 45 Jul 3 2014 bdn_readCSV.d
-rw-rw-r--. 1 scaldwell scaldwell 49 Jul 3 2014 B_fit_readCSV.d
-rw-rw-r--. 1 scaldwell scaldwell 43 Jul 3 2014 CSVtoTTree.d
-rw-rw-r--. 1 scaldwell scaldwell 6271 Jul 3 2014 BFitCases.csv_transposed~
-rw-rw-r--. 1 scaldwell scaldwell 1979 Jul 2 2014 BFitCases.csv~
-rw-rw-r--. 1 scaldwell scaldwell 5786 Jun 27 2014 B_fit_134sb01_cpp.d
-rw-rw-r--. 1 scaldwell scaldwell 1384 Jun 27 2014 bdn_cases.h
-rw-rw-r--. 1 scaldwell scaldwell 4866 Jun 26 2014 BFitModel_DifferentParams.h
-rw-rw-r--. 1 scaldwell scaldwell 45597 Jun 26 2014 BFitModel_DifferentParams.cxx
-rw-rw-r--. 1 scaldwell scaldwell 45532 Jun 26 2014 BFitModel_DifferentParams.cxx~
drwxrwxr-x. 2 scaldwell scaldwell 4096 Jun 25 2014 NeutronSpectra
-rw-r--r--. 1 scaldwell scaldwell 49119 Jun 25 2014 En_v_vInv_spectra_137i07_noGridCorrection.root
-rw-rw-r--. 1 scaldwell scaldwell 13570 Jun 25 2014 bdn_trees_20140613.cxx
-rw-rw-r--. 1 scaldwell scaldwell 13570 Jun 25 2014 bdn_trees_20140613.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 650888 Jun 17 2014 bdn_sort_20140613.o
-rw-rw-r--. 1 scaldwell scaldwell 128590 Jun 17 2014 bdn_sort_20140613.cxx
-rw-rw-r--. 1 scaldwell scaldwell 128585 Jun 17 2014 bdn_sort_20140613.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 6794 Jun 13 2014 bdn2013.h
-rw-rw-r--. 1 scaldwell scaldwell 6794 Jun 13 2014 bdn.h~
-rw-rw-r--. 1 scaldwell scaldwell 7378 Jun 12 2014 check_map_corrections.c
-rw-rw-r--. 1 scaldwell scaldwell 7378 Jun 12 2014 check_map_corrections.c~
-rw-rw-r--. 1 scaldwell scaldwell 631784 Jun 11 2014 bdn_sort_20140527.o
-rw-rw-r--. 1 scaldwell scaldwell 104299 Jun 11 2014 bdn_sort_20140527.cxx
-rw-rw-r--. 1 scaldwell scaldwell 104335 Jun 11 2014 bdn_sort_20140527.cxx~
-rw-r--r--. 1 scaldwell scaldwell 955 Jun 11 2014 MissingPosts.root
-rwxrwxr-x. 1 scaldwell scaldwell 23448 Jun 11 2014 check_missing_posts_C.so
-rw-rw-r--. 1 scaldwell scaldwell 3827 Jun 11 2014 check_missing_posts_C.d
-rw-rw-r--. 1 scaldwell scaldwell 796 Jun 11 2014 draw_missing_posts.C
-rw-rw-r--. 1 scaldwell scaldwell 302 Jun 11 2014 draw_missing_posts.C~
-rw-rw-r--. 1 scaldwell scaldwell 1780 Jun 11 2014 check_missing_posts.C
-rw-rw-r--. 1 scaldwell scaldwell 1742 Jun 11 2014 check_missing_posts.C~
-rw-rw-r--. 1 scaldwell scaldwell 15378 Jun 2 2014 EnWithBkgd.pdf
-rw-rw-r--. 1 scaldwell scaldwell 14428 Jun 2 2014 EnMinusBkgd.pdf
-rw-rw-r--. 1 scaldwell scaldwell 5231 Jun 2 2014 137I_pts.csv_transposed
-rw-rw-r--. 1 scaldwell scaldwell 5385 Jun 2 2014 137I_pts.csv
-rw-rw-r--. 1 scaldwell scaldwell 16268 Jun 2 2014 En.pdf
-rw-rw-r--. 1 scaldwell scaldwell 14869 Jun 2 2014 EnLowEnd.pdf
-rw-rw-r--. 1 scaldwell scaldwell 1214 Jun 1 2014 mcpGridCorrection.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1189 Jun 1 2014 mcpGridCorrection.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 80640 May 27 2014 bdn_trees.o
-rw-rw-r--. 1 scaldwell scaldwell 12874 May 27 2014 bdn_trees.cxx
-rw-rw-r--. 1 scaldwell scaldwell 12874 May 27 2014 bdn_trees.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 594408 May 26 2014 bdn_sort_20140515.o
-rw-rw-r--. 1 scaldwell scaldwell 113689 May 22 2014 bdn_sort_20140515.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1888 May 22 2014 mcp_physical.C
-rw-rw-r--. 1 scaldwell scaldwell 1888 May 22 2014 mcp_physical.C~
-rw-rw-r--. 1 scaldwell scaldwell 113548 May 22 2014 bdn_sort_20140515.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 2351 May 21 2014 nex_mcp_cal
-rwxrwxr-x. 1 scaldwell scaldwell 46495 May 21 2014 mcp_cal_c.so
-rw-rw-r--. 1 scaldwell scaldwell 4202 May 21 2014 mcp_cal_c.d
-rwxrwxr-x. 1 scaldwell scaldwell 219416 May 21 2014 mcp_cal
-rw-rw-r--. 1 scaldwell scaldwell 347912 May 21 2014 mcp_cal.o
-rw-rw-r--. 1 scaldwell scaldwell 75973 May 21 2014 mcp_cal.cxx
-rw-rw-r--. 1 scaldwell scaldwell 75973 May 21 2014 mcp_cal.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 2361 May 21 2014 nex_mcp_cal~
-rw-rw-r--. 1 scaldwell scaldwell 2390 May 21 2014 rerun_mcp_cal.c
-rw-rw-r--. 1 scaldwell scaldwell 2388 May 21 2014 rerun_mcp_cal.c~
-rw-rw-r--. 1 scaldwell scaldwell 31272 May 21 2014 mcp_cal.c
drwxrwxr-x. 3 scaldwell scaldwell 4096 May 21 2014 include
-rw-rw-r--. 1 scaldwell scaldwell 31268 May 21 2014 mcp_cal.c~
-rw-rw-r--. 1 scaldwell scaldwell 49 May 20 2014 do_mcp_cals
-rw-r--r--. 1 scaldwell scaldwell 251438 May 20 2014 tof_by_time_since_capt_134sb0103.root
-rw-rw-r--. 1 scaldwell scaldwell 378 May 20 2014 ReadTree.C
-rw-rw-r--. 1 scaldwell scaldwell 378 May 20 2014 ReadTree.C~
-rw-rw-r--. 1 scaldwell scaldwell 1865 May 17 2014 draw_deadtime_corrections.c
drwxrwxr-x. 2 scaldwell scaldwell 4096 May 17 2014 portfolio
drwxrwxr-x. 3 scaldwell scaldwell 4096 May 15 2014 ken
-rw-r--r--. 1 scaldwell scaldwell 22964276 May 14 2014 B_monte_carlo_feeding_lifetime_1.root
-rw-rw-r--. 1 scaldwell scaldwell 81080 May 14 2014 Metadata.o
-rw-rw-r--. 1 scaldwell scaldwell 1770 May 13 2014 Metadata.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 543810 May 13 2014 bdn_sort_20140417
-rw-rw-r--. 1 scaldwell scaldwell 1410840 May 13 2014 bdn_sort_20140417.o
-rw-rw-r--. 1 scaldwell scaldwell 147905 May 13 2014 bdn_sort_20140417.cxx
-rw-rw-r--. 1 scaldwell scaldwell 147257 May 13 2014 bdn_sort_20140417.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 21253 May 13 2014 c_180deg_tof_by_tcapt.pdf
-rw-rw-r--. 1 scaldwell scaldwell 14589 May 13 2014 c_slow_recoils_vs_rf_phase.pdf
-rw-rw-r--. 1 scaldwell scaldwell 16844 May 13 2014 c_slow_recoils_vs_rf_phase_combos.pdf
-rw-rw-r--. 1 scaldwell scaldwell 32281 May 7 2014 c_90deg_tof_by_tcapt.pdf
-rw-r--r--. 1 scaldwell scaldwell 106663 May 7 2014 tof_by_time_since_capt_137i07.root
-rwxrwxr-x. 1 scaldwell scaldwell 437036 Apr 30 2014 bdn_sort_20131210
-rw-rw-r--. 1 scaldwell scaldwell 1100968 Apr 30 2014 bdn_sort_20131210.o
-rw-r--r--. 1 scaldwell scaldwell 21637 Apr 30 2014 136sb01_gamma_energy.root
-rw-rw-r--. 1 scaldwell scaldwell 45770 Apr 30 2014 136sb01_gamma_energy.pdf
-rw-rw-r--. 1 scaldwell scaldwell 121557 Apr 29 2014 bdn_sort_20131210.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1848 Apr 29 2014 draw_maps.c
-rw-rw-r--. 1 scaldwell scaldwell 3734 Apr 29 2014 draw_maps.c~
-rwxrwxr-x. 1 scaldwell scaldwell 216921 Apr 21 2014 mcp_cal_pedSubtract
-rw-rw-r--. 1 scaldwell scaldwell 343888 Apr 21 2014 mcp_cal_pedSubtract.o
-rw-rw-r--. 1 scaldwell scaldwell 74458 Apr 21 2014 mcp_cal_pedSubtract.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 447930 Apr 17 2014 bdn_sort_20140308
-rw-rw-r--. 1 scaldwell scaldwell 1137960 Apr 17 2014 bdn_sort_20140308.o
-rw-rw-r--. 1 scaldwell scaldwell 125835 Apr 17 2014 bdn_sort_20140308.cxx
-rw-rw-r--. 1 scaldwell scaldwell 126024 Apr 17 2014 bdn_sort_20140308.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 74207 Mar 30 2014 mcp_cal_pedSubtract.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 2509 Mar 29 2014 nex_mcp_cal_pedSubtract
-rw-rw-r--. 1 scaldwell scaldwell 2341 Mar 29 2014 nex_mcp_cal_pedSubtract~
-rw-rw-r--. 1 scaldwell scaldwell 2988 Mar 29 2014 Metadata.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1217 Mar 22 2014 rerun_fit_hole.c
-rw-rw-r--. 1 scaldwell scaldwell 1215 Mar 22 2014 rerun_fit_hole.c~
drwxrwxr-x. 2 scaldwell scaldwell 4096 Mar 12 2014 fCSVtoStruct
-rw-rw-r--. 1 scaldwell scaldwell 172 Mar 11 2014 draw_phds_with_cuts.C
-rw-rw-r--. 1 scaldwell scaldwell 172 Mar 11 2014 draw_phds_with_cuts.C~
-rw-rw-r--. 1 scaldwell scaldwell 465 Mar 11 2014 metadata_Tree_sum.C
-rw-rw-r--. 1 scaldwell scaldwell 456 Mar 11 2014 metadata_Tree_sum.C~
-rw-r--r--. 1 scaldwell bpt 3224312 Mar 10 2014 238Pu_R_mcp_NoMask.root
-rw-rw-r--. 1 scaldwell scaldwell 20431 Mar 9 2014 mcp_studies.cxx
-rw-rw-r--. 1 scaldwell scaldwell 20423 Mar 9 2014 mcp_studies.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 29944 Mar 8 2014 mcp_maps.cxx~
-rw-r--r--. 1 scaldwell scaldwell 4562 Mar 6 2014 BDNMetadata.root
-rw-rw-r--. 1 scaldwell scaldwell 3760 Mar 6 2014 CSVtoTTree.h
-rw-rw-r--. 1 scaldwell scaldwell 12821 Mar 6 2014 CSVtoTTree.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 1204 Mar 3 2014 transposeCSV.py
-rw-rw-r--. 1 scaldwell scaldwell 1203 Mar 3 2014 transposeCSV.py~
-rw-rw-r--. 1 scaldwell scaldwell 76 Mar 3 2014 transposeMetadata
-rw-rw-r--. 1 scaldwell scaldwell 75 Mar 3 2014 transposeMetadata~
-rw-rw-r--. 1 scaldwell scaldwell 1264 Mar 3 2014 bdn_cases.csv_transposed
-rw-rw-r--. 1 scaldwell scaldwell 1230 Mar 3 2014 bdn_cases.csv
drwxrwxr-x. 2 scaldwell scaldwell 4096 Mar 3 2014 gdb_tutorial
-rw-rw-r--. 1 scaldwell scaldwell 25723 Mar 3 2014 B_fit.cxx
-rw-rw-r--. 1 scaldwell scaldwell 25719 Mar 3 2014 B_fit.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1624 Mar 2 2014 B_fit_cases.csv
-rw-rw-r--. 1 scaldwell scaldwell 4876 Mar 2 2014 B_fit_model.h
-rw-rw-r--. 1 scaldwell scaldwell 930 Mar 2 2014 bdn_cases.csv~
-rw-rw-r--. 1 scaldwell scaldwell 10046 Mar 2 2014 bdn_readCSV.cxx
-rw-rw-r--. 1 scaldwell scaldwell 9680 Mar 2 2014 bdn_readCSV.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 3478 Mar 2 2014 bdn_readCSV.h
-rw-rw-r--. 1 scaldwell scaldwell 3249 Mar 2 2014 bdn_readCSV.h~
-rw-rw-r--. 1 scaldwell scaldwell 8632 Mar 1 2014 bdn_readCSV.o
-rw-rw-r--. 1 scaldwell scaldwell 1601 Feb 28 2014 ShaneTest.csv
-rw-rw-r--. 1 scaldwell scaldwell 4739 Feb 28 2014 B_fit_readCSV.cxx
-rw-rw-r--. 1 scaldwell scaldwell 4743 Feb 28 2014 B_fit_readCSV.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1221 Feb 28 2014 B_fit_readCSV.h
drwxrwxr-x. 3 scaldwell scaldwell 4096 Feb 28 2014 chris
-rw-rw-r--. 1 scaldwell scaldwell 2420 Feb 28 2014 B_fit_case_for_Chris.h
-rw-rw-r--. 1 scaldwell scaldwell 2415 Feb 28 2014 B_fit_case_for_Chris.h~
-rw-rw-r--. 1 scaldwell scaldwell 4845 Feb 27 2014 B_fit_model.h~
-rw-rw-r--. 1 scaldwell scaldwell 2941 Feb 27 2014 B_fit_cases.cxx
-rw-rw-r--. 1 scaldwell scaldwell 3369 Feb 27 2014 B_fit_cases.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1784 Feb 27 2014 bdn_cases.o
-rw-rw-r--. 1 scaldwell scaldwell 2724 Feb 27 2014 bdn_cases.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1327 Feb 26 2014 bdn_cases.h~
-rw-rw-r--. 1 scaldwell scaldwell 43849 Feb 26 2014 B_fit_model.cxx
-rw-rw-r--. 1 scaldwell scaldwell 2725 Feb 26 2014 bdn_cases.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 43860 Feb 26 2014 B_fit_model.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 6117 Feb 26 2014 bdn_cases.cpp
-rw-rw-r--. 1 scaldwell scaldwell 5036 Feb 26 2014 B_fit_cxx.d
-rwxrwxr-x. 1 scaldwell scaldwell 38975 Feb 26 2014 bdn_cases_cpp.so
-rw-rw-r--. 1 scaldwell scaldwell 881 Feb 26 2014 bdn_cases_cpp.d
-rwxrwxr-x. 1 scaldwell scaldwell 123343 Feb 26 2014 B_fit_cpp.so
-rw-rw-r--. 1 scaldwell scaldwell 47491 Feb 26 2014 B_fit.cpp
-rw-rw-r--. 1 scaldwell scaldwell 47491 Feb 26 2014 B_fit.cpp~
-rw-r--r--. 1 scaldwell scaldwell 206168 Feb 25 2014 B_monte_carlo_feeding_lifetime_4.root
-rw-r--r--. 1 scaldwell scaldwell 196437 Feb 25 2014 B_monte_carlo_feeding_lifetime_3.root
-rw-r--r--. 1 scaldwell scaldwell 278507 Feb 25 2014 B_monte_carlo_feeding_lifetime_2.root
-rw-r--r--. 1 scaldwell scaldwell 173190786 Feb 24 2014 B_monte_carlo_feeding_lifetime_smallstep_1.root
-rwxrwxr-x. 1 scaldwell scaldwell 60961 Feb 24 2014 B_monte_carlo_feeding_lifetime_smallstep_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8787 Feb 24 2014 B_monte_carlo_feeding_lifetime_smallstep_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 32188 Feb 24 2014 B_monte_carlo_feeding_lifetime_smallstep.cxx
-rw-rw-r--. 1 scaldwell scaldwell 32020 Feb 24 2014 B_monte_carlo_feeding_lifetime_smallstep.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 23341 Feb 20 2014 B_fit_model_TVWXY_Y3notRight.cpp
-rw-rw-r--. 1 scaldwell scaldwell 23341 Feb 20 2014 B_fit_model_TVWXY.cpp~
-rw-r--r--. 1 scaldwell scaldwell 23496316 Feb 20 2014 B_monte_carlo_feeding_veryhighstats_3.root
-rwxrwxr-x. 1 scaldwell scaldwell 56962 Feb 20 2014 B_monte_carlo_feeding_veryhighstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8302 Feb 20 2014 B_monte_carlo_feeding_veryhighstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 27358 Feb 20 2014 B_monte_carlo_feeding_veryhighstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 27358 Feb 20 2014 B_monte_carlo_feeding_veryhighstats.cxx~
-rw-r--r--. 1 scaldwell scaldwell 23501245 Feb 11 2014 B_monte_carlo_feeding_veryhighstats_2.root
-rw-r--r--. 1 scaldwell scaldwell 23496954 Feb 11 2014 B_monte_carlo_feeding_veryhighstats_1.root
-rw-r--r--. 1 scaldwell scaldwell 23494857 Feb 11 2014 B_monte_carlo_feeding_veryhighstats.root
-rw-rw-r--. 1 scaldwell scaldwell 23828 Feb 11 2014 B_monte_carlo_feeding_highstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 23825 Feb 11 2014 B_monte_carlo_feeding_highstats.cxx~
-rw-r--r--. 1 scaldwell scaldwell 17631740 Feb 11 2014 B_monte_carlo_feeding_highstats.root
-rwxrwxr-x. 1 scaldwell scaldwell 56333 Feb 11 2014 B_monte_carlo_feeding_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7914 Feb 11 2014 B_monte_carlo_feeding_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 221 Feb 5 2014 mcp_partially_illuminated.c
-rw-rw-r--. 1 scaldwell scaldwell 221 Feb 5 2014 mcp_partially_illuminated.c~
-rw-rw-r--. 1 scaldwell scaldwell 217 Jan 31 2014 nsort_mcp2013~
-rw-rw-r--. 1 scaldwell scaldwell 23768 Jan 30 2014 B_monte_carlo_feeding.cxx
-rw-r--r--. 1 scaldwell scaldwell 312402 Jan 29 2014 B_fit_134sb03.root
-rwxrwxr-x. 1 scaldwell scaldwell 98122 Jan 29 2014 B_fit_134sb03_cpp.so
-rw-rw-r--. 1 scaldwell scaldwell 5786 Jan 29 2014 B_fit_134sb03_cpp.d
-rw-r--r--. 1 scaldwell scaldwell 2480303 Jan 29 2014 B_fit_134sb02.root
-rwxrwxr-x. 1 scaldwell scaldwell 98266 Jan 29 2014 B_fit_134sb02_cpp.so
-rw-rw-r--. 1 scaldwell scaldwell 5786 Jan 29 2014 B_fit_134sb02_cpp.d
-rw-rw-r--. 1 scaldwell scaldwell 32814 Jan 29 2014 B_fit_134sb02.cpp
-rw-rw-r--. 1 scaldwell scaldwell 32820 Jan 29 2014 B_fit_134sb02.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 32804 Jan 29 2014 B_fit_134sb03.cpp
-rw-rw-r--. 1 scaldwell scaldwell 32804 Jan 29 2014 B_fit_134sb03.cpp~
-rw-r--r--. 1 scaldwell scaldwell 310146 Jan 29 2014 B_fit_134sb01.root
-rwxrwxr-x. 1 scaldwell scaldwell 98266 Jan 29 2014 B_fit_134sb01_cpp.so
-rw-rw-r--. 1 scaldwell scaldwell 32804 Jan 29 2014 B_fit_134sb01.cpp
-rw-rw-r--. 1 scaldwell scaldwell 32806 Jan 29 2014 B_fit_134sb01.cpp~
-rwxrwxr-x. 1 scaldwell scaldwell 104953 Jan 29 2014 B_fit_134sb01_reproduces_dec12_fit_cpp.so
-rw-rw-r--. 1 scaldwell scaldwell 7742 Jan 29 2014 B_fit_134sb01_reproduces_dec12_fit_cpp.d
-rw-rw-r--. 1 scaldwell scaldwell 34697 Jan 29 2014 B_fit_134sb01_reproduces_dec12_fit.cpp
-rw-rw-r--. 1 scaldwell scaldwell 34676 Jan 29 2014 B_fit_134sb01_reproduces_dec12_fit.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 4127 Jan 29 2014 B_fit_model_134sb01.h
-rw-rw-r--. 1 scaldwell scaldwell 8226 Jan 29 2014 B_fit_model_134sb01.cpp
-rw-rw-r--. 1 scaldwell scaldwell 22556 Jan 29 2014 B_fit_model_134sb01.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 22556 Jan 29 2014 B_fit_model_feeding_components.cpp
-rw-rw-r--. 1 scaldwell scaldwell 9686 Jan 29 2014 B_fit_model_feeding_components.cpp~
-rwxrwxr-x. 1 scaldwell scaldwell 87051 Jan 29 2014 fit_beta_singles_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 6060 Jan 29 2014 fit_beta_singles_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 23625 Jan 29 2014 fit_beta_singles.cxx
-rw-rw-r--. 1 scaldwell scaldwell 3250 Jan 29 2014 BetaSinglesModelNamespace_134sb1.h
-rw-r--r--. 1 scaldwell scaldwell 1806653 Jan 29 2014 B_monte_carlo_feeding.root
-rwxrwxr-x. 1 scaldwell scaldwell 55823 Jan 29 2014 B_monte_carlo_feeding_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 6944 Jan 29 2014 B_monte_carlo_feeding_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 23760 Jan 29 2014 B_monte_carlo_feeding.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 3658 Jan 28 2014 draw_B_monte_carlo.c~
-rw-rw-r--. 1 scaldwell scaldwell 9686 Jan 27 2014 B_fit_model_feeding.cpp
-rw-rw-r--. 1 scaldwell scaldwell 9686 Jan 27 2014 B_fit_model_feeding.cpp~
-rw-r--r--. 1 scaldwell scaldwell 69269 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep500.root
-rwxrwxr-x. 1 scaldwell scaldwell 44928 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep500_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 9563 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep500_cxx.d
-rw-r--r--. 1 scaldwell scaldwell 305134 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep.root
-rwxrwxr-x. 1 scaldwell scaldwell 44759 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 9272 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 17719 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep.cxx
-rw-rw-r--. 1 scaldwell scaldwell 17707 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 17728 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep500.cxx
-rw-rw-r--. 1 scaldwell scaldwell 17800 Jan 27 2014 B_monte_carlo_efftrap050_1_highstats_bigTstep500.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 8242 Jan 27 2014 B_fit_model_nofeeding.cpp
-rw-r--r--. 1 scaldwell scaldwell 372 Jan 17 2014 B_monte_carlo_efftrap050_1_highstats_temp.root
-rw-rw-r--. 1 scaldwell scaldwell 17002 Jan 17 2014 B_monte_carlo_efftrap100_1_highstats.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 44300 Jan 17 2014 B_monte_carlo_efftrap050_1_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8399 Jan 17 2014 B_monte_carlo_efftrap050_1_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 17358 Jan 17 2014 B_monte_carlo_efftrap050_1_highstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 17234 Jan 17 2014 B_monte_carlo_efftrap050_1_highstats.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 17222 Jan 17 2014 B_monte_carlo_efftrap100_1_highstats.cxx~
-rw-r--r--. 1 scaldwell scaldwell 27645559 Jan 17 2014 B_monte_carlo_efftrap025_1_highstats.root
-rw-r--r--. 1 scaldwell scaldwell 27623251 Jan 17 2014 B_monte_carlo_efftrap050_1_highstats.root
-rw-r--r--. 1 scaldwell scaldwell 27609045 Jan 17 2014 B_monte_carlo_efftrap075_1_highstats.root
-rw-r--r--. 1 scaldwell scaldwell 27179927 Jan 17 2014 B_monte_carlo_efftrap100_1_highstats.root
-rwxrwxr-x. 1 scaldwell scaldwell 44300 Jan 16 2014 B_monte_carlo_efftrap100_1_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8399 Jan 16 2014 B_monte_carlo_efftrap100_1_highstats_cxx.d
-rwxrwxr-x. 1 scaldwell scaldwell 44300 Jan 16 2014 B_monte_carlo_efftrap075_1_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8399 Jan 16 2014 B_monte_carlo_efftrap075_1_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 17002 Jan 16 2014 B_monte_carlo_efftrap075_1_highstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 17002 Jan 16 2014 B_monte_carlo_efftrap075_1_highstats.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 44300 Jan 16 2014 B_monte_carlo_efftrap025_1_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8399 Jan 16 2014 B_monte_carlo_efftrap025_1_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 17002 Jan 16 2014 B_monte_carlo_efftrap025_1_highstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 17001 Jan 16 2014 B_monte_carlo_efftrap025_1_highstats.cxx~
-rw-r--r--. 1 scaldwell scaldwell 278 Jan 16 2014 B_monte_carlo_efftrap000_1_highstats.root
-rwxrwxr-x. 1 scaldwell scaldwell 44300 Jan 16 2014 B_monte_carlo_efftrap000_1_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8399 Jan 16 2014 B_monte_carlo_efftrap000_1_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 17001 Jan 16 2014 B_monte_carlo_efftrap000_1_highstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 16999 Jan 16 2014 B_monte_carlo_efftrap000_1_highstats.cxx~
-rw-r--r--. 1 scaldwell scaldwell 27486278 Jan 16 2014 B_monte_carlo_alltrapped_1_highstats.root
-rw-r--r--. 1 scaldwell scaldwell 16498825 Jan 16 2014 B_monte_carlo_nofeeding_5.root
-rwxrwxr-x. 1 scaldwell scaldwell 48480 Jan 16 2014 B_monte_carlo_nofeeding_5_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7332 Jan 16 2014 B_monte_carlo_nofeeding_5_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 16443 Jan 16 2014 B_monte_carlo_nofeeding_5.cxx
-rw-rw-r--. 1 scaldwell scaldwell 15473 Jan 15 2014 B_monte_carlo_alltrapped_1_highstats.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 44316 Jan 15 2014 B_monte_carlo_alltrapped_1_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8399 Jan 15 2014 B_monte_carlo_alltrapped_1_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 15482 Jan 15 2014 B_monte_carlo_alltrapped_1_highstats.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 16487 Jan 15 2014 B_monte_carlo_nofeeding_5.cxx~
-rw-r--r--. 1 scaldwell scaldwell 27588342 Jan 15 2014 B_monte_carlo_nofeeding_3_highstats.root
-rw-r--r--. 1 scaldwell scaldwell 16498825 Jan 15 2014 B_monte_carlo_nofeeding_4.root
-rw-rw-r--. 1 scaldwell scaldwell 15397 Jan 15 2014 B_monte_carlo_nofeeding_3_highstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 15399 Jan 15 2014 B_monte_carlo_nofeeding_3_medstats.cxx
-rw-r--r--. 1 scaldwell scaldwell 4096561 Jan 15 2014 B_monte_carlo_nofeeding_3_medstats.root
-rw-r--r--. 1 scaldwell scaldwell 4096561 Jan 15 2014 B_monte_carlo_nofeeding_3_medstats_temp.root
-rwxrwxr-x. 1 scaldwell scaldwell 45467 Jan 15 2014 B_monte_carlo_nofeeding_4_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7332 Jan 15 2014 B_monte_carlo_nofeeding_4_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 15181 Jan 15 2014 B_monte_carlo_nofeeding_4.cxx
-rw-rw-r--. 1 scaldwell scaldwell 15169 Jan 15 2014 B_monte_carlo_nofeeding_4.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 44198 Jan 15 2014 B_monte_carlo_nofeeding_3_medstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8205 Jan 15 2014 B_monte_carlo_nofeeding_3_medstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 15326 Jan 15 2014 B_monte_carlo_nofeeding_3_medstats.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 44249 Jan 15 2014 B_monte_carlo_nofeeding_3_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8302 Jan 15 2014 B_monte_carlo_nofeeding_3_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 15324 Jan 15 2014 B_monte_carlo_nofeeding_3_highstats.cxx~
-rw-r--r--. 1 scaldwell scaldwell 3824449 Jan 15 2014 B_monte_carlo_nofeeding_3_medstats2.root
-rw-r--r--. 1 scaldwell scaldwell 3824449 Jan 15 2014 B_monte_carlo.root
-rw-rw-r--. 1 scaldwell scaldwell 25920 Jan 14 2014 B_fit_mark4.cpp
-rwxrwxr-x. 1 scaldwell scaldwell 89426 Jan 14 2014 fit_beta_singles_MC_nofeeding_noXe_lifetime_0_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8703 Jan 14 2014 fit_beta_singles_MC_nofeeding_noXe_lifetime_0_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 7558 Jan 14 2014 B_fit_model_mark3.cpp
-rw-rw-r--. 1 scaldwell scaldwell 9018 Jan 14 2014 B_fit_model_mark3.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 0 Jan 14 2014 ohup .x B_monte_carlo_nofeeding_3_medstats.cxx++
-rw-rw-r--. 1 scaldwell scaldwell 0 Jan 14 2014 ohup
-rw-rw-r--. 1 scaldwell scaldwell 3382 Jan 14 2014 BetaSinglesModelNamespace_MonteCarlo.h
-rw-rw-r--. 1 scaldwell scaldwell 5874 Jan 14 2014 B_fit_model_nofeeding_noXe.cpp
-rw-rw-r--. 1 scaldwell scaldwell 6272 Jan 14 2014 B_fit_model_nofeeding_noXe.cpp~
-rw-r--r--. 1 scaldwell scaldwell 5397029 Jan 14 2014 B_monte_carlo_nofeeding_3.root
-rwxrwxr-x. 1 scaldwell scaldwell 47915 Jan 14 2014 B_monte_carlo_nofeeding_3_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7332 Jan 14 2014 B_monte_carlo_nofeeding_3_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 14348 Jan 14 2014 B_monte_carlo_nofeeding_1.cxx
-rw-rw-r--. 1 scaldwell scaldwell 14917 Jan 14 2014 B_monte_carlo_nofeeding_3.cxx
-rw-rw-r--. 1 scaldwell scaldwell 14850 Jan 14 2014 B_monte_carlo_nofeeding_3.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 14306 Jan 14 2014 B_monte_carlo_nofeeding_1.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 7407 Jan 14 2014 B_fit_model_nofeeding.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 5596 Jan 14 2014 B_fit_mark2_cpp.d
-rwxrwxr-x. 1 scaldwell scaldwell 86721 Jan 14 2014 fit_beta_singles_MC_nofeeding_temp_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7702 Jan 14 2014 fit_beta_singles_MC_nofeeding_temp_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 5596 Jan 14 2014 B_fit_mark1_cpp.d
-rw-rw-r--. 1 scaldwell scaldwell 25821 Jan 14 2014 B_fit_mark3.cpp
-rw-rw-r--. 1 scaldwell scaldwell 8989 Jan 14 2014 B_fit_model_mark2.cpp
-rw-rw-r--. 1 scaldwell scaldwell 11921 Jan 14 2014 B_fit_model_mark2.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 25899 Jan 14 2014 B_fit_mark2.cpp
-rw-rw-r--. 1 scaldwell scaldwell 25893 Jan 13 2014 B_fit_mark2.cpp~
-rw-r--r--. 1 scaldwell scaldwell 27231730 Jan 13 2014 B_monte_carlo_nofeeding_2_highstats.root
-rw-rw-r--. 1 scaldwell scaldwell 27929 Jan 13 2014 B_fit_mark1.cpp
-rw-rw-r--. 1 scaldwell scaldwell 27923 Jan 13 2014 B_fit_mark1.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 6109 Jan 13 2014 bdn_cases.cpp~
-rwxrwxr-x. 1 scaldwell scaldwell 44249 Jan 13 2014 B_monte_carlo_nofeeding_2_highstats_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8302 Jan 13 2014 B_monte_carlo_nofeeding_2_highstats_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 11921 Jan 13 2014 B_fit_model.cpp
-rw-rw-r--. 1 scaldwell scaldwell 9647 Jan 13 2014 B_fit_model.cpp~
-rwxrwxr-x. 1 scaldwell scaldwell 16367 Jan 11 2014 test_cpp.so
-rw-rw-r--. 1 scaldwell scaldwell 178 Jan 11 2014 test_cpp.d
-rw-rw-r--. 1 scaldwell scaldwell 388 Jan 11 2014 test.cpp
-rw-rw-r--. 1 scaldwell scaldwell 388 Jan 11 2014 test.cpp~
-rw-rw-r--. 1 scaldwell scaldwell 91 Jan 11 2014 test_def.cpp
-rw-rw-r--. 1 scaldwell scaldwell 91 Jan 11 2014 test_def.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 16325 Jan 11 2014 test_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 151 Jan 11 2014 test_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 376 Jan 11 2014 test.cxx
-rw-rw-r--. 1 scaldwell scaldwell 190 Jan 11 2014 test_def_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 248 Jan 11 2014 test_def.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 249 Jan 11 2014 test.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 124 Jan 11 2014 test_def.h
-rw-rw-r--. 1 scaldwell scaldwell 123 Jan 11 2014 test_def.h~
-rw-rw-r--. 1 scaldwell scaldwell 194 Jan 11 2014 bdn_cases_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 2939 Jan 10 2014 bdn_cases_temp.cxx
-rw-rw-r--. 1 scaldwell scaldwell 3382 Jan 10 2014 BetaSinglesModelNamespace_MonteCarlo.h~
-rw-rw-r--. 1 scaldwell scaldwell 14822 Jan 10 2014 B_monte_carlo_nofeeding_2_highstats.cxx
-rw-rw-r--. 1 scaldwell scaldwell 14568 Jan 10 2014 B_monte_carlo_nofeeding_2.cxx
-rw-rw-r--. 1 scaldwell scaldwell 14812 Jan 10 2014 B_monte_carlo_nofeeding_2_highstats.cxx~
-rw-r--r--. 1 scaldwell scaldwell 158071 Jan 10 2014 137i07_TOF_by_time_since_capt_allhistos.root
-rw-rw-r--. 1 scaldwell scaldwell 1838 Jan 10 2014 draw_tof_for_137i07_by_time_since_capt.c
-rw-r--r--. 1 scaldwell scaldwell 4388356 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_1.root
-rwxrwxr-x. 1 scaldwell scaldwell 48645 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_1_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8690 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_1_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 14805 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_1.cxx
-rw-rw-r--. 1 scaldwell scaldwell 14805 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_1.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 21327 Jan 9 2014 fit_beta_singles_137i7_lifetimes_eff.cxx
-rw-rw-r--. 1 scaldwell scaldwell 21327 Jan 9 2014 fit_beta_singles_137i7_lifetimes.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 45467 Jan 9 2014 B_monte_carlo_nofeeding_1_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7332 Jan 9 2014 B_monte_carlo_nofeeding_1_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 20789 Jan 9 2014 fit_beta_singles_MC_nofeeding_noXe_lifetime_0.cxx
-rw-rw-r--. 1 scaldwell scaldwell 20785 Jan 9 2014 fit_beta_singles_MC_nofeeding_noXe_lifetime_0.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 21338 Jan 9 2014 fit_beta_singles_137i7_lifetimes_noXe.cxx
-rw-r--r--. 1 scaldwell scaldwell 4317813 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_0.root
-rwxrwxr-x. 1 scaldwell scaldwell 48629 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_0_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8690 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_0_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 14770 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_0.cxx
-rw-rw-r--. 1 scaldwell scaldwell 14756 Jan 9 2014 B_monte_carlo_nofeeding_noXe_lifetime_0.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 14568 Jan 9 2014 B_monte_carlo_nofeeding_2.cxx~
-rw-r--r--. 1 scaldwell scaldwell 5402366 Jan 9 2014 B_monte_carlo_nofeeding_1.root
-rw-r--r--. 1 scaldwell scaldwell 5396967 Jan 9 2014 B_monte_carlo_nofeeding_2.root
-rw-rw-r--. 1 scaldwell scaldwell 19420 Jan 9 2014 fit_beta_singles_MC_nofeeding_temp.cxx
-rw-rw-r--. 1 scaldwell scaldwell 19373 Jan 9 2014 fit_beta_singles_MC_nofeeding_temp.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 88282 Jan 7 2014 fit_beta_singles_137i7_lifetimes_noXe_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7981 Jan 7 2014 fit_beta_singles_137i7_lifetimes_noXe_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 21231 Jan 7 2014 fit_beta_singles_137i7_lifetimes_noXe.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 3355 Jan 7 2014 BetaSinglesModelNamespace_137i7_specialfit.h
-rwxrwxr-x. 1 scaldwell scaldwell 89113 Jan 7 2014 fit_beta_singles_137i7_nofeeding_lifetimes_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 8436 Jan 7 2014 fit_beta_singles_137i7_nofeeding_lifetimes_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 21149 Jan 7 2014 fit_beta_singles_137i7_nofeeding_lifetimes.cxx
-rwxrwxr-x. 1 scaldwell scaldwell 88923 Jan 7 2014 fit_beta_singles_137i7_lifetimes_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7526 Jan 7 2014 fit_beta_singles_137i7_lifetimes_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 20908 Jan 7 2014 fit_beta_singles_137i7_lifetimes.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 3351 Jan 7 2014 BetaSinglesModelNamespace_137i7_specialfit.h~
-rw-rw-r--. 1 scaldwell scaldwell 1991 Jan 7 2014 rsort
-rw-rw-r--. 1 scaldwell scaldwell 1991 Jan 7 2014 rsort~
-rwxrwxr-x. 1 scaldwell scaldwell 20073 Jan 7 2014 bdn_Sort_09272012_for_137i02_run00002
-rw-rw-r--. 1 scaldwell scaldwell 12056 Jan 7 2014 bdn_Sort_09272012_for_137i02_run00002.o
-rw-rw-r--. 1 scaldwell scaldwell 12780 Jan 7 2014 bdn_Sort_09272012_for_137i02_run00002.cxx
-rw-rw-r--. 1 scaldwell scaldwell 12741 Jan 7 2014 bdn_Sort_09272012_for_137i02_run00002.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 20053 Jan 7 2014 bdn_Sort_09272012
-rw-rw-r--. 1 scaldwell scaldwell 12000 Jan 7 2014 bdn_Sort_09272012.o
-rw-r--r--. 1 scaldwell scaldwell 77320 Jan 7 2014 137i07_TOF_by_time_since_capt_90deg.root
-rw-r--r--. 1 scaldwell scaldwell 148645 Jan 7 2014 137i07_TOF_by_time_since_capt_180deg.root
-rw-rw-r--. 1 scaldwell scaldwell 8980 Jan 7 2014 draw_tof_for_137i07_by_time_since_capt.c~
-rwxrwxr-x. 1 scaldwell scaldwell 86971 Jan 5 2014 fit_beta_singles_137i7_nofeeding_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7526 Jan 5 2014 fit_beta_singles_137i7_nofeeding_cxx.d
-rwxrwxr-x. 1 scaldwell scaldwell 91148 Jan 4 2014 bdn_sort_20140104
-rw-rw-r--. 1 scaldwell scaldwell 133776 Jan 4 2014 bdn_sort_20140104.o
-rw-rw-r--. 1 scaldwell scaldwell 122641 Jan 4 2014 bdn_sort_20140104.cxx
-rw-rw-r--. 1 scaldwell scaldwell 10320 Jan 4 2014 En.o
-rw-rw-r--. 1 scaldwell scaldwell 122617 Jan 4 2014 bdn_sort_20140104.cxx~
-rw-r--r--. 1 scaldwell scaldwell 5272376 Dec 20 2013 B_monte_carlo_1.root
-rw-r--r--. 1 scaldwell scaldwell 5272376 Dec 20 2013 B_monte_carlo_nofeeding.root
-rwxrwxr-x. 1 scaldwell scaldwell 44949 Dec 20 2013 B_monte_carlo_nofeeding_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7138 Dec 20 2013 B_monte_carlo_nofeeding_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 13523 Dec 20 2013 B_monte_carlo_nofeeding.cxx
-rw-rw-r--. 1 scaldwell scaldwell 13522 Dec 20 2013 B_monte_carlo_nofeeding.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 86274 Dec 20 2013 fit_beta_singles_MC_nofeeding_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7247 Dec 20 2013 fit_beta_singles_MC_nofeeding_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 18899 Dec 20 2013 fit_beta_singles_MC_nofeeding.cxx
-rw-rw-r--. 1 scaldwell scaldwell 7781 Dec 20 2013 B_monte_carlo_trapped_only.cxx
-rw-rw-r--. 1 scaldwell scaldwell 7768 Dec 20 2013 B_monte_carlo_trapped_only.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 43065 Dec 20 2013 B_monte_carlo_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 5851 Dec 20 2013 B_monte_carlo_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 7683 Dec 20 2013 B_monte_carlo.cxx
-rw-rw-r--. 1 scaldwell scaldwell 7681 Dec 20 2013 B_monte_carlo.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 18897 Dec 20 2013 fit_beta_singles_MC_nofeeding.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 87951 Dec 20 2013 fit_beta_singles_monte_carlo_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7156 Dec 20 2013 fit_beta_singles_monte_carlo_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 23711 Dec 20 2013 fit_beta_singles_monte_carlo.cxx
-rw-rw-r--. 1 scaldwell scaldwell 23641 Dec 20 2013 fit_beta_singles_monte_carlo.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 43066 Dec 20 2013 B_monte_carlo_1_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 6035 Dec 20 2013 B_monte_carlo_1_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 6646 Dec 20 2013 B_monte_carlo_1.cxx
-rw-rw-r--. 1 scaldwell scaldwell 6648 Dec 20 2013 B_monte_carlo_1.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 23625 Dec 19 2013 fit_beta_singles.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 11870 Dec 16 2013 En.cxx
-rw-rw-r--. 1 scaldwell scaldwell 12029 Dec 16 2013 En.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 43021 Dec 16 2013 En_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 5340 Dec 16 2013 En_cxx.d
-rw-r--r--. 1 scaldwell scaldwell 415497 Dec 12 2013 B_fit_134sb.root
-rw-rw-r--. 1 scaldwell scaldwell 3248 Dec 12 2013 BetaSinglesModelNamespace_134sb1.h~
-rw-rw-r--. 1 scaldwell scaldwell 121561 Dec 12 2013 bdn_sort_20131210.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 117414 Dec 11 2013 bdn_sort_20131211.cxx
-rw-rw-r--. 1 scaldwell scaldwell 276480 Dec 11 2013 ken.tar
-rw-rw-r--. 1 scaldwell scaldwell 117378 Dec 11 2013 bdn_sort_20131211.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 45 Dec 11 2013 B_functions.d
-rw-rw-r--. 1 scaldwell scaldwell 33 Dec 11 2013 B_model.d
-rw-rw-r--. 1 scaldwell scaldwell 5750 Dec 11 2013 Makefile_from_Ken_20131211.txt
-rw-rw-r--. 1 scaldwell scaldwell 5750 Dec 11 2013 Makefile_from_Ken_20131211.txt~
-rw-rw-r--. 1 scaldwell scaldwell 1877 Dec 11 2013 Makefile.tmpl
-rw-rw-r--. 1 scaldwell scaldwell 5722 Dec 11 2013 Makefile_20131211
-rw-rw-r--. 1 scaldwell scaldwell 76128 Dec 11 2013 bdn_sort_20131211.o
-rw-rw-r--. 1 scaldwell scaldwell 5313 Dec 10 2013 rates_text.txt
-rw-r--r--. 1 scaldwell scaldwell 19260 Dec 10 2013 tof_bkgd_136sb1.root
-rw-r--r--. 1 scaldwell scaldwell 26740 Dec 10 2013 tof_136sb1.root
-rw-rw-r--. 1 scaldwell scaldwell 1590 Dec 10 2013 recoil_rates_on_mcp_region.c
-rw-rw-r--. 1 scaldwell scaldwell 1588 Dec 10 2013 recoil_rates_on_mcp_region.c~
-rw-rw-r--. 1 scaldwell scaldwell 5570 Dec 10 2013 recoil_ion_rates_standalone.c
-rw-rw-r--. 1 scaldwell scaldwell 5565 Dec 10 2013 recoil_ion_rates_standalone.c~
-rw-rw-r--. 1 scaldwell scaldwell 7951 Dec 10 2013 post_sort_137i7.cxx
-rw-rw-r--. 1 scaldwell scaldwell 8129 Dec 10 2013 post_sort_137i7.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 8261 Dec 10 2013 gate_on_capt_spikes.cxx
-rw-rw-r--. 1 scaldwell scaldwell 15069 Dec 10 2013 study_capt_spikes.cxx
-rw-rw-r--. 1 scaldwell scaldwell 15074 Dec 10 2013 study_capt_spikes.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 84028 Dec 10 2013 bdn_sort_20131203
-rw-rw-r--. 1 scaldwell scaldwell 119144 Dec 10 2013 bdn_sort_20131203.o
-rw-rw-r--. 1 scaldwell scaldwell 105671 Dec 10 2013 bdn_sort_20131203.cxx
-rw-rw-r--. 1 scaldwell scaldwell 105671 Dec 10 2013 bdn_sort_20131203.cxx~
-rw-r--r--. 1 scaldwell scaldwell 16522 Dec 9 2013 tof_139i_1971_1974.root
-rw-rw-r--. 1 scaldwell scaldwell 21151 Dec 9 2013 fit_beta_singles_137i7_nofeeding_lifetimes.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 19406 Dec 9 2013 fit_beta_singles_137i7_nofeeding.cxx
-rw-rw-r--. 1 scaldwell scaldwell 19358 Dec 9 2013 fit_beta_singles_137i7_nofeeding.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 86013 Dec 9 2013 fit_beta_singles_137i7_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 6616 Dec 9 2013 fit_beta_singles_137i7_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 24135 Dec 9 2013 fit_beta_singles_137i7.cxx
drwxrwxr-x. 2 scaldwell scaldwell 4096 Dec 8 2013 bad_code
-rw-rw-r--. 1 scaldwell scaldwell 24133 Dec 8 2013 fit_beta_singles_137i7.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1432 Dec 8 2013 B_model.h
-rw-rw-r--. 1 scaldwell scaldwell 10980 Dec 8 2013 B_model.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1448 Dec 8 2013 B_model.h~
-rw-rw-r--. 1 scaldwell scaldwell 11156 Dec 8 2013 B_functions.cxx
-rw-rw-r--. 1 scaldwell scaldwell 1459 Dec 8 2013 B_functions.h
-rw-rw-r--. 1 scaldwell scaldwell 11240 Dec 8 2013 B_functions.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 1121 Dec 8 2013 B_functions.h~
-rw-rw-r--. 1 scaldwell scaldwell 3262 Dec 8 2013 BetaSinglesModelNamespace_137i7.h
-rw-rw-r--. 1 scaldwell scaldwell 3262 Dec 8 2013 BetaSinglesModelNamespace_137i7.h~
-rw-rw-r--. 1 scaldwell scaldwell 2562 Dec 8 2013 BetaSinglesModelNamespace_135sb2B.h
-rw-rw-r--. 1 scaldwell scaldwell 3248 Dec 7 2013 diff.txt
-rw-r--r--. 1 scaldwell scaldwell 623334 Dec 7 2013 B_137i7.root
-rw-r--r--. 1 scaldwell scaldwell 19668 Dec 6 2013 rf_phase_time_variable.root
-rw-r--r--. 1 scaldwell scaldwell 78459 Dec 6 2013 h_tof_each_combo_137i7.root
-rw-r--r--. 1 scaldwell scaldwell 78570 Dec 6 2013 h_tof_each_combo.root
-rwxrwxr-x. 1 scaldwell scaldwell 86514 Dec 6 2013 fit_slow_recoils_trapLifeTime3_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 7347 Dec 6 2013 fit_slow_recoils_trapLifeTime3_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 24792 Dec 6 2013 fit_slow_recoils_trapLifeTime3.cxx
-rw-rw-r--. 1 scaldwell scaldwell 24792 Dec 6 2013 fit_slow_recoils_trapLifeTime3.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 3327 Dec 6 2013 SlowRecoilsModelNamespace_trapLifeTime3_137i7.h
-rw-rw-r--. 1 scaldwell scaldwell 3327 Dec 6 2013 SlowRecoilsModelNamespace_trapLifeTime3_137i7.h~
-rw-r--r--. 1 scaldwell scaldwell 42183 Dec 6 2013 h_tof_137i7.root
-rw-rw-r--. 1 scaldwell scaldwell 3235 Dec 6 2013 BetaSinglesModelNamespace_135sb8.h
-rw-rw-r--. 1 scaldwell scaldwell 3235 Dec 6 2013 BetaSinglesModelNamespace_135sb7.h
-rw-rw-r--. 1 scaldwell scaldwell 3285 Dec 6 2013 BetaSinglesModelNamespace_135sb7.h~
-rw-rw-r--. 1 scaldwell scaldwell 3285 Dec 6 2013 BetaSinglesModelNamespace_135sb8.h~
-rw-rw-r--. 1 scaldwell scaldwell 2469 Dec 6 2013 BetaSinglesModelNamespace_135sb3b.h
-rw-r--r--. 1 scaldwell scaldwell 16672 Dec 6 2013 h_E_tof_no_dE.root
-rw-rw-r--. 1 scaldwell scaldwell 3454 Dec 5 2013 BetaSinglesModelNamespace_138i7.h
-rw-rw-r--. 1 scaldwell scaldwell 3456 Dec 5 2013 BetaSinglesModelNamespace_138i7.h~
-rwxrwxr-x. 1 scaldwell scaldwell 20080 Dec 5 2013 bdn_Sort_09272012_for_2013_run_grtrthan_1681
-rw-rw-r--. 1 scaldwell scaldwell 12536 Dec 5 2013 bdn_Sort_09272012_for_2013_run_grtrthan_1681.o
-rw-rw-r--. 1 scaldwell scaldwell 12929 Dec 5 2013 bdn_Sort_09272012_for_2013_run_grtrthan_1681.cxx
-rw-rw-r--. 1 scaldwell scaldwell 12902 Dec 5 2013 bdn_Sort_09272012_for_2013_run_grtrthan_1681.cxx~
-rwxrwxr-x. 1 scaldwell scaldwell 20080 Dec 5 2013 bdn_Sort_09272012_for_2013_run_lessthan_1682
-rw-rw-r--. 1 scaldwell scaldwell 12536 Dec 5 2013 bdn_Sort_09272012_for_2013_run_lessthan_1682.o
-rw-rw-r--. 1 scaldwell scaldwell 12920 Dec 5 2013 bdn_Sort_09272012_for_2013_run_lessthan_1682.cxx
-rw-rw-r--. 1 scaldwell scaldwell 12920 Dec 5 2013 bdn_Sort_09272012_for_2013_run_lessthan_1682.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 969 Dec 5 2013 rsort_138i
-rw-rw-r--. 1 scaldwell scaldwell 970 Dec 5 2013 rsort_138i~
drwxrwxr-x. 2 scaldwell scaldwell 4096 Dec 5 2013 ref_code_before_backup_restore_20131205
-rw-rw-r--. 1 scaldwell scaldwell 100907 Dec 4 2013 bdn_sort_20131203_ref.cxx
-rw-rw-r--. 1 scaldwell scaldwell 100907 Dec 4 2013 bdn_sort_20131203_ref.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 4919 Dec 4 2013 Makefile_20131204
-rwxrwxr-x. 1 scaldwell scaldwell 87854 Dec 4 2013 fit_beta_singles_20131203_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 6879 Dec 4 2013 fit_beta_singles_20131203_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 23322 Dec 4 2013 fit_beta_singles_20131203.cxx
-rw-rw-r--. 1 scaldwell scaldwell 23324 Dec 4 2013 fit_beta_singles_20131203.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 3456 Dec 4 2013 BetaSinglesModelNamespace_138i6b.h
-rw-rw-r--. 1 scaldwell scaldwell 23786 Dec 3 2013 fit_beta_singles_new.cxx
-rw-rw-r--. 1 scaldwell scaldwell 3430 Dec 3 2013 BetaSinglesModelNamespace_138i6b.h~
-rw-rw-r--. 1 scaldwell scaldwell 3331 Dec 3 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i6b.h
-rw-rw-r--. 1 scaldwell scaldwell 3326 Dec 3 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i6b.h~
-rw-rw-r--. 1 scaldwell scaldwell 3461 Dec 3 2013 BetaSinglesModelNamespace_145cs2.h
-rw-rw-r--. 1 scaldwell scaldwell 3461 Dec 3 2013 BetaSinglesModelNamespace_145cs2.h~
-rw-rw-r--. 1 scaldwell scaldwell 3326 Dec 3 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i6a.h
-rw-rw-r--. 1 scaldwell scaldwell 2676 Dec 3 2013 BetaSinglesModelNamespace_138i6a.h
-rw-rw-r--. 1 scaldwell scaldwell 1881 Dec 3 2013 test.c
-rw-rw-r--. 1 scaldwell scaldwell 1913 Dec 3 2013 test.c~
-rw-rw-r--. 1 scaldwell scaldwell 3322 Dec 3 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i5.h
-rw-rw-r--. 1 scaldwell scaldwell 3322 Dec 3 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i4.h
-rw-rw-r--. 1 scaldwell scaldwell 2674 Dec 3 2013 BetaSinglesModelNamespace_138i6.h
-rw-rw-r--. 1 scaldwell scaldwell 2681 Dec 3 2013 BetaSinglesModelNamespace_138i6.h~
-rw-rw-r--. 1 scaldwell scaldwell 3324 Dec 2 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i6.h
-rw-rw-r--. 1 scaldwell scaldwell 3227 Dec 2 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i5.h~
-rw-rw-r--. 1 scaldwell scaldwell 3324 Dec 2 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i4.h~
-rwxrwxr-x. 1 scaldwell scaldwell 79676 Dec 2 2013 bdn_sort_20131125
-rw-rw-r--. 1 scaldwell scaldwell 112552 Dec 2 2013 bdn_sort_20131125.o
-rw-rw-r--. 1 scaldwell scaldwell 99921 Dec 2 2013 bdn_sort_20131125.cxx
-rw-rw-r--. 1 scaldwell scaldwell 99859 Dec 2 2013 bdn_sort_20131125.cxx~
-rw-r--r--. 1 scaldwell scaldwell 2155582 Dec 2 2013 beta_fit_138i6.root
-rw-r--r--. 1 scaldwell scaldwell 612157 Dec 2 2013 slow_fit_trap_lifetime_138i6.root
-rw-rw-r--. 1 scaldwell scaldwell 3324 Dec 2 2013 SlowRecoilsModelNamespace_trapLifeTime3_138i6.h~
-rw-r--r--. 1 scaldwell scaldwell 18184 Dec 2 2013 tof_bkgd_1684_1690.root
-rw-r--r--. 1 scaldwell scaldwell 31028 Dec 2 2013 tof_1684-1690.root
-rw-rw-r--. 1 scaldwell scaldwell 3314 Dec 2 2013 SlowRecoilsModelNamespace_trapLifeTime3_140i1.h
-rw-rw-r--. 1 scaldwell scaldwell 3343 Dec 2 2013 SlowRecoilsModelNamespace_trapLifeTime3_140i1.h~
-rw-rw-r--. 1 scaldwell scaldwell 2665 Dec 1 2013 BetaSinglesModelNamespace_140i1.h
-rw-rw-r--. 1 scaldwell scaldwell 2665 Dec 1 2013 BetaSinglesModelNamespace_140i1.h~
-rw-rw-r--. 1 scaldwell scaldwell 3180 Nov 30 2013 SlowRecoilsModelNamespace_trapLifeTime3_135te1.h
-rw-rw-r--. 1 scaldwell scaldwell 3302 Nov 30 2013 SlowRecoilsModelNamespace_trapLifeTime3_135te1.h~
-rw-rw-r--. 1 scaldwell scaldwell 3182 Nov 29 2013 SlowRecoilsModelNamespace_trapLifeTime3_135sb3b.h
-rw-rw-r--. 1 scaldwell scaldwell 3180 Nov 29 2013 SlowRecoilsModelNamespace_trapLifeTime3_135sb3b.h~
-rw-rw-r--. 1 scaldwell scaldwell 2468 Nov 29 2013 BetaSinglesModelNamespace_135te1.h
-rw-rw-r--. 1 scaldwell scaldwell 2469 Nov 29 2013 BetaSinglesModelNamespace_135te1.h~
-rw-rw-r--. 1 scaldwell scaldwell 2471 Nov 28 2013 BetaSinglesModelNamespace_135sb3b.h~
-rw-rw-r--. 1 scaldwell scaldwell 2530 Nov 28 2013 SlowRecoilsModelNamespace_trapLifeTime3_135sb3a.h
-rw-rw-r--. 1 scaldwell scaldwell 2501 Nov 27 2013 BetaSinglesModelNamespace_145cs1.h
-rw-rw-r--. 1 scaldwell scaldwell 2501 Nov 27 2013 BetaSinglesModelNamespace_145cs1.h~
-rwxrwxr-x. 1 scaldwell scaldwell 82299 Nov 27 2013 fit_slow_recoils_cxx.so
-rw-rw-r--. 1 scaldwell scaldwell 6061 Nov 27 2013 fit_slow_recoils_cxx.d
-rw-rw-r--. 1 scaldwell scaldwell 2471 Nov 27 2013 SlowRecoilsModelNamespace_135sb3b.h
-rwxrwxr-x. 1 scaldwell scaldwell 76443 Nov 27 2013 bdn_sort
-rw-rw-r--. 1 scaldwell scaldwell 2502 Nov 27 2013 SlowRecoilsModelNamespace_trapLifeTime3_135sb3a.h~
-rw-rw-r--. 1 scaldwell scaldwell 2470 Nov 27 2013 SlowRecoilsModelNamespace_135sb3b.h~
-rw-rw-r--. 1 scaldwell scaldwell 22432 Nov 27 2013 fit_slow_recoils.cxx
-rw-rw-r--. 1 scaldwell scaldwell 22432 Nov 27 2013 fit_slow_recoils.cxx~
-rw-rw-r--. 1 scaldwell scaldwell 2471 Nov 27 2013 SlowRecoilsModelNamespace_135sb3a.h
-rw-rw-r--. 1 scaldwell scaldwell 2489 Nov 27 2013 SlowRecoilsModelNamespace_135sb3a.h~
-rw-rw-r--. 1 scaldwell scaldwell 2471 Nov 27 2013 BetaSinglesModelNamespace_135sb3a.h
-rw-rw-r--. 1 scaldwell scaldwell 2470 Nov 27 2013 BetaSinglesModelNamespace_135sb3a.h~
-rw-rw-r--. 1 scaldwell scaldwell 2470 Nov 27 2013 BetaSinglesModelNamespace_135sb3.h
-rw-rw-r--. 1 scaldwell scaldwell 2468 Nov 26 2013 BetaSinglesModelNamespace_135sb3.h~
-rw-rw-r--. 1 scaldwell scaldwell 123 Nov 26 2013 rerun_beta_singles.c
-rw-rw-r--. 1 scaldwell scaldwell 529 Nov 26 2013 nsort_144cs_1
-rw-rw-r--. 1 scaldwell scaldwell 527 Nov 26 2013 nsort_144cs_1~
-rw-rw-r--. 1 scaldwell scaldwell 2503 Nov 26 2013 BetaSinglesModelNamespace_144cs1.h
-rw-rw-r--. 1 scaldwell scaldwell 2502 Nov 26 2013 BetaSinglesModelNamespace_144cs1.h~
-rw-rw-r--. 1 scaldwell scaldwell 4982 Nov 26 2013 analysis.cxx
-rw-rw-r--. 1 scaldwell scaldwell 2242 Nov 26 2013 Makefile_old
-rw-rw-r--. 1 scaldwell scaldwell 2242 Nov 26 2013 Makefile_old~
-rwxrwxr-x. 1 scaldwell scaldwell 67961 Nov 26 2013 bdn_sort_20131120_noLiveTime
-rw-rw-r--. 1 scaldwell scaldwell 93672 Nov 26 2013 bdn_sort_20131120_noLiveTime.o
-rw-rw-r--. 1 scaldwell scaldwell 22355 Nov 26 2013 fit_beta_singles_trapLifetime.cxx
-rw-rw-r--. 1 scaldwell scaldwell 2465 Nov 25 2013 BetaSinglesModelNamespace_135sb2A.h
-rw-rw-r--. 1 scaldwell scaldwell 2465 Nov 25 2013 BetaSinglesModelNamespace_135sb2A.h~
-rw-rw-r--. 1 scaldwell scaldwell 2464 Nov 25 2013 BetaSinglesModelNamespace_135sb1A.h
-rw-rw-r--. 1 scaldwell scaldwell 2464 Nov 25 2013 BetaSinglesModelNamespace_135sb1A.h~
-rw-rw-r--. 1 scaldwell scaldwell 2464 Nov 25 2013 BetaSinglesModelNamespace_135sb1B.h
-rw-rw-r--. 1 scaldwell scaldwell 0 Nov 25 2013 11
-rw-rw-r--. 1 scaldwell bpt 377 Nov 25 2013 nsort_138i_1~
-rw-rw-r--. 1 scaldwell bpt 85207 Nov 25 2013 bdn_sort_20131120_noLiveTime.cxx
-rw-rw-r--. 1 scaldwell bpt 85207 Nov 25 2013 bdn_sort_20131120_noLiveTime.cxx~
-rwxrwxr-x. 1 scaldwell bpt 68251 Nov 25 2013 bdn_sort_20131120
-rw-rw-r--. 1 scaldwell bpt 94104 Nov 25 2013 bdn_sort_20131120.o
-rw-rw-r--. 1 scaldwell bpt 8632 Nov 22 2013 candyBar.c
-rw-rw-r--. 1 scaldwell bpt 85647 Nov 22 2013 bdn_sort_20131120.cxx
-rw-rw-r--. 1 scaldwell bpt 85647 Nov 22 2013 bdn_sort_20131120.cxx~
-rwxrwxr-x. 1 scaldwell bpt 67971 Nov 22 2013 bdn_sort_20131119
-rw-rw-r--. 1 scaldwell bpt 92496 Nov 22 2013 bdn_sort_20131119.o
-rwxrwxr-x. 1 scaldwell bpt 62889 Nov 22 2013 bdn_sort_ADC1_TDC1_only
-rw-rw-r--. 1 scaldwell bpt 86392 Nov 22 2013 bdn_sort_ADC1_TDC1_only.o
-rwxrwxr-x. 1 scaldwell bpt 66979 Nov 22 2013 bdn_sort_20131112
-rwxrwxr-x. 1 scaldwell bpt 54642 Nov 22 2013 bdn_sort_ADC1_only
-rw-rw-r--. 1 scaldwell bpt 77064 Nov 22 2013 bdn_sort_ADC1_only.o
-rw-rw-r--. 1 scaldwell bpt 90336 Nov 22 2013 bdn_sort_20131112.o