Ryan McGreal IRES at CERN: LHCb Summer Internship Note

Size: px
Start display at page:

Download "Ryan McGreal IRES at CERN: LHCb Summer Internship Note"

Transcription

1 Ryan McGreal IRES at CERN: LHCb Summer Internship Note I. Introduction The Large Hadron Collider beauty experiment is designed to study the decay of B mesons. B mesons are particles which contain the b, sometimes referred to as bottom or beauty, quark. The LHCb experiment measure Charge Parity violation in hopes of better understanding the matter antimatter asymmetry of the universe. II. Detector Function The LHCb detector is a narrow angle particle detector which only used downstream data. Particles travel in opposite directions and interact in the vertex locator, or Velo. The products of the particle interactions will travel both to the left, upstream, and right, downstream, of the Velo as shown in the schematic below.

2 Image is in the public domain, created by CERN. Only the downstream, or right hand side, data is taken as the detector is oriented so that the particle collisions occur at the far left end of the detector. Protons travel through the center of the detector through the tube shown in the diagram. The LHCb detector is called a narrow angle detector as the detector components downstream form a small angle as compared to other particle detectors with the particle collision locations in the Velo, as can be seen with the schematic. The reason for this is that B mesons which travel downstream after a proton proton collision will likely deviate very little from the proton beam. Each layer of the detector is designed to measure different properties of the products of the proton proton collisions. This allows for the energy, momentum, path and charge of the produced particles to be detected which allows for the identity of the products to be known. III. Vertex Locator For my work I compared the location of particles interactions within the Velo to those generated through Monte Carlo simulations. The purpose of this type of comparison is to determine whether there is a beam misalignment as well as checking that the series of

3 silicon modules which make up the Velo have a uniform material distribution. A beam misalignment would systematically shift the particle interaction points, while a material distribution issue would result in hot spots and dead zones in the Velo data. IV. Methods Data was generated by files kept in the LHCb book keeping system at CERN. The files I used can be seen in the program GangaVertexDown, labeled 1 in the appendix. GangaVertexDown is run with ganga in root. It is to note that the macro shown in appendix 1 was provided by my supervisor Walter Bonivento as well as Victor Coco. GangaVertexDown can pull n-tuples from actual data files as well as from Monte Carlo simulation files. The n-tuples used were the z position of events as well as the r position. The r position is defined as r=sqrt(x^2 +y^2), where the y position is shown on the diagram above and the x position is the distance from the beam pipe into and out of the page. A graph of r vs vz shows the distribution of events. If this is different from Monte Carlo simulations then effort must be made to try to explain these differences. V. Results What I found is a lack of data points near the 1000mm mark along the z axis and between 30 and 35 mm along the radial, r, direction. This can be most clearly seen in the 2011 data with the beam run at 3.5 TeV. For the following graphs the y axis represents r and the x axis depicts z. The unit used is millimeters. Plot 1: r vs z

4 This can be seen more clearly in the next plot, which is zoomed in on the area of question. A box is used to indicate the area of the graph which is lacking points. Plot 2: A zoomed in portion of plot 1

5 VI. Discussion Initially I thought such a gap was the result of not having enough data. After creating plots from different runs I found that this gap remained in every plot. I chose the 2011 data show above as it was the plot which I had the most entries for. The presentation Tomography using downstream tracks by Victor Coco, NIKHEF, from October 11, 2012 suggests that this gap may be caused by the beam pipe exit, however further

6 consistency checks were needed. VII. Future Research In order to better understand any inconsistencies with the data generated by the Velo I have developed macros for each set of n-tuples created per file found in the LHCb book keeping. These macros will allow for large data sets to be managed, as the methods used to create plot 1 and 2 would not be suitable for very large samples. Use of such macros could compare data from different runs. Appendix 1 GangaVertexDown Provided by Victor Coco params = { 'OutputName' : 'NTUPLES.root', 'Mag': 'mu', 'Simulation': True,'Year':'2012' } myfiles = {'MC':{'2011':["/MC/2011/Beam3500GeV-2011-MagDown-Nu2- Pythia8/Sim08a/Digi13/Trig0x /Reco14a/Stripping20r1NoPrescalingFlagged/ /ALLSTREAMS.DST", "/MC/2011/Beam3500GeV-2011-MagUp-Nu2- Pythia8/Sim08c/Digi13/Trig0x /Reco14a/Stripping20r1NoPrescalingFlagged/ /ALLSTREAMS.DST"], '2012':["/MC/2012/Beam4000GeV-2012-MagDown-Nu2.5- Pythia8/Sim08c/Digi13/Trig0x409f0045/Reco14a/Stripping20NoPrescalingFlagged/ /ALLSTREAMS.DST", "/MC/2012/Beam4000GeV-2012-MagUp-Nu2.5- Pythia8/Sim08a/Digi13/Trig0x409f0045/Reco14a/Stripping20NoPrescalingFlagged/ /ALLSTREAMS.DST"]},

7 'Data':{'2011':["/LHCb/Collision12/Beam4000GeV-VeloClosed- MagUp/Reco14/Stripping20/ /EW.DST"], "2012":["/LHCb/Collision11/Beam3500GeV-VeloClosed-MagUp/Real Data/Reco14/Stripping20r1/ /EW.DST"] } } for sim in ['MC']: for year in ['2011','2012']: for mag in ['MagUp','MagDown']: for k,sample in enumerate(myfiles[sim][year]): magnet = 'mu' if mag == 'MagDown': magnet = 'md' j = Job( application = Bender( version = 'v23r3' ) ) j.name = sim+'_'+mag+'_'+year+'_sample'+str(k) j.application.module = '/afs/cern.ch/user/r/rmcgreal/downvertex.py' j.backend = Dirac() ## Setup some parameters for the Bender Job params['year'] = year params['simulation'] = False params['mag'] = magnet params['outputname'] = 'VertexDown'+j.name+'.root' if sim == 'MC': params['simulation'] = True params['outputname'] = 'VertexDown'+j.name+'.root' j.outputfiles = [SandboxFile(params['OutputName'])] dataset = LHCbDataset() mypath = myfiles[sim][year][k].replace('magup',mag) bkq = None if params['simulation'] : bkq = BKQuery( dqflag = "ALL", path = mypath, type = "Path" ) else : bkq = BKQuery( dqflag = "OK", path = mypath, type = "Path" ) dataset=bkq.getdataset() print "I am here" j.inputdata = dataset if params['simulation']: j.splitter = SplitByFiles( filesperjob = 20 ) else: j.splitter = SplitByFiles( filesperjob = 20 ) j.application.params=params j.submit()

