-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
983 lines (858 loc) · 69.6 KB
/
index.html
File metadata and controls
983 lines (858 loc) · 69.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
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
<!DOCTYPE HTML>
<!--
Ms. Brunella D'Anzi
-->
<html>
<head>
<title>Ms. Brunella D'Anzi</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=100%, initial-scale=0.5, user-scalable=no" />
<!-- Style -->
<link rel="stylesheet" href="xmas-counter/style.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="piano_app/style.css">
<link rel="stylesheet" href="duck/style.css" />
<link rel="stylesheet" href="codigotchi/style.css" />
<link rel="stylesheet" href="meteo/style.css" />
<link rel="stylesheet" href="advent-calendar/style.css" />
<link rel="stylesheet" href="xmas-list/style.css" />
<link rel="stylesheet" href="merry-xmas-generator/style.css" />
<link rel="stylesheet" href="chatventure/style.css" />
<link rel="stylesheet" href="Kart_Crash/style.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<!-- Icon -->
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="/images/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/images/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/images/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/images/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="/images/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/images/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/images/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/images/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="/images/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="/images/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="/images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/images/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="/images/favicon-128.png" sizes="128x128" />
<!-- Font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet" />
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Livvic:wght@500;600;700&display=swap" rel="stylesheet">
<!-- Space Grotesk Font -->
<link href="https://fonts.googleapis.com/css?family=Space+Grotesk:300,regular,500,600,700" rel="stylesheet" />
</head>
<body class="light-mode is-preload" id="body">
<div class="loader-wrapper">
<div class="loader">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Wrapper -->
<div id="wrapper">
<!-- Panel (Banner) -->
<section class="panel banner right color2" id="zero">
<div class="content span-4-75">
<h2 class="major"><center>Hi there! I am Ms. Brunella D'Anzi.<br />
Welcome to my website!<br /></center>
</h2>
<p style= "text-align:justify">I am a Ph.D. student in experimental High Energy Physics at <strong><a href="https://manageweb.ict.uniba.it" target="_blank">Bari University</a></strong> and a member of the <strong><a href="https://cms.cern/" target="_blank">CMS</a></strong> Collaboration at <strong><a href="https://home.cern/" target="_blank">CERN</a></strong> in Geneva. My research interests include the measurements of the Higgs boson self-couplings via double Higgs production events, the CMS tracking efficiency measurements, and the search for Standard Model anomalies in CMS data using Machine Learning techniques. I am also involved in the R&D of new gaseous detectors to be installed at <strong><a href="https://fcc.web.cern.ch" target="_blank">FCC</a></strong> or <strong><a href="https://cms.cern/" target="_blank">CEPC</a></strong>.</p>
<ul class="actions">
<li><a href="#first" class="button normal icon solid fa-book">Education</a></li>
<li><a href="#second" class="button normal icon solid fa-chart-bar">Talks and Publications</a></li>
<li><a href="https://brunelladanzi.blogspot.com" target="_blank" class="button normal icon solid fa-comment">Blog</a></li>
<li><a href="https://github.com/bdanzi/CV_ita/raw/gh-pages/cv_danzi_brunella.pdf" class="button normal icon solid fa-cog">CV(IT)</a></li>
</ul>
<ul class="actions">
<li><a href="#third" class="button normal icon solid fa-code">Teaching and Awards</a></li>
<li><a href="#fourth" class="button normal icon solid fa-camera-retro">Photos</a></li>
<li><a href="#fifth" class="button normal icon solid fa-paper-plane">Contacts</a></li>
<li><a href="https://github.com/bdanzi/CV/raw/gh-pages/cv_danzi_brunella.pdf" class="button normal icon solid fa-cog">CV(EN)</a></li>
</ul>
<ul class="actions">
<button type="button" class="button primary color2 circle icon solid fa-sun" id="dark_light" onclick="toggleDarkLight();changeImage();" name="dark_light" title="Turn off/on the lights!"></button>
<audio id="myAudio" preload="auto" loop="true">
<source src="images/BeethovenAdagio.mp3" type="audio/mp3">
</audio>
<li><button type="button" class="button primary color2 circle icon solid fa-play" id="play_pause" onclick="togglePlayPause();changePause();" name="play_pause" title="Enjoy/Stop the Beethoven's Sonata Adagio for Piano and Violin n.6 in La major op.30 n.1!"></button></li>
<li><a href="#first" class="button primary color2 circle icon solid fa-angle-right" title="Next Panel">Next</a></li>
</ul>
</div>
<div class="content span-1-75" data-position="50% 50%">
<!-- <img src="images/profile-fococlipping-standard-fococlipping-standard.png" alt="" width=100% height=100% /> -->
<img src="images/Rivista_suonarenews-removebg-preview.png" alt="" width=100% height=100% />
<!-- <img src="images/profile-fococlipping-standard.png" alt="" width=100% height=100% /> -->
<!-- <hr style='margin-bottom:1.0em'/> -->
<!-- <img src="images/hr-maria-paula-figueroa1.png" class="padding" alt="" width=100% height=100%/> -->
</br>
<center><strong>Website Visitors around the World Map:</strong> </br>
<script type="text/javascript" id="mmvst_globe" src="//mapmyvisitors.com/globe.js?d=it0jLkPunKB31OftWSHCOgKNnLoDzq6ssR5csZhwGP0"></script></center>
<!-- <strong></strong>You are here</strong>-->
</div>
</section>
<!-- Panel (Spotlight) -->
<section class="panel banner medium left color0" id="first">
<div class="content span-10">
<h2 class="major">Education and Developed Games <br /></h2>
<ul class="alt">
<img src="images/logo-uniba.png" alt="Uniba logo" height="150" width="150"> <img src="images/Poliba_stemma.png" alt="Poliba logo" height="150" width="250"><img src="images/logo-INFN.png" alt="INFN logo" height="150" width="180">
<li> <strong>University of Bari, Apulia, Italy - Ph.D. in Subnuclear Physics (3 November 2021 -- Present)</strong><br/>
<strong>Thesis title:</strong> <em>Search for double Higgs bosons decaying into muon pairs and two b-jets with the CMS experiment</em><br/>
<strong>Supervisor</strong>: Prof. Nicola De Filippis<br/>
<strong>Ph.D. program duration:</strong> 3 years <br/>
<strong>Courses:</strong> C++, Geant4, Effective field theories and Physics Beyond the Standard Model, Advanced Machine Learning, Trigger and DAQ for Particle physics, Big Data modeling and learning, Physics signal treatments, Making a Brief Technical Presentation in English<br/>
</li>
<img src="images/violin.png" alt="Violin drawing" height="150" width="150"> <img src="images/logo_conservatorio.svg" alt="Conservatory Piccinni logo" height="150" width="150"> <img src="images/piano_pic.png" alt="Piano drawing" height="100" width="100">
<li> <strong>Music Conservatory Niccolò Piccinni, Bari, Apulia, Italy - B.Sc. in Violin </strong><br/>
<strong>Thesis title:</strong> <em>Comparison between the genius of the physicist Albert Einstein and the genius of the musician Ludwig Van Beethoven</em> <br/>
<strong>Supervisor</strong>: Prof. Carmelo Andriani<br/>
<strong>Grade:</strong> 110 with honors <br/>
<strong>GPA:</strong> 4.0 <a href="https://drive.google.com/file/d/1aV1ERPqgSpQ-9SRbWIpw-Q4BkuS1kvyy/view?usp=share_link" target="_blank">[Transcripts]</a><br/>
<strong>Courses:</strong> Chamber Music, Symphony Music, Orchestra courses, Musical history of instruments, Violin Practice, Introduction of Viola Practice, Introduction of Piano Practice<br/>
</li>
<img src="images/logo-uniba.png" alt="Uniba logo" height="150" width="150"> <img src="images/Poliba_stemma.png" alt="Poliba logo" height="150" width="250"><img src="images/logo-INFN.png" alt="INFN logo" height="150" width="180">
<li> <strong>University of Bari, Apulia, Italy - M.Sc. in Nuclear Subnuclear and Astroparticle Physics </strong><br/>
<strong>Thesis title:</strong> <em>Search for double Higgs events produced via a vector boson fusion mechanism in the decay channel bb4l with the CMS experiment at the LHC</em><br/>
<strong>Supervisor</strong>: Prof. Nicola De Filippis<br/>
<strong>Grade:</strong> 110 with honors <br/>
<strong>GPA:</strong> 4.0 <a href="https://drive.google.com/file/d/1V2sxudg9bGwW-S0WduNndtO60tdJLPUf/view?usp=sharing" target="_blank">[Transcripts]</a><br/>
<strong>Courses:</strong> Mathematical Analysis, Geometry, Introduction to the Mechanics and Analysis, Physics Laboratory, Mechanics, Fluids and Thermodynamics, Programming languages, English, Analytical Mechanics, Mathematical Methods of Physics, Electromagnetic waves and Optics, Statistical Physics, Quantum Mechanics Applications, Chemistry, Matter Physics, Electronics Laboratory, Fundamental of the Physics History, Introduction to Nuclear and Subnuclear Physics, Introduction to Particle Detectors, Laboratory of Modern Physics<br/>
</li>
<img src="images/logo-uniba.png" alt="Uniba logo" height="150" width="150"><img src="images/Poliba_stemma.png" alt="Poliba logo" height="150" width="250"><img src="images/logo-INFN.png" alt="INFN logo" height="150" width="180">
<li> <strong>University of Bari, Apulia, Italy - B.Sc. in Physics</strong><br/>
<strong>Thesis title:</strong> <em>Two-state quantum systems<br/> </em><strong>Supervisor:</strong> Prof. Leonardo Angelini </em><br/>
<strong>Grade:</strong> 110 with honors <br/>
<strong>GPA:</strong> 4.0
<a href="https://drive.google.com/file/d/13qAI0iYuqlVBQinnvZXv1eGDBE0ShnbM/view?usp=sharing" target="_blank">[Transcripts]</a><br/>
<strong>Courses:</strong> Probabilistic Methods of Physics, Kinetic Theory of Transport Phenomena, Condensed Matter Physics, Electronics Laboratory, Elementary Particle Physics, Fundamental Interaction Phenomenology, High Performance Computing in Physics, Quantum Field Theory, Interacting Quantum Fields, Physics Applications of group Theory, Statistical Data Analysis Laboratory, High Energy Astrophysics, Public Speaking and Scientific WritingNuclei and Particles Detection Laboratory, Mathematical Methods of Physics<br/>
<div class="image span-1-75" data-position="80% 80%">
</div></li>
</ul>
</br>
<div class="piano">
<h3 class="major"><img src="piano_app/images_piano/icon.png" alt="piano app logo" height="30" width="30"> Piano App @Boolean Coding Week 2022</h3>
<div class="piano-panel">
<img src="piano_app/images_piano/panel-logo.png" alt="">
</div>
<div class="piano-keys">
<div class="key key-white" id="do"></div>
<div class="key key-black" id="dodiesis"></div>
<div class="key key-white" id="re"></div>
<div class="key key-black" id="rediesis"></div>
<div class="key key-white" id="mi"></div>
<div class="key key-white" id="fa"></div>
<div class="key key-black" id="fadiesis"></div>
<div class="key key-white" id="sol"></div>
<div class="key key-black" id="soldiesis"></div>
<div class="key key-white" id="la"></div>
<div class="key key-black" id="ladiesis"></div>
<div class="key key-white" id="si"></div>
<div class="key key-white" id="do5"></div>
<div class="key key-black" id="dodiesis5"></div>
<div class="key key-white" id="re5"></div>
<div class="key key-black" id="rediesis5"></div>
<div class="key key-white" id="mi5"></div>
<div class="key key-white" id="fa5"></div>
<div class="key key-black" id="fadiesis5"></div>
<div class="key key-white" id="sol5"></div>
<div class="key key-black" id="soldiesis5"></div>
<div class="key key-white" id="la5"></div>
<div class="key key-black" id="ladiesis5"></div>
<div class="key key-white" id="si5"></div>
<div class="key key-white" id="do6"></div>
</div>
</div>
</br></br>
<div class="containerduck">
<!-- Intestazione -->
<h3 class="major"><img src="duck/images/icon.png" alt="duck app logo" height="30" width="30"> Speech Synthesizer App @Boolean Coding Week 2022</h3>
<!-- Casella di testo -->
<textarea class="speechduck" placeholder="Type here..."></textarea>
<!-- Controlli -->
<div class="controls">
<!-- Paperella -->
<figure class="duckfigure">
<img class="static-duck" src="duck/images/talking-duck-static.png" alt="static duck" height="190" width="210"/>
<img class="animated-duck" src="duck/images/talking-duck-animated.gif" alt="animated duck" height="190" width="210"/>
</figure>
<!-- Play Button -->
<button type="button" class="buttonduck primary color2 circle icon solid fa-play">
<img src="duck/images/play.png" alt="play" />
</button>
<!-- Controlli del tono -->
<div class="pitch-controls">
<label class="labelduck">Pitch</label>
<input class="inputduck" type="range" min="0.1" max="2" step="0.1" />
<label class="labelduck_volume">Volume</label>
<input class="inputduck_volume" type="range" min="0.1" max="2" step="0.1" />
<label class="labelduck_rate">Rate</label>
<input class="inputduck_rate" type="range" min="0.1" max="2" step="0.1" />
</div>
</div>
</div>
</br>
<h3 class="major"><img src="codigotchi/images/icon.png" alt="codigotchi app logo" height="30" width="30"> Codigotchi App @Boolean Coding Week 2022</h3>
<div class="container_codigotchi">
<!-- Codigotchi e schermo -->
<section class="codigotchi">
<img src="codigotchi/images/codigotchi.png" alt="">
<div id="screen-codigotchi" class="codigotchi-screen"></div>
</section>
<!-- Pannelli -->
<section id="panels-data-codigotchi" class="panels-codigotchi">
<!-- Pannello Microfono -->
<div class="panel-codigotchi panel-microphone-codigotchi">
<button type="button" id="microphone-codigotchi" class="button-codigotchi primary color2 circle icon solid fa-microphone">
<!-- <img src="codigotchi/images/mic.png" alt="microphone-codigotchi"> -->
</button>
<h2 class="codigotchi_h2">Turn on the microphone!</h2>
</div>
<!-- Pannello Comandi -->
<div class="panel-codigotchi panel-commands-codigotchi">
<h2 class="codigotchi_h2">Interact with the vocal commands!</h2>
<h3 class="codigotchi_h3">Supported Commands (in Italian language and Google Chrome only)</h3>
<div class="commands-codigotchi">
<ul>
<li>Mangia (Eat)</li>
<li>Balla (Dance)</li>
<li>Dormi (Sleep)</li>
</ul>
</div>
</div>
</section>
</div>
</br>
<h3 class="major"><img src="meteo/images/icon.png" alt="meteo app logo" height="30" width="30"> Weather Forecast App @Boolean Coding Week 2022</h3>
<!-- Contenuto principale -->
<main class="js-loading">
<div class="container-meteo">
<!-- Informazioni meteo -->
<div class="weather-info">
<!-- Icona meteo -->
<img class="weather-icon" src="" alt="Icona meteo" />
<!-- Location -->
<div class="weather-location">Loading...</div>
<!-- Temperatura -->
<div class="weather-temperature"></div>
</div>
<!-- Pannello dei consigli -->
<div class="panel-meteo">
<p class="description-meteo"></p>
<h4 class="meteo-h4">Suggestion</h4>
<p class="suggestion-meteo"></p>
</div>
</div>
</main>
</br>
<h3 class="major"><img src="merry-xmas-generator/images/img_1.png" alt="Generator app logo" height="30" width="30"> Merry Xmas Generator @Boolean Coding Week 2022</h3>
<div class="container-merry-xmas-generator">
<header>
<h1>Merry Xmas Generator</h1>
</header>
<main>
<div class="preview">
<img id="preview-image" src="merry-xmas-generator/images/img_1.png" alt="Immagine 1">
<img id="preview-text" src="merry-xmas-generator/images/txt_1.png" alt="Testo 1">
<div class="preview-sender">Wishes</div>
</div>
<div class="controls">
<div class="actions">
<button id="change-image" class="button primary-button">
<img src="merry-xmas-generator/images/icon-image.png" alt="Change image">
</button>
<button id="change-text" class="button primary-button">
<img src="merry-xmas-generator/images/icon-text.png" alt="Change text">
</button>
</div>
<input id="sender" type="text" maxlength="20" placeholder="Your Name">
<button id="download" class="button button-secondary">
<img src="merry-xmas-generator/images/icon-download.png" alt="Download image" width="40%">
</button>
</div>
</main>
</div>
</br>
<h3 class="major"><img src="merry-xmas-generator/images/img_1.png" alt="Generator app logo" height="30" width="30"> Xmas List @Boolean Coding Week 2022</h3>
<div class="container-xmas-list">
<!-- Header -->
<header>
<div class="header-top-top">
<h1>Xmas List</h1>
</div>
<div class="header-bottom-bottom">
Total Amount: <span class="total-slot">0.00€</span>
</div>
</header>
<!-- Main -->
<main>
<!-- Lista -->
<ul class="gifts-list">
</ul>
<!-- Form -->
<form id="gift-form">
<div class="form-fields">
<input type="text" placeholder="Name" id="name-field" required>
<input type="number" placeholder="Price" id="price-field" min="0.01" step="0.01" max="100" required>
<input type="text" placeholder="Gift" id="description-field" maxlength="30" required>
</div>
<button class="form-button">+</button>
</form>
</main>
</div>
</br>
<h3 class="major"><img src="merry-xmas-generator/images/img_1.png" alt="Counter app logo" height="30" width="30"> 2023 Year Code Counter @Boolean Coding Week 2022</h3>
<div class="container-xmas">
<div class="xmas-stage">
<div class="panel-xmas">
<h2><center>2024 Year Code Counter</center></h2>
<!-- Counter -->
<div class="counter-xmas">
<div class="counter-xmas-block">
<div id="days" class="counter-xmas-block-number">00</div>
<div class="counter-xmas-block-label">Day</div>
</div>
<div class="counter-xmas-block">
<div id="hours" class="counter-xmas-block-number">00</div>
<div class="counter-xmas-block-label">Hours</div>
</div>
<div class="counter-xmas-block">
<div id="minutes" class="counter-xmas-block-number">00</div>
<div class="counter-xmas-block-label">Mins</div>
</div>
<div class="counter-xmas-block">
<div id="seconds" class="counter-xmas-block-number">00</div>
<div class="counter-xmas-block-label">Secs</div>
</div>
</div>
</div>
<!-- Albero -->
<img src="xmas-counter/images/tree.png" alt="albero">
<!-- Regali -->
<img class="gift-xmas gift_1-xmas" src="xmas-counter/images/gift_1.png" alt="regalo 1">
<img class="gift-xmas gift_2-xmas" src="xmas-counter/images/gift_2.png" alt="regalo 2">
<img class="gift-xmas gift_3-xmas" src="xmas-counter/images/gift_3.png" alt="regalo 3">
<!-- Palline -->
<img class="ball-xmas ball_1-xmas" src="xmas-counter/images/ball_1.png" alt="pallina 1">
<img class="ball-xmas ball_2-xmas" src="xmas-counter/images/ball_2.png" alt="pallina 2">
<img class="ball-xmas ball_3-xmas" src="xmas-counter/images/ball_3.png" alt="pallina 3">
<img class="ball-xmas ball_4-xmas" src="xmas-counter/images/ball_4.png" alt="pallina 4">
<img class="ball-xmas ball_5-xmas" src="xmas-counter/images/ball_5.png" alt="pallina 5">
</div>
</div>
</br>
<h3 class="major"><img src="merry-xmas-generator/images/img_1.png" alt="Generator app logo" height="30" width="30"> Advent Code Calendar 2022 @Boolean Coding Week 2022</h3>
<div class="container-calendar">
<!-- Header -->
<header>
<h1><center>Advent Code Calendar 2022</center></h1>
</header>
<!-- Parte principale -->
<main>
<!-- Calendario -->
<div class="calendar">
<!--
<div class="box">
<img class="box-icon" src="images/icons/ico-albero.png" alt="icon">
<div class="box-date">1</div>
</div>
-->
</div>
<!-- Modale -->
<div id="modal" class="modal-overlay modal-hidden">
<div class="modal-window">
<div class="modal-content"></div>
<button class="modal-button button normal">CLOSE</button>
</div>
</div>
</main>
</div>
</br>
<h3 class="major"><img src="merry-xmas-generator/images/img_1.png" alt="Generator app logo" height="30" width="30"> ChatVenture @Boolean Coding Week 2023</h3>
<div class="container-chatventure">
<header>
<h1>ChatVenture</h1>
<p>Hello PLAYER, welcome into the textual adventure game in which the story has been invented by ChatGPT :) </p>
</header>
<!-- Contenuto principale della pagina -->
<main class="container-second-chatventure">
<!-- Scelta del genere -->
<div class="genres">
<div class="genre" data-genre="horror">👻</div>
<div class="genre" data-genre="film di spionaggio">🕵️♀️</div>
<div class="genre" data-genre="supereroi marvel">🦸♀️</div>
<div class="genre" data-genre="smaltitore rifiuti">♻️</div>
</div>
<!-- Loader -->
<div class="loader-chatventure hidden">
<img src="chatventure/images/loader.gif" alt="loader-chatventure">
</div>
<!-- Placeholder -->
<div id="placeholder-chatventure"></div>
<!-- Gameover -->
<template id="gameover-template">
<div class="gameover">
<div class="gameover-icon"></div>
<h2>The game is over!</h2>
<p class="gameover-message"></p>
<button>Play again</button>
</div>
</template>
<!-- Stage Template -->
<template id="stage-template">
<div class="stage">
<div class="stage-picture"></div>
<div class="stage-content">
<p class="stage-description"></p>
<div class="stage-actions"></div>
</div>
</div>
</template>
</main>
</div>
</br>
<h3 class="major"><img src="Kart_Crash/images/logo.png" alt="Kart Crash logo" height="30" width="30"> Kart Crash @Boolean Coding Week 2024</h3>
<div class="game-container">
<!-- Pannello informazioni di gioco -->
<div class="game-panel">
<!-- Punteggio -->
<div class="score">
<span class="score-label">SCORE</span>
<span class="score-counter">0</span>
</div>
<!-- Tabellone di gioco -->
<div class="game-board">
<div class="street">
<div class="grid"></div>
</div>
<div class="driving-panel">
<button class="left-button">
<img src="Kart_Crash/images/left-arrow.png" alt="left arrow">
</button>
<button id="turbo">
<img src="Kart_Crash/images/gauge-1.png" alt="turbo gauge">
</button>
<button class="right-button">
<img src="Kart_Crash/images/right-arrow.png" alt="right arrow"></img>
</button>
</div>
<!-- Schermata di fine gioco -->
<div class="end-game-screen hidden">
<h2 class="end-game-text">Game Over</h2>
<div class="score">SCORE: <span class="final-score">0</span></div>
<div class="cta">
<img class="character" src="Kart_Crash/images/kart-endcard.png" alt="character on Kart">
<button class="play-again">Play again</button>
</div>
</div>
</div>
</div>
</div>
</br>
<h3 class="major">Other Educational Courses<br /></h3>
<ul>
<li> <h4>2023-2021</h4>
<img src="images/coursera-logo.png" alt="Coursera logo" height="150" width="250"> <img src="images/desy-logo.png" alt="DESY logo" height="150" width="150"> <img src="images/CERN-Logo.png" alt="CERN logo" height="150" width="120">
<ol>
<li><a href="https://drive.google.com/file/d/1XgZ86KM6Vocc-9ZNQSlHN9-ljPsDRRSx/view?usp=sharing" target="_blank">Data Analytics Week, Boolean</a></li>
<li><a href="https://drive.google.com/file/d/1Rxk1QI1f8aCSJGvztU9PeFWPQlKvzrhy/view?usp=share_link" target="_blank">Certified Peer Reviewer Course, Elsevier</a></li>
<li><a href="https://drive.google.com/file/d/1AoAw7MSEIjK0C0Jv55N3kFqmMiM2U9lf/view?usp=share_link" target="_blank">Becoming a peer reviewer, Elsevier</a></li>
<li><a href="https://www.coursera.org/account/accomplishments/verify/DRRN6452E8WB?utm_product=course" target="_blank">Machine Learning, University of Stanford</a></li>
<li><a href="https://coursera.org/share/d3351dcf2e3539df73df5983496b23d4" target="_blank">Particle Physics: an Introduction, University of Geneva</a></li>
<li><a href="https://www.coursera.org/account/accomplishments/certificate/83WJM6X4DY27" target="_blank"> Technical Writing, Moscow Institute of Physics and Technology</a></li>
<li><a href="https://www.coursera.org/account/accomplishments/certificate/MY4HQAEAYL9D" target="_blank"> Addressing Large Hadron Collider Challenges by Machine Learning, HSE University </a> </li>
<li><a href="https://www.coursera.org/account/accomplishments/certificate/QVDWWH3C8MXV" target="_blank">Programming Foundations with JavaScript, HTML and CSS, Duke University</a></li>
<li> <a href="https://drive.google.com/file/d/1to79c-kiCDjbMWiXxkL1zJY3JnbfbXGx/view" target="_blank"> CERN Tutorials: Introduction to Overleaf </a></li>
<li><a href="https://drive.google.com/file/d/1fxuisoVa6oLr7eA6mWlE-xZxAs_ifsk6/view" target="_blank"> QCD and Monte Carlo techniques, DESY </a></li>
</ol>
</li>
</ul>
<h3 class="major">High Energy Physics Schools <br /></h3>
<ul>
<li> <h4>2023</h4>
<ol>
<img src="images/CMS-logo.png" alt="CMS logo" height="50" width="50"> <img src="images/FCC-Logo_RGB_DeepBlue.png" alt="FCC logo" height="150" width="150">
<li><a href="https://indico.cern.ch/event/1224299/" target="_blank">EURIZON Detector School </a></li>
<li><a href="https://indico.cern.ch/event/1246472/" target="_blank">13th Patatrack Hackathon </a></li>
</ol>
</li>
<li> <h4>2022</h4>
<ol>
<img src="images/CMS-logo.png" alt="CMS logo" height="50" width="50"> <img src="images/FCC-Logo_RGB_DeepBlue.png" alt="FCC logo" height="150" width="150">
<li><a href="https://indico.cern.ch/event/1182767/" target="_blank">FCC Software Hands-on Tutorial 2022 </a></li>
<li><a href="https://lpc.fnal.gov/programs/schools-workshops/cmsdas.shtml" target="_blank">CMS Data Analysis School (CMSDAS) 2022 </a>
</ol>
</li>
<li> <h4>2020-2021</h4>
<ol>
<img src="images/shine-logo.png" alt="SHINE logo" height="50" width="50"> <img src="images/Escape-logo.png" alt="ESCAPE logo" height="50" width="50"> <img src="images/Terascale-logo.gif" alt="Terascale logo" height="50" width="50">
<li><a href="https://drive.google.com/file/d/1Ui4phtxuFPd-trfQp6jCmL4qZOgEJvlf/view?usp=sharing" target="_blank">Terascale Monte Carlo School: PB TMDs with CASCADE</a></li>
<li><a href="https://drive.google.com/file/d/14agcBsN5tkP3eKP2QEpU_cq4_jxhDvRT/view?usp=share_link" target="_blank">CERN Webfest</a></li>
<li><a href="https://drive.google.com/file/d/1D9BjE1nlL8UmRmZ3HQNqC6Cq1OxK0zB-/view?usp=sharing" target="_blank">ESCAPE Summer School on Data Science for Astronomy, Astroparticle and Particle Physics </a></li>
<li><a href="https://drive.google.com/file/d/11AAS10GLKvA5oR2oZmcjLj1YBwBevQue/view?usp=sharing" target="_blank">2nd Terascale School of Machine Learning</a></li>
<li><a href="https://indico.cern.ch/event/964916/overview" target="_blank">SHINE Autumn School: Detectors and Data Processing</a></li>
<li> <a href="https://indico.cern.ch/event/963826/" target="_blank">SHINE Autumn School: Physics and Facility</a></li>
<li><a href="https://indico.desy.de/event/26403/" target="_blank">Terascale Summer School 2020,DESY</a></li>
<li><a href="https://indico.desy.de/event/25594/" target="_blank">PHYSTAT, Online Reduced Terascale Statistics School 2020</a></li>
</ol>
</li>
</ul>
<h3 class="major">Skills</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Spoken Languages</th>
<th>Programming Languages</th>
<th>Scientific Tools</th>
<th>Markup Languages and Database</th>
</tr>
</thead>
<tbody>
<tr>
<td>Italian (native)</td>
<td>C/C++</td>
<td>ROOT/ROOTFit</td>
<td>MySQL</td>
</tr>
<tr>
<td>English (good)</td>
<td>Python</td>
<td>Tensorflow</td>
<td>HTML/HTML5</td>
</tr>
<tr>
<td>French (basic)</td>
<td>Bash</td>
<td>Scikit-learn</td>
<td>CSS</td>
</tr>
<tr>
<td>Spanish (basic)</td>
<td>Fortran</td>
<td>Git</td>
<td>JavaScript</td>
</tr>
</tbody>
</table>
</div>
<!-- <p><a href="https://github.com/anuraghazra/github-readme-stats"><img src="https://github-readme-stats.vercel.app/api?username=bdanzi&hide=stars&count_private=true&show_icons=true&theme=jolly" alt="Brunella D'Anzi’s GitHub stats" /></a></p>
<p><a href="https://github.com/anuraghazra/github-readme-stats"><img src="https://github-readme-stats.vercel.app/api/top-langs/?username=bdanzi&hide=jupyter%20notebook&langs_count=5&theme=jolly" alt="Top Langs" /></a></p>
<p><a href="https://github.com/anuraghazra/github-readme-stats"><img src="https://github-readme-stats.vercel.app/api/wakatime?username=@bdanzi&theme=jolly" alt="Brunella D'Anzi’s wakatime stats" /></a></p> -->
<img width=100% src="https://capsule-render.vercel.app/api?type=waving&color=E033FF&height=180§ion=header&text=Brunella D'Anzi&fontSize=25&fontColor=6D077F&animation=twinkling&fontAlignY=35"/>
<div align="center">
<p align="centre"><b>📊 GitHub Stats and Trophies</b></p>
<img width="49%" height="auto" src="https://github-readme-streak-stats.herokuapp.com?user=bdanzi&theme=jolly&hide_border=true&date_format=j%20M%5B%20Y%5D"/>
<img width="41%" height="auto" src="https://github-readme-stats.vercel.app/api/top-langs/?username=bdanzi&layout=compact&hide=jupyter\%20notebook&theme=jolly&hide_border=true" />
<img width="49%" height="auto" src="https://github-readme-stats.vercel.app/api?username=bdanzi&hide=stars&count_private=true&show_icons=true&theme=jolly" />
<img width="41%" height="auto" src="https://github-readme-stats.vercel.app/api/wakatime?username=@bdanzi&&langs_count=5&v=2&theme=jolly" />
<img width="41%" height="auto" src="https://github-profile-trophy.vercel.app/?username=bdanzi&row=2&column=3&theme=jolly"/>
</div>
<div align="center">
<p align="centre"><b>✍️ Random Dev Quote</b></p>
<img width=90% src="https://quotes-github-readme.vercel.app/api?type=horizontal&theme=radical" />
<!-- <p align="centre"><b>😂 Random Dev Meme</b></p>
<img width=90% src="https://random-memer.herokuapp.com/" width="512px"/>
<p align="centre"><b>Visitors Count</b></p>
<p align="center"><img align="center" src="https://profile-counter.glitch.me/{bdanzi}/count.svg" /></p>
-->
<!-- FOOTER -->
<img width=100% src="https://capsule-render.vercel.app/api?type=waving&color=E033FF&height=120§ion=footer"/>
</div>
</br>
<ul class="actions">
<button type="button" class="button primary color2 circle icon solid fa-sun" id="dark_light_1" onclick="toggleDarkLight();changeImage();" name="dark_light" title="Turn off/on the lights!"></button>
<li><button type="button" class="button primary color2 circle icon solid fa-play" id="play_pause_1" onclick="togglePlayPause();changePause();" name="play_pause" title="Enjoy/Stop the Beethoven's Sonata Adagio for Piano and Violin n.6 in La major op.30 n.1!"></button></li>
<li><a href="#zero" class="button primary color2 circle icon solid fa-angle-left" title="Previous Panel">Before</a></li>
<li><a href="#second" class="button primary color2 circle icon solid fa-angle-right" title="Next Panel">Next</a></li>
</ul>
</div>
</section>
<!-- Panel -->
<section class="panel banner medium color2" id="second">
<div class="content span-10">
<h2 class="major">Talks and Publications</h2>
<h3 class="major">Talks and Posters Presentations</h3>
<ul>
<li> <h4> 2024</h4>
<ol>
<li><strong>PPD Workshop 2024, Plenary Talk -- Speaker</strong><br><strong>(November 2024)</strong><br><em><a href="https://indico.cern.ch/event/1387386/contributions/6073743/" target="_blank">Tracking Physics Objects Group 2024 Performance and Future Plans</a></em></li>
<li><strong>CMS Italia Workshop 2024, Plenary Talk -- Speaker</strong><br><strong>(October 2024)</strong><br><em><a href="https://indico.cern.ch/event/1387386/contributions/6073743/" target="_blank">Detector Performance Groups and Physics Objects Groups Report for Run 3 in CMS experiment</a></em></li>
<li><strong>42nd International Conference on High Energy Physics 2024 (ICHEP2024), Poster -- Speaker</strong><br><strong>(July 2024)</strong><br><em><a href="https://indico.cern.ch/event/1291157/contributions/5876942/" target="_blank">Tag-and-probe technique tracking efficiency results at CMS</a></em></li>
<li><strong>June CMS Week 2024, Plenary Talk -- Speaker</strong><br><strong>(June 2024)</strong><br><em><a href="https://indico.cern.ch/event/1418024/contributions/5977492/" target="_blank">Tracking Performance during Run 3 at the CMS Experiment</a></em></li>
</ol>
</li>
<li> <h4>2023</h4>
<ol>
<li><strong>Higgs 2023 Conference, Beijing, China, Talk in HEP Parallel session -- Speaker</strong><br><strong>(November 2023)</strong><br><em><a href="https://higgs2023.ihep.ac.cn" target="_blank">Non resonant double Higgs searches at the CMS Experiment</a></em></li>
<li><strong>109th National Congress of the Società Italiana di Fisica (SIF2023), Parallel Talks -- Speaker </strong></br><strong> (14th Sep 2022) </strong></br><em><a href="https://2023.congresso.sif.it/talk/311" target="_blank">Ricerca di eventi di produzione di coppie di bosoni di Higgs con l'esperimento CMS</a></em></li>
<li><strong>Second Edition Machine Learning INFN hackathon - Starting level, Plenary session -- Speaker and Hackathon Tutor </strong></br><strong> (23rd June 2023) </strong></br><em><a href="https://agenda.infn.it/event/35607/" target="_blank">Signal/background discrimination for the VBF Higgs four lepton decay channel with the CMS experiment using Machine Learning classification techniques</a></em></li>
<li><strong>CERN CMS Data Analysis School (2023), Short Exercise Session -- Speaker </strong></br><strong> (5th June 2023) </strong></br><em><a href="https://cmstrackingpog.github.io/trackingvertexing/index.html" target="_blank"> CMS Tracking and Vertexing</a></em></li>
<li><strong>Mini-Workshops in Theory & Experiment and Detector, IAS Program on High Energy Physics (HEP 2023) -- Speaker </strong></br><strong> (13th February 2023) </strong></br><em><a href="https://indico.cern.ch/event/1215937/" target="_blank"> IDEA Drift Chamber</a></em></li>
<li><strong>Fermilab CMS Data Analysis School (2023), Short Exercise Session -- Speaker </strong></br><strong> (9th January 2023) </strong></br><em><a href="https://indico.cern.ch/event/1213827/" target="_blank"> CMS Tracking and Vertexing</a></em></li>
</ol>
</li>
<li> <h4>2022</h4>
<ol>
<li><strong>21st International Workshop on Advanced Computing and Analysis Techniques in Physics Research (ACAT2022), Poster session -- Speaker </strong></br><strong> (27th October 2022) </strong></br><em><a href="https://indico.cern.ch/event/1106990/contributions/4998151/" target="_blank"> Cluster counting algorithms for particle identification at future colliders</a></em></li>
<li><strong>The 2022 International Workshop on the high energy Circular Electron-Positron Collider (CEPC), Gaseous Detectors Parallel session -- Speaker </strong></br><strong> (26th October 2022) </strong></br><em><a href="https://indico.ihep.ac.cn/event/17020/contributions/118085/" target="_blank"> Beam test results on cluster counting</a></em></li>
<li><strong>21st International Workshop on Advanced Computing and Analysis Techniques in Physics Research (ACAT2022), Poster session -- Speaker </strong></br><strong> (24th October 2022) </strong></br><em><a href="https://indico.cern.ch/event/1106990/contributions/5096961/" target="_blank"> CMS tracking performance in Run 2 and early Run 3 data using the tag-and-probe technique </a></em></li>
<li><strong>INFN Workshop on Future Detectors, Rapid Talks Plenary session -- Speaker </strong></br><strong> (18th October 2022) </strong></br><em><a href="https://agenda.infn.it/event/31581/contributions/177312/" target="_blank"> The IDEA drift chamber at FCC-ee and CEPC and related Electronics </a></em></li>
<li><strong>CMS Physics Performance and Dataset (PPD) General Meeting -- Speaker </strong></br><strong> (13th October 2022) </strong></br><em><a href="https://indico.cern.ch/event/1210449/" target="_blank"> Detector Performance note approval: CMS tracking performance in Run 2 and early Run 3 data using the tag-and-probe technique</a></em></li>
<li><strong>CMS General Meeting Tracker and Tracking Detector Performance Groups (DPG) -- Speaker </strong></br><strong> (28th September 2022) </strong></br><em><a href="https://indico.cern.ch/event/1190522/#9-pre-approval-for-offline-pri" target="_blank"> Pre-approval for Muon tracking performance in the CMS Early-Run 3 data using the tag and probe technique</a></em></li>
<li><strong>108th National Congress of the Società Italiana di Fisica (SIF2022), Parallel Talks -- Speaker </strong></br><strong> (13th Sep 2022) </strong></br><em><a href="https://2022.congresso.sif.it/talk/580" target="_blank">CMS tracking performance in the early Run 3 data using the tagand-probe technique on behalf of the CMS Collaboration</a></em></li>
<li><strong>15th Pisa Meeting on Advanced Detectors Edition 2022 (PM2021), Poster session -- Speaker </strong></br><strong> (27th May 2022) </strong></br><em><a href="https://agenda.infn.it/event/22092/contributions/166630/" target="_blank"> Particle identification with the cluster counting technique for the IDEA drift chamber</a></em></li>
<li><strong>HIG@CMS_Italia Workshop, Plenary session -- Speaker </strong></br><strong> (12th May 2022) </strong></br><em><a href="https://indico.cern.ch/event/1137095/" target="_blank"> Double Higgs bbmumu analysis</a></em></li>
<li><strong>Learning to Discover Conference, Plenary session -- Speaker </strong></br><strong> (28th April 2022) </strong></br><em><a href="https://indico.ijclab.in2p3.fr/event/5999/timetable/" target="_blank"> Looking for rare di-Higgs events at the LHC with Machine (Deep) Learning techniques</a></em></li>
<!-- <li><strong>Talk in Muon Tracking POG Meeting -- Speaker </strong></br><strong> (11th April 2022) </strong></br><a href="https://indico.cern.ch/event/1148914/?note=193823" target="_blank">Update of the Muon efficiency algorithm via Tag and Probe techniques </a></li> -->
<!-- <li><strong>Meeting within INFN, IHEP and Jilin University -- Speaker </strong></br><strong> (17th March 2022) </strong></br><a href="https://indico.ihep.ac.cn/event/16376/" target="_blank">Update of the cluster counting algorithm and new results </a></li>-->
<!-- <li><strong>Meeting within INFN, IHEP and Jilin University -- Speaker </strong></br><strong> (18th February 2022) </strong></br><a href="https://indico.ihep.ac.cn/event/15780/" target="_blank">Cluster counting algorithm and the results of the beam test analysis</a></li>-->
</ol>
</li>
<li> <h4>2021</h4>
<ol>
<li><strong>Second Edition Machine Learning INFN hackathon - Starting level, Plenary session -- Speaker and Hackathon Tutor </strong></br><strong> (15th December 2021) </strong></br><em><a href="https://agenda.infn.it/event/28565/sessions/21130/#20211215" target="_blank">Signal/background discrimination for the VBF Higgs four lepton decay channel with the CMS experiment using Machine Learning classification techniques</a></em></li>
<li><strong>20th International Workshop on Advanced Computing and Analysis Techniques in Physics Research (ACAT2021), Lightning talks session for best posters -- Speaker</strong><strong> </br> (3rd December 2021) </strong></br><em><a href="https://indico.cern.ch/event/855454/contributions/4596351/" target="_blank"> Signal to background discrimination for the production of double Higgs boson events via vector boson fusion mechanism in the decay channel with four charged leptons and two b-jets in the final state at the LHC experiment</a></em></li>
<li><strong>20th International Workshop on Advanced Computing and Analysis Techniques in Physics Research (ACAT2021), Poster session -- Speaker</strong></br><strong> (1st December 2021) </strong></br><em><a href="https://indico.cern.ch/event/855454/contributions/4596351/" target="_blank"> Signal to background discrimination for the production of double Higgs boson events via vector boson fusion mechanism in the decay channel with four charged leptons and two b-jets in the final state at the LHC experiment</a></em></li>
<!-- <li><strong>ML_INFN research group, Review use-case -- Speaker</strong></br><strong> (15th November 2021) </strong></br><a href="https://agenda.infn.it/event/29006/" target="_blank">Signal/background discrimination for the VBF Higgs four lepton decay channel with the CMS experiment,</a></li> -->
<!-- <li><strong>ML_INFN research group, Use-case presentation -- Speaker</strong></br><strong> (26th April 2021) </strong></br><a href="https://agenda.infn.it/event/26762/" target="_blank">Signal/background discrimination for the VBF Higgs four lepton decay channel with the CMS experiment using Machine Learning classification techniques</a></li> -->
<li><strong>Elementary Particle Physics course, Seminar to first year Master's student in Physics at University of Bari -- Speaker</strong></br><strong> (15th March 2021) </strong></br><em><a href="https://drive.google.com/file/d/1vLpUf22gdKJ_-qK3jlUL1mLvEmLz7I7M/view?usp=sharing" target="_blank">The Top Quark Discovery at the Fermilab Collider</a></em></li>
</ol>
</li>
</ul>
<h3 class="major">Publications</h3>
As an active member of a large Collaboration such as the CMS one, I am a CMS Author of every physics paper since 8th November 2022. Selected publications, notes, and conference proceedings to which I gave a substantial contribution are listed below.
<ul>
<li> <h4>2022</h4>
<ol>
<li><strong>Experimental High Energy Physics - Poster ACAT 2022</strong></br> Caputo C., Chiarello G., Corvaglia A., Cuna F., D'Anzi B. et al.</br><em><a href="http://dx.doi.org/10.13140/RG.2.2.17515.62243"target="_blank">Cluster counting algorithms for particle identification at future colliders </br> Poster DOI: 10.13140/RG.2.2.17515.62243</a></em></li>
<li><strong>Experimental High Energy Physics - Poster ACAT 2022</strong></br> D'Anzi B. on behalf of the CMS Collaboration</br><em><a href="http://dx.doi.org/10.13140/RG.2.2.30937.39525"target="_blank">CMS tracking performance in Run 2 and early Run 3 data using the Tag-and-Probe technique </br> Poster DOI: 10.13140/RG.2.2.30937.39525</a></em></li>
<li><strong>Experimental High Energy Physics - Detector Performance (DP) Note</strong></br> CMS Collaboration</br><em><a href="https://cds.cern.ch/record/2839918?ln=en"target="_blank">CMS Tracking performance in Early Run-3 data using the tag-and-probe technique </br> Report Number: CERN-CMS-DP-2022-046 </a></em></li>
<li><strong>Experimental High Energy Physics - Abstracts of the SIF Congress </strong></br> D'Anzi B. </br><em><a href="https://static.sif.it/SIF/resources/public/files/congr22/atti_congresso_108.pdf"target="_blank">CMS Tracking performance in Early Run-3 data using the tag-and-probe technique [Abstract], In: Proceedings of the 108th Annual Meeting of the Italian Physics Society; 2022 September 12th - 16th; Milan, Italy, Abstract pg. 48.</a></em></li>
<li><strong>Experimental High Energy Physics - Abstracts of the SIF Congress </strong></br> D'Anzi B. </br><em><a href="https://static.sif.it/SIF/resources/public/files/congr22/atti_congresso_108.pdf"target="_blank">Particle identification with the cluster counting technique for the IDEA drift chamber [Abstract], In: Proceedings of the 108th Annual Meeting of the Italian Physics Society; 2022 September 12th - 16th; Milan, Italy, Abstract pg. 96.</a></em></li>
<li><strong>Experimental High Energy Physics - Proceedings of 41st International Conference on High Energy physics (ICHEP2022) - Detectors for Future Facilities, R&D, novel techniques</strong></br> Caputo C., Chiarello G., Corvaglia A., Cuna F., D'Anzi B. et al.</br><em><a href="https://pos.sissa.it/414/335/"target="_blank">Particle identification with the cluster counting technique for the IDEA drift chamber </br> PoS(ICHEP2022)335 </a></em></li>
<li><strong>Experimental High Energy Physics - Proceedings of PM 2021</strong></br> Chiarello G., Cuna F., D’Anzi B., Corvaglia A., De Filippis N. et al.</br><em><a href="https://doi.org/10.1016/j.nima.2022.167734"target="_blank">Implementation of the Cluster Counting and Timing technique on FPGA for the reduction of transferred data and stored information </br> Proceedings DOI: /10.1016/j.nima.2022.167734</a></em></li>
<li><strong>Experimental High Energy Physics - Proceedings of PM 2021</strong></br> Caputo C., Chiarello G., Corvaglia A., Cuna F., D'Anzi B. et al.</br><em><a href="https://arxiv.org/abs/2211.04220"target="_blank">Particle identification with the cluster counting technique for the IDEA drift chamber, e-Print: 2211.04220</a></em></li>
<li><strong>Experimental High Energy Physics - Proceedings of ACAT 2021</strong></br> D'Anzi B., De Filippis N., Elmetenawee W., Miniello G.</br><em><a href="https://arxiv.org/abs/2209.11649"target="_blank">Signal to background discrimination for the production of double Higgs boson events via vector boson fusion mechanism in the decay channel with four charged leptons and two b-jets in the final state at the LHC experiment, e-Print: 2209.11649</a></em></li>
<li><strong>Experimental High Energy Physics - Poster PM 2021</strong></br> Caputo C., Chiarello G., Corvaglia A., Cuna F., D'Anzi B. et al.</br><em><a href="http://dx.doi.org/10.13140/RG.2.2.19271.98720"target="_blank">Particle identification with the cluster counting technique for the IDEA drift chamber </br> Poster DOI: 10.13140/RG.2.2.19271.98720</a></em></li>
<li><strong>Experimental High Energy Physics - Poster ACAT 2021</strong></br> D'Anzi B., De Filippis N., Elmetenawee W., Miniello G.</br><em><a href="http://dx.doi.org/10.13140/RG.2.2.14402.30408"target="_blank">Signal to background discrimination for the production of double Higgs boson events via vector boson fusion mechanism in the decay channel with four charged leptons and two b-jets in the final state at the LHC experiment </br> Poster DOI: 10.13140/RG.2.2.14402.30408</a></em></li>
</ol>
</li>
<li> <h4>2021</h4>
<ol>
<li><strong>Phenomenological High Energy Physics</strong></br> Abdulhamid, M.I., Al-Mashad, M.A., Martinez, A.B. et al.</br><em><a href="https://link.springer.com/article/10.1140%2Fepjc%2Fs10052-022-09997-1" target="_blank">Azimuthal correlations of high transverse momentum jets at next-to-leading order in the parton branching method, Eur. Phys. J. C 82, 36 (2022).</a></em></li>
<li><strong>Machine Learning INFN (ML_INFN) Confluence Project</strong></br> D'Anzi, B., De Filippis N., Diacono D., Elmetenawee W., Miniello G. and Sznajder A.</br><em><a href="https://confluence.infn.it/pages/viewpage.action?pageId=53906361" target="_blank">Signal/background discrimination for the VBF Higgs four lepton decay channel with the CMS experiment using Machine Learning classification techniques</a></em></li>
<li><strong>Experimental High Energy Physics - Master's degree CERN Thesis</strong></br> D'Anzi B.</br><em><a href="https://cds.cern.ch/record/2788946/" target="_blank">Search for double Higgs events produced via a vector boson fusion mechanism in the decay channel bb4l with the CMS experiment at the LHC </br> Report number: CERN-THESIS-2021-175 </a></em></li>
</ol>
</li>
</ul>
<ul class="icons">
See also: <li><a href="https://orcid.org/0000-0002-9361-3142" target="_blank" style="text-decoration: none !important;"><span class="label"><i class="ai ai-orcid"></i></span></a></li>
<!-- <li><a href="https://scholar.google.com/citations?user=hes0tYMAAAAJ&hl" style="text-decoration: none !important;" target="_blank"> <span class="label"><i class="ai ai-google-scholar"></i></span></a></li> -->
<li><a href="https://arxiv.org/a/danzi_b_1.html" style="text-decoration: none !important;" target="_blank"><span class="label"><i class="ai ai-arxiv"></i></span></a></li>
<li><a href="https://inspirehep.net/authors/1969305" style="text-decoration: none !important;" target="_blank"><span class="label"><i class="ai ai-inspire"></i></span></a></li>
<li><a href="https://www.researchgate.net/profile/Brunella_Danzi" style="text-decoration: none !important;" target="_blank"><span class="label"><i class="ai ai-researchgate"></i></span></a></li>
</ul>
<ul class="actions">
<button type="button" class="button primary color2 circle icon solid fa-sun" id="dark_light_2" onclick="toggleDarkLight();changeImage();" name="dark_light" title="Turn off/on the lights!"></button>
<li><button type="button" class="button primary color2 circle icon solid fa-play" id="play_pause_2" onclick="togglePlayPause();changePause();" name="play_pause" title="Enjoy/Stop the Beethoven's Sonata Adagio for Piano and Violin n.6 in La major op.30 n.1!"></button></li>
<li><a href="#first" class="button primary color2 circle icon solid fa-angle-left" title="Previous Panel">Before</a></li>
<li><a href="#third" class="button primary color2 circle icon solid fa-angle-right" title="Next Panel">Next</a></li>
</ul>
</div>
</section>
<!-- Panel (Spotlight) -->
<section class="panel banner medium left color0" id="third">
<div class="content span-8">
<h2 class="major">Teaching and Awards</h2>
<blockquote>It is no good to try to stop knowledge from going forward. Ignorance is never better than knowledge.</br> -- Enrico Fermi</blockquote>
<h3 class="major">Supervisor</h3>
<ul>
<li> <h4>2023</h4>
<ol>
<li><strong>CERN Summer Student Supervisor for the "Search for double Higgs events in muon pairs and b-jets with the CMS experiment" </br> CERN Summer Student Candidate: <em>"Eliacim Velez"</em> at CERN </strong> </br> Department of High Energy Physics </li>
<li><strong>Master's Degree Supervisor for the "Search for double Higgs events in muon pairs and b-jets with the CMS experiment" </br> Master's degree Candidate: <em>"Michele Barbieri"</em> at University of Bari </strong> </br> Department of High Energy Physics </li>
</ol>
</li>
</ul>
<h3 class="major">Teaching and Hackathons</h3>
<ul>
<li> <h4>2023</h4>
<ol>
<li><strong>Tutor at the EURIZON Detector School</br> </li>
<li><strong>ML_INFN Based Hackathon</br> </li>
<li><strong>Tutor at the CMS Data Analysis School at CERN</br> </li>
<li><strong>Django Girls Geneva Tutor</br> Course: <em>"Programming workshop: Build your first website with the help of CERN coaches!"</em> at CERN IdeaSquare </strong> </br> Department of Information and Communication Technologies </li>
<li><strong>Education Volunteer for Save The Children Italia</br> </li>
<li><strong>Tutor at the CMS Data Analysis School at Fermilab</br> </li>
</ol>
</li>
<li> <h4>2022</h4>
<ol>
<li><strong>ML_INFN Based Hackathon</br> </li>
<li><strong>Didactic Tutor and Assistant Professor </br> Course: <em>"Physics and Laboratory"</em> at University of Bari (250 hours) </strong> </br> Department of Biosciences, Biopharmaceuticals and Biotechnology </li>
</ol>
</li>
<li> <h4>2021</h4>
<ol>
<li><strong>Didactic Tutor and Assistant Professor </br> Course: <em>"Physics"</em> at University of Bari (250 hours) </strong> </br> Department of Biosciences, Biopharmaceuticals and Biotechnology </li>
</ol>
</li>
</ul>
<h3 class="major">Highlights and Awards</h3>
<ol>
<li>Invitation to contribute to <a href="https://www.linkedin.com/advice/1/how-do-you-avoid-bias-machine-learning-imbalanced" target="_blank">collaborative articles</a> for LinkedIn Machine Learning, Statistics and Research</li>
<li>CERN Guide, Shift Leader and Technical Shifter in the 2023 CMS data taking crew. </li>
<img src="images/IMG_20230528_102753.jpg" alt="CERN Guide, Shift Leader and Technical Shifter for the CMS experiemnt during the 2023 Run 3 data taking." height="400" width="400"/></br>
<li>Selection as one of participants to the <a href="https://indico.cern.ch/event/1246472/" target="_blank">13th CMS Patatrack Hackathon</a> at CERN. </li>
<li>Selection as one of the two CERN PhDs for the CDI and CERN Ideasquare <a href="https://www.repubblica.it/tecnologia/2023/07/06/news/innovation_4_change__industry_leaders_summit_cern_di_ginevra-406876410/" target="_blank">Innovation 4 Change (I4C) Program</a>. Committee composed by Fabiola Giannotti, John Elkan, Francesco Profumo and other International Leaders in Innovation. Official Website <a href="https://www.innovation4change.eu" target="_blank">here</a>.</li>
<img src="https://www.repstatic.it/content/contenthub/img/2023/07/06/172050596-9a9a55ba-eaad-4a5f-b016-ec6d191b30a4.jpg?" alt="I4C Final Challenge Projects" height="500" width="500"/></br>
<li>One-year INFN Doctoral Student Scholarship at CERN</li>
<li>Invitation to be on 100th <a href="https://www.suonare.it"target="_blank">Suonare News Magazine</a> as representative of Music Conservatory Niccolò Piccinni</li>
<img src="images/IMG_20230221_094701.jpg" alt="Maestro 110 e Lode article from Suonare News Magazine" height="400" width="400"/></br>
<li>Part of the INFN Local Team in the INFN outreach "What Next? Giovani che raccontano il futuro” project. A <a href="https://next.infn.it/il-cortometraggio/"target="_blank">short film</a> of the one-day experience with High-School and University students has been made public from the 5th October 2022.</li>
<img src="https://next.infn.it/wp-content/uploads/2022/09/nuova-Locandina_6620x9200-1474x2048.jpg" alt="INFN outreach What Next? Giovani che raccontano il futuro project short film" height="400" width="400"/></br>
<li><a href="https://indico.cern.ch/event/645164/attachments/1471601/2279809/tutorial-2017-08June-V2.pdf" target="_blank">Data Quality Monitoring shifts for CMS experiment (15th April - 18th May 2022)</a></li></br>
<img src="images/dqm_shifter.png" alt="Data Quality Monitoring (DQM) Online shifter for the CMS experiment" height="400" width="400"/></br>
<li><a href="https://indico.cern.ch/event/1088671/" target="_blank">CMS Data Analysis School 3rd Prize (4th - 15th January 2022) and invitation to be a facilitator for the 2023 CMS DAS School</a></li></br>
<img src="images/cms-data-school.jpeg" alt="CMS Data Analysis School 3rd Prize Team" height="400" width="400"/></br>
<li><a href="https://dottorato.fisica.uniba.it" target="_blank">University of Bari Ph.D. Fellowship and INFN Membership Association (October 2021 - Present)</a></li></br>
<img src="images/desk_photo.jpeg" alt="10 University of Bari Book Scholarships for emeritus Graduate students" height="400" width="400"/></br>
<li><a href="https://indico.cern.ch/event/855454/contributions/4596351/" target="_blank">Best Poster Awards ACAT 2021 (29th November 2021 - 3rd December 2021)</a></li></br>
<img src="images/ACAT2021.png" alt="ACAT 2021 prizes: dish and fork from Korean colleagues" height="400" width="400"/></br>
<li><a href="https://web.infn.it/csn1/index.php/en/" target="_blank">CSN1 INFN Fellowship (26th July 2021 - 3rd November 2021)</a></li></br>
<img src="images/csn1-fellowship.jpg" alt="INFN Scholarship for 12 emeritus particle physics italian students" height="400" width="400"/></br>
<li><a href="https://www.ecomap.it/prestazione.asp?idPR=14" target="_blank">ECOMAP Scholarships (2016 - 2023)</a></li></br>
<img src="images/ecomap.jpeg" alt="ECOMAP Scholarship for emeritus italian students" height="400" width="400"/></br>
<li><a href="https://www.uniba.it/studenti/segreterie-studenti/amministrative/buoni-libro-per-studenti-meritevoli" target="_blank">University of Bari Scholarship (2016 - 2020)</a></li></br>
<img src="images/book.jpg" alt="Uniba Book Scholarship" height="400" width="400"/></br>
</ol>
<h3 class="major">Moderator</h3>
<ol>
<li><a href="https://indico.cern.ch/event/1269746/" target="_blank">Large Hadron Collider (LHC) Job Matching Event Spring '23 Moderator </a></li>
</ol>
</ol>
<h3 class="major">Funny Awards</h3>
<ol>
<li><a href="https://www.hausdermusik.com/" target="_blank">Director for one day of the Vienna Philarmonic Orchestra by Haus Der Musik</a></li>
</ol>
<ul class="actions">
<button type="button" class="button primary color2 circle icon solid fa-sun" id="dark_light_3" onclick="toggleDarkLight();changeImage();" name="dark_light" title="Turn off/on the lights!"></button>
<li><button type="button" class="button primary color2 circle icon solid fa-play" id="play_pause_3" onclick="togglePlayPause();changePause();" name="play_pause" title="Enjoy/Stop the Beethoven's Sonata Adagio for Piano and Violin n.6 in La major op.30 n.1!"></button></li>
<li><a href="#second" class="button primary color2 circle icon solid fa-angle-left" title="Previous Panel">Before</a></li>
<li><a href="#fourth" class="button primary color2 circle icon solid fa-angle-right" title="Next Panel">Next</a></li>
</ul>
</div>
</section>
<!-- Panel -->
<section class="panel" id="fourth">
<div class="intro color2">
<br/><br/><br/><br/>
<h2 class="major">Photos</h2>
<pre><code>Person me = new Person();
while (me.isAlive()) {
me.WakeUp();
me.Smile();
me.EatPizza();
me.Code();
me.Sleep();
}
</code></pre>
<ul class="actions">
<button type="button" class="button primary color2 circle icon solid fa-sun" id="dark_light_4" onclick="toggleDarkLight();changeImage();" name="dark_light" title="Turn off/on the lights!"></button>
<li><button type="button" class="button primary color2 circle icon solid fa-play" id="play_pause_4" onclick="togglePlayPause();changePause();" name="play_pause" title="Enjoy/Stop the Beethoven's Sonata Adagio for Piano and Violin n.6 in La major op.30 n.1!"></button></li>
<li><a href="#third" class="button primary color2 circle icon solid fa-angle-left">Before</a></li>
<li><a href="#fifth" class="button primary color2 circle icon solid fa-angle-right">Next</a></li>
</ul>
</div>
<div class="gallery">
<div class="group span-3">
<a href="images/Higgs2023.png" class="image filtered span-3" data-position="bottom"><img src="images/Higgs2023.png" alt="Picture of Higgs 2023 Conference Participants in Beijing" title="Picture of Higgs 2023 Conference Participants in Beijing, China"/></a>
<a href="images/gallery/fulls/02.jpg" class="image filtered span-1-5" data-position="center"><img src="images/gallery/thumbs/02.jpg" alt="Picture of me at CMS Cavern - October 2021" title="Picture of me at CMS Cavern - October 2021"/></a>
<a href="images/gallery/fulls/06.jpg" class="image filtered span-1-5" data-position="bottom"><img src="images/gallery/thumbs/06.jpg" alt="Poster Presentation at ACAT 2022 Conference" title="Poster Presentation at ACAT 2022 Conference"/></a>
</div>
<a href="images/gallery/fulls/04.jpg" class="image filtered span-2-5" data-position="top"><img src="images/gallery/thumbs/04.jpg" alt="Picture of Sassi di Matera, Italy" title="Picture of Sassi di Matera, Italy"/></a>
<div class="group span-4-5">
<a href="images/gallery/fulls/03.jpg" class="image filtered span-3" data-position="top"><img src="images/gallery/thumbs/03.jpg" alt="Picture of Sassi di Matera, Italy" title="Picture of Sassi di Matera, Italy"/></a>
<!-- <a href="images/gallery/fulls/05.jpg" class="image filtered span-3" data-position="top"><img src="images/gallery/thumbs/05.jpg" alt="" /></a> -->
<a href="images/gallery/fulls/07.jpg" class="image filtered span-1-5" data-position="center"><img src="images/gallery/thumbs/07.jpg" alt="National Congress of Physics SIF 2022" title="National Congress of Physics SIF 2022 in Milan, Italy"/></a>
<a href="images/gallery/fulls/05.jpg" class="image filtered span-1-5" data-position="bottom"><img src="images/gallery/thumbs/05.jpg" alt="Conference Learning to Discover 2022, Institute Paris-Saclay, Orsay" title="Conference Learning to Discover 2022, Institute Paris-Saclay, Orsay"/></a>
<a href="images/gallery/fulls/08.jpg" class="image filtered span-3" data-position="top"><img src="images/gallery/thumbs/08.jpg" alt="Master's Thesis Printed" title="My Masters Thesis about searches of double Higgs events at the CMS experiment"/></a>
</div>
<a href="images/gallery/fulls/09.jpg" class="image filtered span-2-5" data-position="right"><img src="images/gallery/thumbs/09.jpg" alt="Poster Presentation at ICHEP 2024, Prague" title="Poster Presentation at ICHEP 2024, Prague"/></a>
</div>
<!-- </section> -->
<!-- Panel -->
<!-- <section class="panel color0" id="fifth"> -->
<div class="intro color0" id="fifth">
<h2 class="major">Contacts</h2>
<div class="contact-method">
<span class="icon solid alt fa-home"> <strong> Address </strong></span> <br />
<span>
<a href="https://www.uniba.it/it//ricerca/dipartimenti/fisica">Dipartimento di Fisica "M. Merlin"</a><br />
<a href="https://www.ba.infn.it/it/">INFN, Sezione di Bari</a> <br />
<a href="https://goo.gl/maps/Bc5PmVE53XiGcKdVA">Via Orabona, 4<br />
70125, Bari<br />
Italy</a></span>
</div>
<ul class="icons">
<li><a href="https://www.facebook.com/brunella.danzi" class="icon brands fa-facebook-f" target="_blank"> <span class="label"></span></a></li>
<li><a href="https://www.instagram.com/brunelladanzi/" class="icon brands fa-instagram" target="_blank"> <span class="label">Instagram</span></a></li>
<li><a href="https://github.com/bdanzi" class="icon brands fa-github" target="_blank"> <span class="label"></span></a></li>
<li><a href="mailto:brunella.d'anzi@cern.ch" class="icon solid alt fa-envelope" target="_blank"><span class="label">Mail</span></a></li>
<li><a href="https://www.linkedin.com/in/brunella-d-anzi/" class="icon brands alt fa-linkedin-in" target="_blank"><span class="label"></a></span></li>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSe-FMOUBm8uV2bPnvhr--zP9SeBLiDVGgwnNi8yRJnp4t3nGQ/viewform?usp=pp_url&entry.2130936803=You+should+change...&entry.654544717=You+can+take+care+of...&entry.465546742=You+could+improve+in...&entry.1798462901=I+admire+you+because..." class="icon solid alt fa-comment" target="_blank"><span class="label"></a></span></a></li>
</ul>
<!-- End of WebFreeCounter Code -->
<ul class="actions">
<button type="button" class="button primary color2 circle icon solid fa-sun" id="dark_light_5" onclick="toggleDarkLight();changeImage();" name="dark_light" title="Turn off/on the lights!"></button>
<li><button type="button" class="button primary color2 circle icon solid fa-play" id="play_pause_5" onclick="togglePlayPause();changePause();" name="play_pause" title="Enjoy/Stop the Beethoven's Sonata Adagio for Piano and Violin n.6 in La major op.30 n.1!"></button></li>
<li><a href="#zero" class="button primary color2 circle icon solid fa-angle-left" title="Return to the First Panel">About</a></li>
</ul>
<div class="copyright">©2022 Brunella D'Anzi. Background Image Credits: ©CERN. Design: <a href="https://html5up.net" target="_blank">HTML5 UP</a>. </div>
<!-- Copyright -->
</div>
</section>
</div>
</div>
<!-- Logica JS -->
<script src="advent-calendar/source.js"></script>
<script src="chatventure/main.js"></script>
<script src="merry-xmas-generator/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html-to-image/1.10.9/html-to-image.min.js" integrity="sha512-IetiMzopsrb75HtZydIM8zRv1mlSmV42P0iZVT4sPHxDnhM0I9O8/75bFqlfWoCKTnDB+pFqvoQrlnkgUeShaA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="advent-calendar/script.js"></script>
<script src="xmas-counter/script.js"></script>
<script src="xmas-list/script.js"></script>
<script src="codigotchi/script.js"></script>
<script src="duck/script.js"></script>
<script src="meteo/script.js"></script>
<script src="piano_app/script.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/script.js"></script>
<script src="Kart_Crash/script.js"></script>
<link rel="stylesheet" href="https://cdn.rawgit.com/jpswalsh/academicons/master/css/academicons.min.css">
<script src="https://code.iconify.design/2/2.1.0/iconify.min.js"></script>
</body>
</html>