forked from shyam-iitb/D-hAnalysisnote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Note.log
7041 lines (5828 loc) · 348 KB
/
Note.log
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
This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex 2018.6.22) 28 JUL 2018 17:33
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**Note.tex
(./Note.tex
LaTeX2e <2016/02/01>
Babel <3.9q> and hyphenation patterns for 81 language(s) loaded.
(./cernphprep.cls
Document Style 'cernphprep'. Version <1.06>, <8 July 2010>
Document Class: cernphprep 2010/07/08
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2014/09/29 v1.4h Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/size11.clo
File: size11.clo 2014/09/29 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathptmx.sty
Package: mathptmx 2005/04/12 PSNFSS-v9.2a Times w/ Math, improved (SPQR, WaS)
LaTeX Font Info: Redeclaring symbol font `operators' on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `normal'
(Font) OT1/cmr/m/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Overwriting symbol font `operators' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ztmcm/m/n on input line 28.
LaTeX Font Info: Redeclaring symbol font `letters' on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `normal'
(Font) OML/cmm/m/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Overwriting symbol font `letters' in version `bold'
(Font) OML/cmm/b/it --> OML/ztmcm/m/it on input line 29.
LaTeX Font Info: Redeclaring symbol font `symbols' on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `normal'
(Font) OMS/cmsy/m/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Overwriting symbol font `symbols' in version `bold'
(Font) OMS/cmsy/b/n --> OMS/ztmcm/m/n on input line 30.
LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold'
(Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31.
\symbold=\mathgroup4
\symitalic=\mathgroup5
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold'
(Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34.
LaTeX Font Info: Redeclaring math alphabet \mathit on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal'
(Font) OT1/cmr/m/it --> OT1/ptm/m/it on input line 35.
LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold'
(Font) OT1/cmr/bx/it --> OT1/ptm/m/it on input line 35.
LaTeX Info: Redefining \hbar on input line 50.
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2014/10/28 v1.0g Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2016/01/03 v1.0q Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 95.
(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
)
\Gread@gobject=\count87
))
\Gin@req@height=\dimen103
\Gin@req@width=\dimen104
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2016/03/03 v2.15a AMS math features
\@mathmargin=\skip43
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks15
\ex@=\dimen105
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen106
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count88
LaTeX Info: Redefining \frac on input line 199.
\uproot@=\count89
\leftroot@=\count90
LaTeX Info: Redefining \overline on input line 297.
\classnum@=\count91
\DOTSCASE@=\count92
LaTeX Info: Redefining \ldots on input line 394.
LaTeX Info: Redefining \dots on input line 397.
LaTeX Info: Redefining \cdots on input line 518.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen107
LaTeX Font Info: Redeclaring font encoding OML on input line 630.
LaTeX Font Info: Redeclaring font encoding OMS on input line 631.
\macc@depth=\count93
\c@MaxMatrixCols=\count94
\dotsspace@=\muskip10
\c@parentequation=\count95
\dspbrk@lvl=\count96
\tag@help=\toks16
\row@=\count97
\column@=\count98
\maxfields@=\count99
\andhelp@=\toks17
\eqnshift@=\dimen108
\alignsep@=\dimen109
\tagshift@=\dimen110
\tagwidth@=\dimen111
\totwidth@=\dimen112
\lineht@=\dimen113
\@envbody=\toks18
\multlinegap=\skip44
\multlinetaggap=\skip45
\mathdisplay@stack=\toks19
LaTeX Info: Redefining \[ on input line 2735.
LaTeX Info: Redefining \] on input line 2736.
)
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2013/01/14 v3.01 AMS font symbols
(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support
\symAMSa=\mathgroup6
\symAMSb=\mathgroup7
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 106.
))
(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty
Package: array 2014/10/28 v2.4c Tabular extension package (FMi)
\col@sep=\dimen114
\extrarowheight=\dimen115
\NC@list=\toks20
\extratabsurround=\skip46
\backup@length=\skip47
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty
Package: tabularx 2014/10/28 v2.10 `tabularx' package (DPC)
\TX@col@width=\dimen116
\TX@old@table=\dimen117
\TX@old@col=\dimen118
\TX@target=\dimen119
\TX@delta=\dimen120
\TX@cols=\count100
\TX@ftn=\toks21
)
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip11
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
(/usr/share/texlive/texmf-dist/tex/latex/subfigure/subfigure.sty
Package: subfigure 2002/03/15 v2.1.5 subfigure package
\subfigtopskip=\skip48
\subfigcapskip=\skip49
\subfigcaptopadj=\dimen121
\subfigbottomskip=\skip50
\subfigcapmargin=\dimen122
\subfiglabelskip=\skip51
\c@subfigure=\count101
\c@lofdepth=\count102
\c@subtable=\count103
\c@lotdepth=\count104
****************************************
* Local config file subfigure.cfg used *
****************************************
(/usr/share/texlive/texmf-dist/tex/latex/subfigure/subfigure.cfg)
\subfig@top=\skip52
\subfig@bottom=\skip53
)
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
Document Class "cernphprep" 1.06 (8 July 2010)
\c@instfoot=\count105
(/usr/share/texlive/texmf-dist/tex/latex/truncate/truncate.sty
Package: truncate 2001/08/20 ver 3.6
\@Trunc@RestHyph=\toks22
)
(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
\fancy@headwidth=\skip54
\f@ncyO@elh=\skip55
\f@ncyO@erh=\skip56
\f@ncyO@olh=\skip57
\f@ncyO@orh=\skip58
\f@ncyO@elf=\skip59
\f@ncyO@erf=\skip60
\f@ncyO@olf=\skip61
\f@ncyO@orf=\skip62
))
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
Package: babel 2016/02/24 3.9q The Babel package
(/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf
Language: english 2012/08/20 v3.3p English support from the babel system
(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def
File: babel.def 2016/02/24 3.9q Babel common definitions
\babel@savecnt=\count106
\U@D=\dimen123
)
\l@canadian = a dialect from \language\l@american
\l@australian = a dialect from \language\l@british
\l@newzealand = a dialect from \language\l@british
))
(/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty
Package: verbatim 2014/10/28 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks23
\verbatim@line=\toks24
\verbatim@in@stream=\read1
)
(/usr/share/texlive/texmf-dist/tex/latex/lineno/lineno.sty
Package: lineno 2005/11/02 line numbers on paragraphs v4.41
\linenopenalty=\count107
\output=\toks25
\linenoprevgraf=\count108
\linenumbersep=\dimen124
\linenumberwidth=\dimen125
\c@linenumber=\count109
\c@pagewiselinenumber=\count110
\c@LN@truepage=\count111
\c@internallinenumber=\count112
\c@internallinenumbers=\count113
\quotelinenumbersep=\dimen126
\bframerule=\dimen127
\bframesep=\dimen128
\bframebox=\box28
LaTeX Info: Redefining \\ on input line 3056.
)
(/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty
Package: makeidx 2014/09/29 v1.0m Standard LaTeX package
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
Package: color 2016/01/03 v1.1b Standard LaTeX Color (DPC)
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg
File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
)
Package color Info: Driver file: pdftex.def on input line 143.
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf.sty
Package: epstopdf 2010/02/09 v2.5 Conversion with epstopdf on the fly (HO)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
))
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
Package grfext Info: Graphics extension search list:
(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 452.
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
)))
(/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty
\bigstrutjot=\dimen129
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/lscape.sty
Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO)
Package hobsub Info: Skipping package `infwarerr' (already loaded).
Package hobsub Info: Skipping package `ltxcmds' (already loaded).
Package hobsub Info: Skipping package `ifluatex' (already loaded).
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
Package hobsub Info: Skipping package `ifpdf' (already loaded).
Package hobsub Info: Skipping package `etexcmds' (already loaded).
Package hobsub Info: Skipping package `kvsetkeys' (already loaded).
Package hobsub Info: Skipping package `kvdefinekeys' (already loaded).
Package hobsub Info: Skipping package `pdftexcmds' (already loaded).
Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
)
Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty
Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen130
\Hy@linkcounter=\count114
\Hy@pagecounter=\count115
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count116
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Hyper figures OFF on input line 4443.
Package hyperref Info: Link nesting OFF on input line 4448.
Package hyperref Info: Hyper index ON on input line 4451.
Package hyperref Info: Plain pages OFF on input line 4458.
Package hyperref Info: Backreferencing OFF on input line 4463.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4688.
\c@Hy@tempcnt=\count117
LaTeX Info: Redefining \url on input line 5041.
\XeTeXLinkMargin=\dimen131
\Fld@menulength=\count118
\Field@Width=\dimen132
\Fld@charsize=\dimen133
Package hyperref Info: Hyper figures OFF on input line 6295.
Package hyperref Info: Link nesting OFF on input line 6300.
Package hyperref Info: Hyper index ON on input line 6303.
Package hyperref Info: backreferencing OFF on input line 6310.
Package hyperref Info: Link coloring OFF on input line 6315.
Package hyperref Info: Link coloring with OCG OFF on input line 6320.
Package hyperref Info: PDF/A mode OFF on input line 6325.
LaTeX Info: Redefining \ref on input line 6365.
LaTeX Info: Redefining \pageref on input line 6369.
\Hy@abspage=\count119
\c@Item=\count120
\c@Hfootnote=\count121
)
Package hyperref Message: Driver (autodetected): hpdftex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2012/11/06 v6.83m Hyperref driver for pdfTeX
\Fld@listcount=\count122
\c@bookmark@seq@number=\count123
(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip63
)
(./Note.aux)
\openout1 = `Note.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 78.
LaTeX Font Info: ... okay on input line 78.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 78.
LaTeX Font Info: ... okay on input line 78.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 78.
LaTeX Font Info: ... okay on input line 78.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 78.
LaTeX Font Info: ... okay on input line 78.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 78.
LaTeX Font Info: ... okay on input line 78.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 78.
LaTeX Font Info: ... okay on input line 78.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 78.
LaTeX Font Info: ... okay on input line 78.
LaTeX Font Info: Try loading font information for OT1+ptm on input line 78.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd
File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm.
)
(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count124
\scratchdimen=\dimen134
\scratchbox=\box29
\nofMPsegments=\count125
\nofMParguments=\count126
\everyMPshowfont=\toks26
\MPscratchCnt=\count127
\MPscratchDim=\dimen135
\MPnumerator=\count128
\makeMPintoPDFobject=\count129
\everyMPtoPDFconversion=\toks27
)
\AtBeginShipoutBox=\box30
Package hyperref Info: Link coloring OFF on input line 78.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2012/10/27 v2.43 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
)
\c@section@level=\count130
)
LaTeX Info: Redefining \ref on input line 78.
LaTeX Info: Redefining \pageref on input line 78.
LaTeX Info: Redefining \nameref on input line 78.
(./Note.out) (./Note.out)
\@outlinefile=\write3
\openout3 = `Note.out'.
<alicelogo.pdf, id=124, 116.1138pt x 142.61281pt>
File: alicelogo.pdf Graphic file (type pdf)
<use alicelogo.pdf>
Package pdftex.def Info: alicelogo.pdf used on input line 85.
(pdftex.def) Requested size: 46.3313pt x 56.9055pt.
<cernlogo.pdf, id=125, 426.59375pt x 427.5975pt>
File: cernlogo.pdf Graphic file (type pdf)
<use cernlogo.pdf>
Package pdftex.def Info: cernlogo.pdf used on input line 85.
(pdftex.def) Requested size: 56.76749pt x 56.9055pt.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <14.4> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 85.
LaTeX Font Info: Try loading font information for OT1+ztmcm on input line 85
.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ztmcm.fd
File: ot1ztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OT1/ztmcm.
)
LaTeX Font Info: Try loading font information for OML+ztmcm on input line 85
.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omlztmcm.fd
File: omlztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OML/ztmcm.
)
LaTeX Font Info: Try loading font information for OMS+ztmcm on input line 85
.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsztmcm.fd
File: omsztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OMS/ztmcm.
)
LaTeX Font Info: Try loading font information for OMX+ztmcm on input line 85
.
(/usr/share/texlive/texmf-dist/tex/latex/psnfss/omxztmcm.fd
File: omxztmcm.fd 2000/01/03 Fontinst v1.801 font definitions for OMX/ztmcm.
)
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10.95> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 85.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <8> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 85.
(./Sections/Abstract/Abstract.tex
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 1.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7.4> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 2.
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <6> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 2.
) [1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./alicelogo.pdf> <./cernlo
go.pdf>] [2
]
LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <12> not available
(Font) Font shape `OT1/ptm/b/n' tried instead on input line 97.
(./Note.toc
Underfull \vbox (badness 1762) has occurred while \output is active []
pdfTeX warning (ext4): destination with the same identifier (name{page.1}) has
been already used, duplicate ignored
<to be read again>
\relax
l.31 ...numberline {6}Bibliography}{98}{section.6}
[1])
\tf@toc=\write4
\openout4 = `Note.toc'.
pdfTeX warning (ext4): destination with the same identifier (name{page.2}) has
been already used, duplicate ignored
<to be read again>
\relax
l.99 \newpage
[2] (./Sections/1Introduction/Introduction_Motivation.tex
Underfull \hbox (badness 10000) in paragraph at lines 23--24
[]
) [3] (./Sections/2Data_Sample/Data_Sample.tex
Overfull \hbox (3.46954pt too wide) in paragraph at lines 14--15
[]|\OT1/ptm/b/n/10.95 nEvents|
[]
Underfull \hbox (badness 10000) in paragraph at lines 16--16
[]|\OT1/ptm/m/n/10.95 Monte-
[]
Underfull \hbox (badness 10000) in paragraph at lines 16--16
[]|\OT1/ptm/m/n/10.95 LHC17d2a$[]$fast$[]$new
[]
Underfull \hbox (badness 10000) in paragraph at lines 16--16
\OT1/ptm/m/n/10.95 (c/b en-riched),
[]
Underfull \hbox (badness 10000) in paragraph at lines 16--16
\OT1/ptm/m/n/10.95 LHC17f2b$[]$fast (MB),
[]
Underfull \hbox (badness 10000) in paragraph at lines 16--16
\OT1/ptm/m/n/10.95 LHC17f2b$[]$cent$[]$woSDD
[]
Underfull \hbox (badness 10000) in paragraph at lines 19--19
[]|\OT1/ptm/m/n/10.95 LHC16q,
[]
Underfull \hbox (badness 10000) in paragraph at lines 19--20
[]|\OT1/ptm/m/n/10.95 261M
[]
Underfull \hbox (badness 10000) in paragraph at lines 22--22
[]|\OT1/ptm/m/n/10.95 LHC16t,
[]
Underfull \hbox (badness 10000) in paragraph at lines 13--29
[]
LaTeX Warning: `h' float specifier changed to `ht'.
Overfull \hbox (5.28674pt too wide) in paragraph at lines 39--42
[]\OT1/ptm/m/n/10.95 For this rea-son, the D-hadron cor-re-la-tion dis-tri-bu-t
ion has been com-pared on LHC16q$[]$pass1$[]$CENT$[]$wSDD
[]
[4]
<figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins2to3_PoolInt_thr0dot
3to99dot0_Superimp.png, id=214, 1200.485pt x 726.715pt>
File: figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins2to3_PoolInt_th
r0dot3to99dot0_Superimp.png Graphic file (type png)
<use figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins2to3_PoolInt_thr
0dot3to99dot0_Superimp.png>
Package pdftex.def Info: figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtInt
Bins2to3_PoolInt_thr0dot3to99dot0_Superimp.png used on input line 45.
(pdftex.def) Requested size: 364.19653pt x 170.7115pt.
<figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins4to6_PoolInt_thr0dot
3to99dot0_Superimp.png, id=215, 1200.485pt x 726.715pt>
File: figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins4to6_PoolInt_th
r0dot3to99dot0_Superimp.png Graphic file (type png)
<use figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins4to6_PoolInt_thr
0dot3to99dot0_Superimp.png>
Package pdftex.def Info: figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtInt
Bins4to6_PoolInt_thr0dot3to99dot0_Superimp.png used on input line 46.
(pdftex.def) Requested size: 364.19653pt x 170.7115pt.
<figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins7to9_PoolInt_thr0dot
3to99dot0_Superimp.png, id=216, 1200.485pt x 726.715pt>
File: figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins7to9_PoolInt_th
r0dot3to99dot0_Superimp.png Graphic file (type png)
<use figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins7to9_PoolInt_thr
0dot3to99dot0_Superimp.png>
Package pdftex.def Info: figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtInt
Bins7to9_PoolInt_thr0dot3to99dot0_Superimp.png used on input line 48.
(pdftex.def) Requested size: 364.19653pt x 170.7115pt.
LaTeX Warning: `!h' float specifier changed to `!ht'.
<figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins2to3_Pool
Int_thr0dot3to99dot0.png, id=217, 1200.485pt x 726.715pt>
File: figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins2to3
_PoolInt_thr0dot3to99dot0.png Graphic file (type png)
<use figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins2to3_
PoolInt_thr0dot3to99dot0.png>
Package pdftex.def Info: figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_C
anvas_PtIntBins2to3_PoolInt_thr0dot3to99dot0.png used on input line 55.
(pdftex.def) Requested size: 364.19653pt x 170.7115pt.
<figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins4to6_Pool
Int_thr0dot3to99dot0.png, id=218, 1200.485pt x 726.715pt>
File: figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins4to6
_PoolInt_thr0dot3to99dot0.png Graphic file (type png)
<use figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins4to6_
PoolInt_thr0dot3to99dot0.png>
Package pdftex.def Info: figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_C
anvas_PtIntBins4to6_PoolInt_thr0dot3to99dot0.png used on input line 56.
(pdftex.def) Requested size: 364.19653pt x 170.7115pt.
<figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins7to9_Pool
Int_thr0dot3to99dot0.png, id=219, 1200.485pt x 726.715pt>
File: figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins7to9
_PoolInt_thr0dot3to99dot0.png Graphic file (type png)
<use figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins7to9_
PoolInt_thr0dot3to99dot0.png>
Package pdftex.def Info: figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_C
anvas_PtIntBins7to9_PoolInt_thr0dot3to99dot0.png used on input line 58.
(pdftex.def) Requested size: 364.19653pt x 170.7115pt.
LaTeX Warning: `!h' float specifier changed to `!ht'.
[5]
Underfull \vbox (badness 10000) has occurred while \output is active []
[6 <./figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canvas_PtIntBins2to3_PoolInt_t
hr0dot3to99dot0_Superimp.png> <./figures/wSDD_vs_woSDD/AzimCorrDistr_Dstar_Canv
as_PtIntBins4to6_PoolInt_thr0dot3to99dot0_Superimp.png> <./figures/wSDD_vs_woSD
D/AzimCorrDistr_Dstar_Canvas_PtIntBins7to9_PoolInt_thr0dot3to99dot0_Superimp.pn
g>])
[7 <./figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins2to3
_PoolInt_thr0dot3to99dot0.png> <./figures/wSDD_vs_woSDD/Uncertanty_AzimCorrDist
r_Dstar_Canvas_PtIntBins4to6_PoolInt_thr0dot3to99dot0.png> <./figures/wSDD_vs_w
oSDD/Uncertanty_AzimCorrDistr_Dstar_Canvas_PtIntBins7to9_PoolInt_thr0dot3to99do
t0.png>] (./Sections/3Analysis_Strategy/Analysis_Strategy.tex
Underfull \hbox (badness 10000) in paragraph at lines 1--5
[]
Overfull \hbox (2.64697pt too wide) in paragraph at lines 22--28
[]$[]$ \OT1/ptm/m/n/10.95 Par-ti-cle pairs are formed by cor-re-lat-ing each
[]
Overfull \hbox (4.21312pt too wide) in paragraph at lines 30--34
[]$[]$ \OT1/ptm/m/n/10.95 The an-gu-
[]
Underfull \hbox (badness 10000) in paragraph at lines 30--34
[]
[8]
Overfull \hbox (23.68347pt too wide) in paragraph at lines 41--49
\OT1/ptm/m/n/10.95 where $\OML/ztmcm/m/it/10.95 N[]$ \OT1/ptm/m/n/10.95 is the
to-tal num-ber of cor-re-lated D-hadron pairs. The func-tions $\OML/ztmcm/m/it/
10.95 S\OT1/ztmcm/m/n/10.95 (^^A\OML/ztmcm/m/it/10.95 ^^Q; \OT1/ztmcm/m/n/10.95
^^A\OML/ztmcm/m/it/10.95 '\OT1/ztmcm/m/n/10.95 )$ \OT1/ptm/m/n/10.95 and $\OML
/ztmcm/m/it/10.95 B[]\OT1/ztmcm/m/n/10.95 (^^A\OML/ztmcm/m/it/10.95 ^^Q; \OT1/z
tmcm/m/n/10.95 ^^A\OML/ztmcm/m/it/10.95 '\OT1/ztmcm/m/n/10.95 )$
[]
<figures/Dzero/h1D_Dzero_Canvas_PtIntBins9to11_PoolInt_thr1dot0to99dot0.png, id
=255, 1601.985pt x 473.77pt>
File: figures/Dzero/h1D_Dzero_Canvas_PtIntBins9to11_PoolInt_thr1dot0to99dot0.pn
g Graphic file (type png)
<use figures/Dzero/h1D_Dzero_Canvas_PtIntBins9to11_PoolInt_thr1dot0to99dot0.png
>
Package pdftex.def Info: figures/Dzero/h1D_Dzero_Canvas_PtIntBins9to11_PoolInt_
thr1dot0to99dot0.png used on input line 63.
(pdftex.def) Requested size: 455.24408pt x 134.62825pt.
<figures/Dzero/h1D_Dzero_Canvas_Normalized_PtIntBins9to11_PoolInt_thr0dot3to99d
ot0.png, id=256, 1200.485pt x 674.52pt>
File: figures/Dzero/h1D_Dzero_Canvas_Normalized_PtIntBins9to11_PoolInt_thr0dot3
to99dot0.png Graphic file (type png)
<use figures/Dzero/h1D_Dzero_Canvas_Normalized_PtIntBins9to11_PoolInt_thr0dot3t
o99dot0.png>
Package pdftex.def Info: figures/Dzero/h1D_Dzero_Canvas_Normalized_PtIntBins9to
11_PoolInt_thr0dot3to99dot0.png used on input line 64.
(pdftex.def) Requested size: 364.19664pt x 204.63216pt.
LaTeX Warning: `h' float specifier changed to `ht'.
[9]
Overfull \hbox (0.18333pt too wide) in paragraph at lines 99--107
[]$[]$ \OT1/ptm/m/n/10.95 The prop-er-ties of the az-imuthal cor-re-la-tion dis
-tri-bu-tion are quan-
[]
[10 <./figures/Dzero/h1D_Dzero_Canvas_PtIntBins9to11_PoolInt_thr1dot0to99dot0.p
ng> <./figures/Dzero/h1D_Dzero_Canvas_Normalized_PtIntBins9to11_PoolInt_thr0dot
3to99dot0.png>]
<figures/Dzero/InvMassDistributions_Dzero_Bins4to5.png, id=279, 1401.235pt x 77
4.895pt>
File: figures/Dzero/InvMassDistributions_Dzero_Bins4to5.png Graphic file (type
png)
<use figures/Dzero/InvMassDistributions_Dzero_Bins4to5.png>
Package pdftex.def Info: figures/Dzero/InvMassDistributions_Dzero_Bins4to5.png
used on input line 128.
(pdftex.def) Requested size: 455.24632pt x 159.32745pt.
<figures/Dzero/InvMassDistributions_Dzero_Bins6to8.png, id=280, 1903.11pt x 774
.895pt>
File: figures/Dzero/InvMassDistributions_Dzero_Bins6to8.png Graphic file (type
png)
<use figures/Dzero/InvMassDistributions_Dzero_Bins6to8.png>
Package pdftex.def Info: figures/Dzero/InvMassDistributions_Dzero_Bins6to8.png
used on input line 129.
(pdftex.def) Requested size: 455.2457pt x 159.32745pt.
<figures/Dzero/InvMassDistributions_Dzero_Bins9to11.png, id=281, 1903.11pt x 77
4.895pt>
File: figures/Dzero/InvMassDistributions_Dzero_Bins9to11.png Graphic file (type
png)
<use figures/Dzero/InvMassDistributions_Dzero_Bins9to11.png>
Package pdftex.def Info: figures/Dzero/InvMassDistributions_Dzero_Bins9to11.png
used on input line 130.
(pdftex.def) Requested size: 455.2457pt x 159.32745pt.
<figures/Dzero/InvMassDistributions_Dzero_Bins12to12.png, id=282, 1401.235pt x
774.895pt>
File: figures/Dzero/InvMassDistributions_Dzero_Bins12to12.png Graphic file (typ
e png)
<use figures/Dzero/InvMassDistributions_Dzero_Bins12to12.png>
Package pdftex.def Info: figures/Dzero/InvMassDistributions_Dzero_Bins12to12.pn
g used on input line 131.
(pdftex.def) Requested size: 273.14351pt x 159.32745pt.
LaTeX Warning: Float too large for page by 22.61597pt on input line 136.
<figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins2to3.png, id=283, 1401.235pt
x 774.895pt>
File: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins2to3.png Graphic file (
type png)
<use figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins2to3.png>
Package pdftex.def Info: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins2to3
.png used on input line 140.
(pdftex.def) Requested size: 455.24632pt x 159.32745pt.
<figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins4to6.png, id=284, 1903.11pt
x 774.895pt>
File: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins4to6.png Graphic file (
type png)
<use figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins4to6.png>
Package pdftex.def Info: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins4to6
.png used on input line 141.
(pdftex.def) Requested size: 455.2457pt x 159.32745pt.
<figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins7to9.png, id=285, 1903.11pt
x 774.895pt>
File: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins7to9.png Graphic file (
type png)
<use figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins7to9.png>
Package pdftex.def Info: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins7to9
.png used on input line 142.
(pdftex.def) Requested size: 455.2457pt x 159.32745pt.
<figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins10to10.png, id=286, 1401.235
pt x 774.895pt>
File: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins10to10.png Graphic file
(type png)
<use figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins10to10.png>
Package pdftex.def Info: figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins10to
10.png used on input line 143.
(pdftex.def) Requested size: 273.14351pt x 159.32745pt.
LaTeX Warning: Float too large for page by 22.61597pt on input line 147.
<figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins2to2.png, id=287, 1401.2
35pt x 774.895pt>
File: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins2to2.png Graphic fi
le (type png)
<use figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins2to2.png>
Package pdftex.def Info: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins
2to2.png used on input line 151.
(pdftex.def) Requested size: 427.93054pt x 236.64413pt.
<figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins3to4.png, id=288, 1401.2
35pt x 774.895pt>
File: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins3to4.png Graphic fi
le (type png)
<use figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins3to4.png>
Package pdftex.def Info: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins
3to4.png used on input line 152.
(pdftex.def) Requested size: 427.93054pt x 236.64413pt.
<figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins5to7.png, id=289, 1903.1
1pt x 774.895pt>
File: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins5to7.png Graphic fi
le (type png)
<use figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins5to7.png>
Package pdftex.def Info: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins
5to7.png used on input line 153.
(pdftex.def) Requested size: 427.93054pt x 174.23743pt.
LaTeX Warning: `h' float specifier changed to `ht'.
<figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins8to12.png, id=290, 999.7
35pt x 774.895pt>
File: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins8to12.png Graphic f
ile (type png)
<use figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins8to12.png>
Package pdftex.def Info: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins
8to12.png used on input line 158.
(pdftex.def) Requested size: 427.93054pt x 331.68489pt.
<figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins13to13.png, id=291, 1401
.235pt x 774.895pt>
File: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins13to13.png Graphic
file (type png)
<use figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins13to13.png>
Package pdftex.def Info: figures/DplusPlotsweff/InvMassDistributions_Dplus_Bins
13to13.png used on input line 159.
(pdftex.def) Requested size: 427.93054pt x 236.64413pt.
LaTeX Warning: `h' float specifier changed to `ht'.
<figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins3to5_PoolInt_thr03t
o99_Superimp.png, id=294, 1200.485pt x 875.27pt>
File: figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins3to5_PoolInt_t
hr03to99_Superimp.png Graphic file (type png)
<use figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins3to5_PoolInt_th
r03to99_Superimp.png>
Package pdftex.def Info: figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIn
tBins3to5_PoolInt_thr03to99_Superimp.png used on input line 170.
(pdftex.def) Requested size: 213.9531pt x 159.33144pt.
<figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins3to5_Poo
lInt_thr03to99.png, id=295, 1200.485pt x 875.27pt>
File: figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins3to
5_PoolInt_thr03to99.png Graphic file (type png)
<use figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins3to5
_PoolInt_thr03to99.png>
Package pdftex.def Info: figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_
Canvas_PtIntBins3to5_PoolInt_thr03to99.png used on input line 171.
(pdftex.def) Requested size: 213.9531pt x 159.33144pt.
<figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins6to8_PoolInt_thr03t
o99_Superimp.png, id=296, 1200.485pt x 875.27pt>
File: figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins6to8_PoolInt_t
hr03to99_Superimp.png Graphic file (type png)
<use figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins6to8_PoolInt_th
r03to99_Superimp.png>
Package pdftex.def Info: figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIn
tBins6to8_PoolInt_thr03to99_Superimp.png used on input line 172.
(pdftex.def) Requested size: 213.9531pt x 159.33144pt.
<figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins6to8_Poo
lInt_thr03to99.png, id=297, 1200.485pt x 875.27pt>
File: figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins6to
8_PoolInt_thr03to99.png Graphic file (type png)
<use figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins6to8
_PoolInt_thr03to99.png>
Package pdftex.def Info: figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_
Canvas_PtIntBins6to8_PoolInt_thr03to99.png used on input line 173.
(pdftex.def) Requested size: 213.9531pt x 159.33144pt.
<figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins9to10_PoolInt_thr03
to99_Superimp.png, id=298, 1200.485pt x 875.27pt>
File: figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins9to10_PoolInt_
thr03to99_Superimp.png Graphic file (type png)
<use figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIntBins9to10_PoolInt_t
hr03to99_Superimp.png>
Package pdftex.def Info: figures/Cut_Optimiz_D0/AzimCorrDistr_Dzero_Canvas_PtIn
tBins9to10_PoolInt_thr03to99_Superimp.png used on input line 174.
(pdftex.def) Requested size: 213.9531pt x 159.33144pt.
<figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins9to10_Po
olInt_thr03to99.png, id=299, 1200.485pt x 875.27pt>
File: figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins9to
10_PoolInt_thr03to99.png Graphic file (type png)
<use figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_Canvas_PtIntBins9to1
0_PoolInt_thr03to99.png>
Package pdftex.def Info: figures/Cut_Optimiz_D0/Uncertanty_AzimCorrDistr_Dzero_
Canvas_PtIntBins9to10_PoolInt_thr03to99.png used on input line 175.
(pdftex.def) Requested size: 213.9531pt x 159.33144pt.
LaTeX Font Info: Font shape `OT1/ptm/bx/it' in size <10.95> not available
(Font) Font shape `OT1/ptm/b/it' tried instead on input line 189.
(./Sections/3Analysis_Strategy/EventMixing.tex
[11] [12 <./figures/Dzero/InvMassDistributions_Dzero_Bins4to5.png> <./figures/D
zero/InvMassDistributions_Dzero_Bins6to8.png> <./figures/Dzero/InvMassDistribut
ions_Dzero_Bins9to11.png> <./figures/Dzero/InvMassDistributions_Dzero_Bins12to1
2.png>] [13 <./figures/Dstar_wEFF/InvMassDistributions_Dstar_Bins2to3.png> <./f
igures/Dstar_wEFF/InvMassDistributions_Dstar_Bins4to6.png> <./figures/Dstar_wEF
F/InvMassDistributions_Dstar_Bins7to9.png> <./figures/Dstar_wEFF/InvMassDistrib
utions_Dstar_Bins10to10.png>]
<figures/Dzero/Example_SE_ME_D0_Deta10.png, id=326, 1601.985pt x 875.27pt>
File: figures/Dzero/Example_SE_ME_D0_Deta10.png Graphic file (type png)
<use figures/Dzero/Example_SE_ME_D0_Deta10.png>
Package pdftex.def Info: figures/Dzero/Example_SE_ME_D0_Deta10.png used on inpu
t line 39.
(pdftex.def) Requested size: 455.24408pt x 248.71999pt.
<figures/Dzero/Example_SE_ME_D0_Deta12.png, id=327, 1601.985pt x 875.27pt>
File: figures/Dzero/Example_SE_ME_D0_Deta12.png Graphic file (type png)