Measurement of the D 0 meson mean life with the LHCb detector

Measurement of the D 0 meson mean life with the LHCb detector Author:. Supervisor: Hugo Ruiz Pérez Facultat de Física, Universitat de Barcelona, Diagonal 645, 08028 Barcelona, Spain. Abstract: a measurement of the mean life of the D 0 meson is performed using real

More information

Luminosity measurement and K-short production with first LHCb data. Sophie Redford University of Oxford for the LHCb collaboration

Luminosity measurement and K-short production with first LHCb data. Sophie Redford University of Oxford for the LHCb collaboration Luminosity measurement and K-short production with first LHCb data Sophie Redford University of Oxford for the LHCb collaboration 1 Introduction Measurement of the prompt Ks production Using data collected

More information

IoP Masterclass. The Physics of Flavour at the Large Hadron Collider. Tim Gershon University of Warwick April

IoP Masterclass. The Physics of Flavour at the Large Hadron Collider. Tim Gershon University of Warwick April IoP Masterclass The Physics of Flavour at the Large Hadron Collider Tim Gershon University of Warwick th April 14 2010 The Standard Model 2 Some Questions What is antimatter? Why are there three colours

More information

IoP Masterclass. The Physics of Flavour at the Large Hadron Collider. Tim Gershon University of Warwick March 30th 2011

IoP Masterclass. The Physics of Flavour at the Large Hadron Collider. Tim Gershon University of Warwick March 30th 2011 IoP Masterclass The Physics of Flavour at the Large Hadron Collider Tim Gershon University of Warwick March 30th 2011 The Standard Model 2 Some Questions What is antimatter? Why are there three colours

More information

V 0 production studies at LHCb. Mathias Knecht, EPFL , joint SPS-ÖPG-ÖGA 2 meeting, Innsbrück, Österreich, September 2-4, 2009

V 0 production studies at LHCb. Mathias Knecht, EPFL , joint SPS-ÖPG-ÖGA 2 meeting, Innsbrück, Österreich, September 2-4, 2009 V 0 production studies at LHCb Mathias Knecht, EPFL 2 9 2009, joint SPS-ÖPG-ÖGA 2 meeting, Innsbrück, Österreich, September 2-4, 2009 Outline One of the first measurements to be done with the LHCb detector...

More information

Measurements of Particle Production in pp-collisions in the Forward Region at the LHC

Measurements of Particle Production in pp-collisions in the Forward Region at the LHC 2011 Europhysics Conference on High-Energy Physics, Grenoble Measurements of Particle Production in pp-collisions in the Forward Region at the LHC Thomas Ruf for the LHCb collaboration Introduction Particle

More information

Measurement of the baryon number transport with LHCb

Measurement of the baryon number transport with LHCb Measurement of the baryon number transport with LHCb Marco Adinolfi University of Bristol On behalf of the LHCb Collaboration 13 April 2011 / DIS 2011 Marco Adinolfi DIS 2011-13 April 2011 - Newport News

More information

Recent CMS results on heavy quarks and hadrons. Alice Bean Univ. of Kansas for the CMS Collaboration

Recent CMS results on heavy quarks and hadrons. Alice Bean Univ. of Kansas for the CMS Collaboration Recent CMS results on heavy quarks and hadrons Alice Bean Univ. of Kansas for the CMS Collaboration July 25, 2013 Outline CMS at the Large Hadron Collider Cross section measurements Search for state decaying

More information

Theory English (Official)

Theory English (Official) Q3-1 Large Hadron Collider (10 points) Please read the general instructions in the separate envelope before you start this problem. In this task, the physics of the particle accelerator LHC (Large Hadron

More information

V0 cross-section measurement at LHCb. RIVET analysis module for Z boson decay to di-electron

V0 cross-section measurement at LHCb. RIVET analysis module for Z boson decay to di-electron V0 cross-section measurement at LHCb. RIVET analysis module for Z boson decay to di-electron Outline of the presentation: 1. Introduction to LHCb physics and LHCb detector 2. RIVET plug-in for Z e+e- channel

More information

Muon reconstruction performance in ATLAS at Run-2

Muon reconstruction performance in ATLAS at Run-2 2 Muon reconstruction performance in ATLAS at Run-2 Hannah Herde on behalf of the ATLAS Collaboration Brandeis University (US) E-mail: hannah.herde@cern.ch ATL-PHYS-PROC-205-2 5 October 205 The ATLAS muon

More information

Impact of the Velo 2 half misalignment on physical quantities

Impact of the Velo 2 half misalignment on physical quantities LHCb-INT-216-36 August 19, 216 Impact of the Velo 2 half misalignment on physical quantities Matej Roguljić 1, Silvia Borghi 2, Lucia Grillo 2,3, Giulio Dujany 2. 1 CERN, Geneva, Switzerland 2 The University

More information

LHCb: Reoptimized Detector & Tracking Performance

LHCb: Reoptimized Detector & Tracking Performance LHCb: Reoptimized Detector & Tracking Performance Gerhard Raven NIKHEF and VU, Amsterdam Representing the LHCb collaboration Beauty 2003, Carnegie Mellon University, Oct 14-18, Pittsburgh, PA, USA 1 The

More information

Some studies for ALICE

Some studies for ALICE Some studies for ALICE Motivations for a p-p programme in ALICE Special features of the ALICE detector Preliminary studies of Physics Performances of ALICE for the measurement of some global properties

More information

Electron Identification

Electron Identification Electron Identification Brian Winey Department of Physics, Houghton College, Houghton, NY, 14744 Abstract During this summer, I was given the project of refining the Rochester electron identification code.

More information

Optimizing Selection and Sensitivity Results for VV->lvqq, 6.5 pb -1, 13 TeV Data

Optimizing Selection and Sensitivity Results for VV->lvqq, 6.5 pb -1, 13 TeV Data 1 Optimizing Selection and Sensitivity Results for VV->lvqq, 6.5 pb, 13 TeV Supervisor: Dr. Kalliopi Iordanidou 215 Columbia University REU Home Institution: High Point University 2 Summary Introduction

More information

Study of Edgeless TimePix Pixel Devices. Dylan Hsu Syracuse University 4/30/2014

Study of Edgeless TimePix Pixel Devices. Dylan Hsu Syracuse University 4/30/2014 Study of Edgeless TimePix Pixel Devices Dylan Syracuse University 2 3 Million-Dollar Question Universe is made of matter Particle decays putatively produce equal amounts of matter and antimatter Where

More information

Yiming Li (LAL, Orsay) On behalf of the LHCb and MoEDAL collaborations

Yiming Li (LAL, Orsay) On behalf of the LHCb and MoEDAL collaborations Yiming Li (LAL, Orsay) On behalf of the LHCb and MoEDAL collaborations LHCb 2016 operation Physics highlights Upgrade MoEDAL 16/12/2016 2 Why heavy flavour? A precision experiment for heavy flavour physics

More information

disintegration at LHCb

disintegration at LHCb Study of ψ(2s) J/ψ η disintegration at LHCb TP4 Project January 7, 2011, first version Laureline Josset Date: January 7, 2011 Master EPFL Section Physique TP4 Report Professor T. Tatsuya Assistant F. Blanc

More information

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland. Commissioning of the CMS Detector

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland. Commissioning of the CMS Detector Available on CMS information server CMS CR -2009/113 The Compact Muon Solenoid Experiment Conference Report Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland 15 May 2009 Commissioning of the CMS

More information

Early physics with the LHCb detector

Early physics with the LHCb detector XXVIII PHYSICS IN COLLISION - Perugia, Italy, June, 25-28, 2008 Early physics with the LHCb detector Dirk Wiedner CERN for the LHCb collaboration 27 June 2008 Dirk Wiedner at PIC2008 Perugia 1 Outline

More information

Status and prospects of the LHCb experiment

Status and prospects of the LHCb experiment Status and prospects of the LHCb experiment Overview Spectrometer Vertex Detector RICH Physics Program Trigger Strategy Status and Outlook U. Straumann, Uni Zuerich Geneva, 13. April 2005 pt vs for detected

More information

Susanna Costanza. (Università degli Studi di Pavia & INFN Pavia) on behalf of the ALICE Collaboration

Susanna Costanza. (Università degli Studi di Pavia & INFN Pavia) on behalf of the ALICE Collaboration (Università degli Studi di Pavia & INFN Pavia) on behalf of the ALICE Collaboration 102 Congresso della Società Italiana di Fisica Padova, 26-30 settembre 2016 Outline Heavy flavour physics in ALICE The

More information

LHCb Overview. Barbara Storaci on behalf of the LHCb Collaboration

LHCb Overview. Barbara Storaci on behalf of the LHCb Collaboration LHCb Overview Barbara Storaci on behalf of the LHCb Collaboration CERN Council, December 14 th, 2012 Overview Introduction Collaboration Type of physics considered Detector Detector performances Selection

More information

A. J. Schwartz Physics Department, University of Cincinnati, Cincinnati, Ohio USA

A. J. Schwartz Physics Department, University of Cincinnati, Cincinnati, Ohio USA Physics Department, University of Cincinnati, Cincinnati, Ohio 51 USA E-mail: alan.j.schwartz@uc.edu (on behalf of the Belle II Collaboration) The Belle II experiment is under construction at the KEK laboratory

More information

Heavy Hadron Production and Spectroscopy at ATLAS

Heavy Hadron Production and Spectroscopy at ATLAS Heavy Hadron Production and Spectroscopy at ALAS Carlo Schiavi on behalf of the ALAS Collaboration INFN Sezione di Genova ALAS has studied heavy flavor production and measured the production cross sections

More information

HYPERON PRODUCTION ASYMMETRIES IN 500 GeV/c PION NUCLEUS INTERACTIONS

HYPERON PRODUCTION ASYMMETRIES IN 500 GeV/c PION NUCLEUS INTERACTIONS HYPERON PRODUCTION ASYMMETRIES IN 5 GeV/c PION NUCLEUS INTERACTIONS J. SOLANO representing the FERMILAB E79 COLLABORATION and J. MAGNIN, F.R.A. SIMÃO Centro Brasileiro de Pesquisas Físicas - CBPF Rio de

More information

LHCb physics with the first pb 1

LHCb physics with the first pb 1 LHCb physics with the first 10-20 pb 1 Raluca Mureşan EPFL on behalf of the LHCb collaboration R. Mureşan, LHCb physics with the first 10-20 pb 1 p.1/30 Outline LHCb detector First data analysis and rapidity

More information

(Total for Question = 5 marks) PhysicsAndMathsTutor.com

(Total for Question = 5 marks) PhysicsAndMathsTutor.com 1 Rutherford designed an experiment to see what happened when alpha particles were directed at a piece of gold foil. Summarise the observations and state the conclusions Rutherford reached about the structure

More information

The LHCb Flavour Physics Experiment

The LHCb Flavour Physics Experiment The LHCb Flavour Physics Experiment University of Glasgow AGH, University of Science and Technology, Krakow, Poland, 4 March 2010 Outline Motivation LHC @ CERN @ Geneva The LHCb experiment The 2010 LHC(b)

More information

e + e - (1) Silicon Vertex Detector

e + e - (1) Silicon Vertex Detector 3.1 GeV (4) Electromagnetic Calorimeter (3) Cerenkov- Detector (2) Drift Chamber (5) 1.5 T Solenoid (6) Instrumented Iron Yoke e + e - (1) Silicon Vertex Detector 9.0 GeV e + e - Colliders as B Factories

More information

IoP Masterclass B PHYSICS. Tim Gershon University of Warwick March 18 th 2009

IoP Masterclass B PHYSICS. Tim Gershon University of Warwick March 18 th 2009 IoP Masterclass B PHYSICS Tim Gershon University of Warwick March 18 th 2009 The Standard Model 2 Some Questions What is antimatter? Why are there three colours of quarks? Why are there so many bosons?

More information

Modern experiments - ATLAS

Modern experiments - ATLAS Modern experiments - ATLAS, paula.eerola [at] hep.lu.se,, 046-222 7695 Outline Introduction why new experiments? The next generation of experiments: ATLAS at the Large Hadron Collider Physics basics luminosity,

More information

Particle Identification of the LHCb detector

Particle Identification of the LHCb detector HCP 2005 Particle Identification of the LHCb detector Ann.Van.Lysebetten@cern.ch on behalf of the LHCb collaboration CERN 5th July 2005 The LHCb experiment : introduction precision measurements of CP violation

More information

LHCb status. Raluca Mureşan EPFL. p.1/20

LHCb status. Raluca Mureşan EPFL. p.1/20 LHCb status Raluca Mureşan EPFL p.1/20 Disclaimer too many things going on 8 meetings to attend per week, days with over 100 e-mails very dinamic evolution - the most of the plots shown in a meeting are

More information

Elementary Particle Physics Glossary. Course organiser: Dr Marcella Bona February 9, 2016

Elementary Particle Physics Glossary. Course organiser: Dr Marcella Bona February 9, 2016 Elementary Particle Physics Glossary Course organiser: Dr Marcella Bona February 9, 2016 1 Contents 1 Terms A-C 5 1.1 Accelerator.............................. 5 1.2 Annihilation..............................

More information

Status of the LHCb experiment and minimum bias physics

Status of the LHCb experiment and minimum bias physics Status of the LHCb experiment and minimum bias physics Sebastian Bachman Heidelberg University on behalf of the LHCb collaboration 6/19/2010 Sebastian Bachmann 1 Beauty and Charm at the LHC LHC is a factory

More information

DESY Summer Students Program 2008: Exclusive π + Production in Deep Inelastic Scattering

DESY Summer Students Program 2008: Exclusive π + Production in Deep Inelastic Scattering DESY Summer Students Program 8: Exclusive π + Production in Deep Inelastic Scattering Falk Töppel date: September 6, 8 Supervisors: Rebecca Lamb, Andreas Mussgiller II CONTENTS Contents Abstract Introduction.

More information

Flavour Tagging at LHCb

Flavour Tagging at LHCb Flavour Tagging at LHCb Miriam Calvo Gomez, on behalf of the LHCb Collaboration Enginyeria La Salle Universitat Ramon Llull 822 Barcelona, SPAIN miriam.calvo@cern.ch 1 Introduction LHCb is a heavy flavour

More information

Discovery of the W and Z 0 Bosons

Discovery of the W and Z 0 Bosons Discovery of the W and Z 0 Bosons Status of the Standard Model ~1980 Planning the Search for W ± and Z 0 SppS, UA1 and UA2 The analyses and the observed events First measurements of W ± and Z 0 masses

More information

FYST17 Lecture 6 LHC Physics II

FYST17 Lecture 6 LHC Physics II FYST17 Lecture 6 LHC Physics II 1 Today & Monday The LHC accelerator Challenges The experiments (mainly CMS and ATLAS) Important variables Preparations Soft physics EWK physics Some recent results Focus

More information

THE LHC, currently under construction at the European Organization

THE LHC, currently under construction at the European Organization IEEE TRANSACTIONS ON NUCLEAR SCIENCE, VOL. 53, NO. 5, OCTOBER 2006 2907 Background Radiation Studies at LHCb Using Geant4 G. G. Daquino, G. Corti, and G. Folger Abstract This paper aims to describe the

More information

Invariant Mass, Missing Mass, jet reconstruction and jet flavour tagging

Invariant Mass, Missing Mass, jet reconstruction and jet flavour tagging 1 Experimentelle Methods of Particle Physics HS 215 http://www.physik.uzh.ch/lectures/empp/ Wednesday 16.12.15 and Thursday 17.12.15 Invariant Mass, Missing Mass, jet reconstruction and jet flavour tagging

More information

AGH-UST University of Science and Technology, Faculty of Physics and Applied Computer Science, Krakow, Poland

AGH-UST University of Science and Technology, Faculty of Physics and Applied Computer Science, Krakow, Poland Central Exclusive Production at LHCb AGH-UST University of Science and Technology, Faculty of Physics and Applied Computer Science, Krakow, Poland E-mail: brachwal@agh.edu.pl The LHCb detector, with its

More information

Frontier Particle Accelerators

Frontier Particle Accelerators AAAS February 2005 Frontier Particle Accelerators For Elementary Particle Physics Together with Cosmology and Astrophysics, Elementary Particle Physics seeks understanding of the basic physical character

More information

Non-collision Background Monitoring Using the Semi-Conductor Tracker of ATLAS at LHC

Non-collision Background Monitoring Using the Semi-Conductor Tracker of ATLAS at LHC WDS'12 Proceedings of Contributed Papers, Part III, 142 146, 212. ISBN 978-8-7378-226-9 MATFYZPRESS Non-collision Background Monitoring Using the Semi-Conductor Tracker of ATLAS at LHC I. Chalupková, Z.

More information

Name : Physics 490. Practice Final (closed book; calculator, one notecard OK)

Name : Physics 490. Practice Final (closed book; calculator, one notecard OK) Name : Physics 490. Practice Final (closed book; calculator, one notecard OK) Problem I: (a) Give an example of experimental evidence that the partons in the nucleon (i) are fractionally charged. How can

More information

The LHCb Experiment II Detector XXXIV SLAC Summer Institute, July, 2006

The LHCb Experiment II Detector XXXIV SLAC Summer Institute, July, 2006 The LHCb Experiment II Detector XXXIV SLAC Summer Institute, 17-28 July, 2006 Tatsuya NAKADA CERN and Ecole Polytechnique Fédérale de Lausanne (EPFL) 1) Introduction Physics requirements for the detector

More information

LHCb. Zooming in on the matter antimatter puzzle. researching fundamental physics since Nikhef Annual Report

LHCb. Zooming in on the matter antimatter puzzle. researching fundamental physics since Nikhef Annual Report 20 LHCb Zooming in on the matter antimatter puzzle Elena Dall Occo working with the read-out electronics of the VeloPix detector. researching fundamental physics since 1947 2016 Figure 1. Display of a

More information

Analyzing CMS events

Analyzing CMS events Quarknet University of Rochester, March 23, 2012 Analyzing CMS events Questions in Particle Physics Introducing the Standard Model The Large Hadron Collider The CMS detector W and Z bosons: decays ispy

More information

Measurement of CP violation in B J/ψK 0 S. decays. Frank Meier TU Dortmund. XXIX Rencontres de Physique de la Vallée d Aoste March 1 7, 2015

Measurement of CP violation in B J/ψK 0 S. decays. Frank Meier TU Dortmund. XXIX Rencontres de Physique de la Vallée d Aoste March 1 7, 2015 Measurement of CP violation in B J/ψK S decays at LHCb Frank Meier TU Dortmund on behalf of the LHCb Collaboration XXIX Rencontres de Physique de la Vallée d Aoste March 1 7, 215 CP violation in the SM

More information

FYST17 Lecture 6 LHC Physics II

FYST17 Lecture 6 LHC Physics II FYST17 Lecture 6 LHC Physics II 1 Today, (tomorrow) & Next week The LHC accelerator Challenges The experiments (mainly CMS and ATLAS) Important variables Preparations Soft physics minímum bias, underlying

More information

Search for a Z at an e + e - Collider Thomas Walker

Search for a Z at an e + e - Collider Thomas Walker Search for a Z at an e + e - Collider Thomas Walker Significance: Many theories predict that another neutral gauge boson (Z ) may exist. In order to detect this Z, I would use an e + e - linear collider

More information

Particle detection 1

Particle detection 1 Particle detection 1 Recall Particle detectors Detectors usually specialize in: Tracking: measuring positions / trajectories / momenta of charged particles, e.g.: Silicon detectors Drift chambers Calorimetry:

More information

October 4, :33 ws-rv9x6 Book Title main page 1. Chapter 1. Measurement of Minimum Bias Observables with ATLAS

October 4, :33 ws-rv9x6 Book Title main page 1. Chapter 1. Measurement of Minimum Bias Observables with ATLAS October 4, 2018 3:33 ws-rv9x6 Book Title main page 1 Chapter 1 Measurement of Minimum Bias Observables with ATLAS arxiv:1706.06151v2 [hep-ex] 23 Jun 2017 Jiri Kvita Joint Laboratory for Optics, Palacky

More information

Matter, Antimatter and the Strangeness of CP violation

Matter, Antimatter and the Strangeness of CP violation Matter, Antimatter and the Strangeness of CP violation Angela Romano Angela Romano Masterclass 21/04/10 1 Cambridge, 1928 : Dirac predicted the existence of the positron e+, same mass but opposite charge

More information

At this time the quark model consisted of three particles, the properties of which are given in the table.

At this time the quark model consisted of three particles, the properties of which are given in the table. *1 In 1961 Murray Gell-Mann predicted the existence of a new particle called an omega (Ω) minus. It was subsequently discovered in 1964. At this time the quark model consisted of three particles, the properties

More information

Physics at HERA. Summer Student Lectures August Katja Krüger Kirchhoff Institut für Physik H1 Collaboration

Physics at HERA. Summer Student Lectures August Katja Krüger Kirchhoff Institut für Physik H1 Collaboration Physics at HERA Summer Student Lectures 18 + 19 August 28 Kirchhoff Institut für Physik H1 Collaboration email: katja.krueger@desy.de Overview Part 2 Exotics Jet Physics Cross Sections Strong Coupling

More information

ANTIMATTER MATTER. does the difference between matter and antimatter arise?

ANTIMATTER MATTER. does the difference between matter and antimatter arise? WHY ANTIMATTER MATTERS! One of the most striking facts about the Universe is that it is composed almost entirely of matter. At the Big Bang equal amounts of matter and antimatter would have been created.

More information

LHCb: From the detector to the first physics results

LHCb: From the detector to the first physics results LHCb: From the detector to the first physics results Olivier Callot Laboratoire de l Accélérateur Linéaire, IN2P3/CNRS and Université Paris XI, Orsay, France On behalf of the LHCb collaboration In this

More information

b Physics Prospects For The LHCb Experiment Thomas Ruf for the LHCb Collaboration Introduction Detector Status Physics Program

b Physics Prospects For The LHCb Experiment Thomas Ruf for the LHCb Collaboration Introduction Detector Status Physics Program b Physics Prospects For The LHCb Experiment Thomas Ruf for the LHCb Collaboration Introduction Detector Status Physics Program b Primary goal of the LHCb Experiment Search for New Physics contributions

More information

A Geant4 validation study for the ALICE experiment at the LHC

A Geant4 validation study for the ALICE experiment at the LHC A Geant4 validation study for the ALICE experiment at the LHC Kevin Nicholas Barends Department of Physics University of Cape Town Supervisor: Dr Alexander Kalweit Co-supervisor: Dr Sandro Wenzel 04 August

More information

Frontier Science: The mystery of Antimatter

Frontier Science: The mystery of Antimatter Frontier Science: The mystery of Antimatter Cristina Lazzeroni Professor in Particle Physics STFC Public Engagement Fellow ASE Frontier Science Lecture University of Birmingham Poynting Physics S02 7th

More information

Results From The HARP Experiment

Results From The HARP Experiment Results From The HARP Experiment Lara Howlett University of Sheffield Overview of HARP and forward analysis Al analysis for K2K experiment Be analysis for MiniBooNE experiment Motivations Systematic study

More information

Some fundamental questions

Some fundamental questions Some fundamental questions What is the standard model of elementary particles and their interactions? What is the origin of mass and electroweak symmetry breaking? What is the role of anti-matter in Nature?

More information

First 5 observation of CP violation in the decays of B0. B s at LHCb. Maria Zangoli Per la collaborazione LHCb

First 5 observation of CP violation in the decays of B0. B s at LHCb. Maria Zangoli Per la collaborazione LHCb First 5 observation of CP violation in the decays of 0 B s at LHCb Maria Zangoli Per la collaborazione LHCb XCIX Congresso Nazionale SIF Trieste 25 settembre 2013 Maria Zangoli First 5 observation of CP

More information

PoS(HQL 2012)021. The LHCb upgrade. Tomasz Szumlak 1

PoS(HQL 2012)021. The LHCb upgrade. Tomasz Szumlak 1 The LHCb upgrade Tomasz Szumlak 1 AGH - University of Science and Technology al. Mickiewicza 30, 30-059 Kraków, Poland E-mail: szumlak@agh.edu.pl The LHCb experiment is designed to perform high-precision

More information

Muon Alignment at CMS

Muon Alignment at CMS Muon Alignment at CMS for CMS Collaboration 1 The CMS Detector Compact Muon Solenoid 8[7] TeV in Run 1 > 13 TeV for Run 2 4 main components Tracker Electromagnetic Calorimeter Hadron Calorimeter Superconducting

More information

Identification of the Higgs boson produced in association with top quark pairs in proton-proton

Identification of the Higgs boson produced in association with top quark pairs in proton-proton Identification of the Higgs boson produced in association with top quark pairs in proton-proton collision: an analysis of the final state containing three leptons with the ATLAS detector Valentina Vecchio,

More information

Search for the Z Boson in the Dielectron Channel

Search for the Z Boson in the Dielectron Channel Search for the Z Boson in the Dielectron Channel Sedrick Weinschenk 1,2 1 Physics Department, Columbia University 2 Physics and Astronomy Department, Butler University August 3, 2018 This paper discusses

More information

A search for heavy and long-lived staus in the LHCb detector at s = 7 and 8 TeV

A search for heavy and long-lived staus in the LHCb detector at s = 7 and 8 TeV A search for heavy and long-lived staus in the LHCb detector at s = 7 and 8 TeV Trần Minh Tâm minh-tam.tran@epfl.ch on behalf of the LHCb Collaboration LHCb-CONF-2014-001 EPFL, Laboratoire de Physique

More information

The Search for the Higgs Boson, and the CMS Project

The Search for the Higgs Boson, and the CMS Project The Search for the Higgs Boson, and the CMS Project John Palsmeier Benedictine College Advisor: Stan Durkin The Ohio State University Introduction For the past summer I have been working with Professor

More information

Physics Motivation The Vertex Locator The Outer Tracker Tracking in HERA-B and LHCb LHCb Optimization

Physics Motivation The Vertex Locator The Outer Tracker Tracking in HERA-B and LHCb LHCb Optimization b-physics: HERA-B and LHCb Marcel Merk (for Jo van den Brand) April 8, 22 Physics Motivation The Vertex Locator The Outer Tracker Tracking in HERA-B and LHCb LHCb Optimization b b Physics What does LHCb

More information

Results and Prospects for Ion Physics at LHCb

Results and Prospects for Ion Physics at LHCb Discovery Physics at the LHC Kruger 2016 Results and Prospects for Ion Physics at LHCb Patrick Robbe, LAL Orsay, 7 December 2016, For the LHCb Collaboration Outline The LHCb experiment Results in ppb and

More information

HERA. Daniel Pitzl, DESY FH1 WA HERA running Status of the experiments Selected physics results. HERA and LHC

HERA. Daniel Pitzl, DESY FH1 WA HERA running Status of the experiments Selected physics results. HERA and LHC HERA Daniel Pitzl, DESY FH1 WA 23.5.2006 HERA running Status of the experiments Selected physics results FL HERA and LHC 1 Luminosity collection H1 luminosity 2005-2006 2005 was HERA's best year so far!

More information

PoS(EPS-HEP2017)662. Charm physics prospects at Belle II

PoS(EPS-HEP2017)662. Charm physics prospects at Belle II Dipartimento di Matematica e Fisica, Università di Roma Tre and INFN Sezione di Roma Tre, Via della vasca navale 84, I-00146 Rome, Italy E-mail: giacomo.depietro@roma3.infn.it Belle II is a major upgrade

More information

Recent results from the LHCb experiment

Recent results from the LHCb experiment Recent results from the LHCb experiment University of Cincinnati On behalf of the LHCb collaboration Brief intro to LHCb The Large Hadron Collider (LHC) proton-proton collisions NCTS Wksp. DM 2017, Shoufeng,

More information

Hadron Spectroscopy at LHCb. Hadron Spectroscopy. Results from LHCb. Lucio Anderlini (INFN Firenze) on behalf of the LHCb Collaboration

Hadron Spectroscopy at LHCb. Hadron Spectroscopy. Results from LHCb. Lucio Anderlini (INFN Firenze) on behalf of the LHCb Collaboration Hadron Spectroscopy Results from LHCb Lucio Anderlini on behalf of the LHCb Collaboration 1 Spectroscopy: no longer stamp collection In the last 15 years many new states not fitting the expectations for

More information

Tracking at the LHC. Pippa Wells, CERN

Tracking at the LHC. Pippa Wells, CERN Tracking at the LHC Aims of central tracking at LHC Some basics influencing detector design Consequences for LHC tracker layout Measuring material before, during and after construction Pippa Wells, CERN

More information

2 The ATLAS Experiment at the Large Hadron Collider at CERN

2 The ATLAS Experiment at the Large Hadron Collider at CERN Studies of the Di-Muons Resonances at the ATLAS Experiment at CERN PhD Detailed Research Project PhD Candidate: Camilla Maiani Supervisor: Prof. Carlo Dionisi, Dott. Stefano Giagu Università di Roma La

More information

Dissecting the Higgs Discovery: The Anatomy of a 21st Century Scientific Achievement

Dissecting the Higgs Discovery: The Anatomy of a 21st Century Scientific Achievement Dissecting the Higgs Discovery: The Anatomy of a 21st Century Scientific Achievement Lauren Tompkins Arthur H. Compton Lectures October 19th, 2013 Lecture 6 Adding particles with a little help from Einstein

More information

Looking for strange particles in ALICE. 1. Overview

Looking for strange particles in ALICE. 1. Overview Looking for strange particles in ALICE 1. Overview The exercise proposed here consists of a search for strange particles, produced from collisions at LHC and recorded by the ALICE experiment. It is based

More information

Status of the LHCb RICH and hadron particle identification

Status of the LHCb RICH and hadron particle identification Status of the LHCb RICH and hadron particle identification M. Adinolfi University of Oxford On behalf of the LHCb collaboration (with many thanks to all the people whose presentations have been n hacked)

More information

arxiv: v1 [hep-ex] 9 Jan 2019

arxiv: v1 [hep-ex] 9 Jan 2019 Quarkonium production as a function of charged-particle multiplicity in pp and p Pb collisions measured by ALICE at the LHC arxiv:1901.02627v1 [hep-ex] 9 Jan 2019 Discipline of Physics, School of Basic

More information

PoS(EPS-HEP2015)544. b-flavour tagging in pp collisions. Alex Birnkraut TU Dortmund

PoS(EPS-HEP2015)544. b-flavour tagging in pp collisions. Alex Birnkraut TU Dortmund b-flavour tagging in pp collisions TU Dortmund E-mail: a.birnkraut@cern.ch In the system of neutral B mesons CP-violation and meson mixing can be measured using timedependent analyses, as performed at

More information

Alignment of the ATLAS Inner Detector

Alignment of the ATLAS Inner Detector Alignment of the ATLAS Inner Detector Roland Härtel - MPI für Physik on behalf of the ATLAS inner detector alignment group Outline: LHC / ATLAS / Inner Detector Alignment approaches Results Large Hadron

More information

Experimental Signatures for Lorentz Violation (in Neutral B Meson Mixing)

Experimental Signatures for Lorentz Violation (in Neutral B Meson Mixing) Experimental Signatures for Lorentz Violation (in Neutral B Meson Mixing) Theory recap (see Mike Berger's talk for details) Experimental situation Experimental issues: particle/antiparticle differences

More information

The beam-gas method for luminosity measurement at LHCb

The beam-gas method for luminosity measurement at LHCb The beam-gas method for luminosity measurement at LHCb P. Hopchev To cite this version: P. Hopchev. The beam-gas method for luminosity measurement at LHCb. XLVth Rencontres de Moriond: Electroweak Interactions

More information

The experiment at JINR: status and physics program

The experiment at JINR: status and physics program The 3rd International Conference on Particle Physics and Astrophysics Volume 2018 Conference Paper The BM@N experiment at JINR: status and physics program D. Baranov, M. Kapishin, T. Mamontova, G. Pokatashkin,

More information

Experimental results on the atmospheric muon charge ratio

Experimental results on the atmospheric muon charge ratio DOI:.51/epjconf/2016123007 Experimental results on the atmospheric muon charge ratio N. Mauri a Dipartimento di Fisica e Astronomia dell Università di Bologna and INFN, Sezione di Bologna, Viale Berti

More information

Recent LHCb measurements of Electroweak Boson Production in Run-1

Recent LHCb measurements of Electroweak Boson Production in Run-1 Recent LHCb measurements of Electroweak Boson Production in Run-1 William Barter European Organisation for Nuclear Research (CERN) UCL Seminar 5 th February 2016 W. Barter (CERN) Electroweak Production

More information

Status of the LHCb RICH detector and the HPD

Status of the LHCb RICH detector and the HPD Beauty 2005 Status of the LHCb RICH detector and the HPD Tito Bellunato Università degli Studi di Milano Bicocca & INFN On behalf of the LHCb RICH group Assisi 23 June Assisi 2005 23 June Tito Bellunato

More information

Direct CP violation in two-body decays experiment Towards the Ultimate Precision in Flavour Physics

Direct CP violation in two-body decays experiment Towards the Ultimate Precision in Flavour Physics Direct CP violation in two-body decays experiment Towards the Ultimate Precision in Flavour Physics INFN and University of Bologna TUPIFP University of Warwick, UK 16 18 April 2018 The direct CPV Grossman,

More information

Hadronic Decays Group Report

Hadronic Decays Group Report Carlo Schiavi on behalf of the Hadronic Decays Group 14 July 211 (B-physics meeting) Carlo Schiavi on behalf of the Hadronic Decays Group Page 1 Outlook Cross-section news: D ( )± meson measurements Spectroscopy

More information

Lecture 11. Weak interactions

Lecture 11. Weak interactions Lecture 11 Weak interactions 1962-66: Formula/on of a Unified Electroweak Theory (Glashow, Salam, Weinberg) 4 intermediate spin 1 interaction carriers ( bosons ): the photon (γ) responsible for all electromagnetic

More information

Measurement of Quenched Energy Flow for Dijets in PbPb collisions with CMS

Measurement of Quenched Energy Flow for Dijets in PbPb collisions with CMS Measurement of Quenched Energy Flow for Dijets in PbPb collisions with CMS For the CMS Collaboration NPA Seminar Yale, USA 15 October, 2015 Relativistic Heavy Ion Collisions Trying to answer two important

More information

Part II: Detectors. Peter Schleper Universität Hamburg

Part II: Detectors. Peter Schleper Universität Hamburg Part II: Detectors Peter Schleper Universität Hamburg 30.05.2018 Outline of the lecture: 1. Overview on detectors 2. Particle interactions with matter 3. Scintillators and photon detectors 4. Semiconductor

More information

LHCb Semileptonic Asymmetry

LHCb Semileptonic Asymmetry CERN E-mail: mika.vesterinen@cern.ch A recent measurement of the CP violating flavour specific asymmetry in B s decays, a s sl, is presented. This measurement is based on a data sample corresponding to

More information

Searches for exotica at LHCb

Searches for exotica at LHCb Searches for exotica at LHCb Lorenzo Sestini Università di Padova e INFN LHCb Implications Workshop, Geneve-Cern, 3-11-2015 Searches for exotics LHCb can be complementary to ATLAS and CMS in the search

More information

Strange Particle Production in p-p collisions at ALICE

Strange Particle Production in p-p collisions at ALICE Strange Particle Production in p-p collisions at ALICE Rabia Aslam Supervisors: Jean-Pierre Revol and Adam Jacholkowski CERN Summer Student 2011 November 17, 2011 Abstract In this project, the production

More information