Jet-finding for LHC. Gavin Salam work with M. Cacciari and (in progress) G. Soyez. LPTHE, Universities of Paris VI and VII and CNRS

Size: px
Start display at page:

Download "Jet-finding for LHC. Gavin Salam work with M. Cacciari and (in progress) G. Soyez. LPTHE, Universities of Paris VI and VII and CNRS"

Transcription

1 Jet-finding for LHC Gavin Salam work with M. Cacciari and (in progress) G. Soyez LPTHE, Universities of Paris VI and VII and CNRS Robi is 60, SPhT Saclay 24 November 2006

2 Jet clustering in the LHC era (p. 2) Introduction Introduction Jet finding at LEP/HERA: At LHC it will be more complex: Clean environment Moderate number of particles ( 50) Up to 25 simultaneous pp collisions (10 in above event) Thousands of particles

3 Jet clustering in the LHC era (p. 2) Introduction Introduction Jet finding at LEP/HERA: At LHC it will be more complex: Clean environment Moderate number of particles ( 50) Up to 25 simultaneous pp collisions (10 in above event) Thousands of particles

4 Jet clustering in the LHC era (p. 3) Introduction New issues at LHC Two characteristically new issues appear for jet finding in the complex environment of of LHC: How, computationally, to deal with the clustering of thousands of particles Solutions exploit interesting links between jet-finding and computational geometry How to reconstruct correct jet kinematics despite the significant additional energy from the pileup events Useful to introduce the concept of a jet area

5 Jet clustering in the LHC era (p. 4) Introduction Jet finder defs. Clustering jet finders 1. Calculate distances dij between all particles i and j dib between i and beam 2. Find smallest of d ij and d ib If dij is smallest, recombine i and j if dib is smallest call i a jet 3. Goto step 1 if anything s left Two variants (& one parameter, R) k t jet finder [1991] d ij = min(k 2 ti, k 2 tj) R 2 ij, d ib = k 2 tir 2 Cambridge/Aachen [1998] d ij = R 2 ij, d ib = R 2 [ R 2 ij = y 2 ij+ φ 2 ij]

6 Jet clustering in the LHC era (p. 4) Introduction Jet finder defs. Clustering jet finders 1. Calculate distances dij between all particles i and j dib between i and beam 2. Find smallest of d ij and d ib If dij is smallest, recombine i and j if dib is smallest call i a jet 3. Goto step 1 if anything s left Two variants (& one parameter, R) k t jet finder [1991] d ij = min(k 2 ti, k 2 tj) R 2 ij, d ib = k 2 tir 2 Cambridge/Aachen [1998] d ij = R 2 ij, d ib = R 2 [ R 2 ij = y 2 ij+ φ 2 ij]

7 Jet clustering in the LHC era (p. 4) Introduction Clustering jet finders 1. Calculate distances dij between all particles i and j dib between i and beam Cone jet finders e.g. Jet finder defs. 2. Find smallest of d ij and d ib If dij is smallest, recombine i and j if dib is smallest call i a jet 3. Goto step 1 if anything s left Two variants (& one parameter, R) k t jet finder [1991] d ij = min(k 2 ti, k 2 tj) R 2 ij, d ib = k 2 tir 2 Cambridge/Aachen [1998] d ij = R 2 ij, d ib = R 2 [ R 2 ij = y 2 ij+ φ 2 ij] [from W. Plano]

8 Jet clustering in the LHC era (p. 5) Speed Time to cluster N particles t (s) KtJet OJF Tevatron MidPoint N JetClu (IR unsafe cone) LHC (single LHC (c. 20 LHC interaction) interactions) Heavy Ion Standard C++ (and fortran) k t -clustering takes time N 3. a Pb-Pb event takes 1 day! JetClu (cone) is fast, but IR unsafe at NLO. being phased out at Tevatron IR-safer cone (Midpoint) is as slow as k t IR unsafe at NNLO Jet-clustering speed is an issue for high-luminosity pp ( 10 8 events) and Pb-Pb ( 10 7 events) collisions at LHC.

9 Jet clustering in the LHC era (p. 5) Speed Time to cluster N particles t (s) KtJet OJF Tevatron MidPoint N JetClu (IR unsafe cone) LHC (single LHC (c. 20 LHC interaction) interactions) Heavy Ion Standard C++ (and fortran) k t -clustering takes time N 3. a Pb-Pb event takes 1 day! JetClu (cone) is fast, but IR unsafe at NLO. being phased out at Tevatron IR-safer cone (Midpoint) is as slow as k t IR unsafe at NNLO Jet-clustering speed is an issue for high-luminosity pp ( 10 8 events) and Pb-Pb ( 10 7 events) collisions at LHC.

10 Jet clustering in the LHC era (p. 6) Speed Why is k t an N 3 algorithm? 1. Given the initial set of particles, construct a table of all the d ij, d ib. [O ( N 2) operations, done once] 2. Scan the table to find the minimal value d min of the d ij, d ib. [O ( N 2) operations, done N times] 3. Merge or remove the particles corresponding to d min as appropriate. [O (1) operations, done N times] 4. Update the table of d ij, d ib to take into account the merging or removal, and if any particles are left go to step 2. [O (N) operations, done N times] This is the brute-force or naive method

11 Jet clustering in the LHC era (p. 7) Speed Can one do better than N 2? There are N(N 1)/2 distances d ij surely we have to calculate them all in order to find smallest? k t distance measure is partly geometrical: Consider smallest d ij = min(k 2 ti,k2 tj )R2 ij Suppose k ti < k tj Then: R ij <= R il for any l j. [If l s.t. R il < R ij then d il < d ij ] In words: if i,j form smallest d ij then j is geometrical nearest neighbour (GNN) of i. k t distance need only be calculated between GNNs Each point has 1 GNN need only calculate N d ij s

12 Jet clustering in the LHC era (p. 7) Speed Can one do better than N 2? There are N(N 1)/2 distances d ij surely we have to calculate them all in order to find smallest? k t distance measure is partly geometrical: Consider smallest d ij = min(k 2 ti,k2 tj )R2 ij Suppose k ti < k tj Then: R ij <= R il for any l j. [If l s.t. R il < R ij then d il < d ij ] In words: if i,j form smallest d ij then j is geometrical nearest neighbour (GNN) of i. k t distance need only be calculated between GNNs Each point has 1 GNN need only calculate N d ij s

13 Jet clustering in the LHC era (p. 7) Speed Can one do better than N 2? There are N(N 1)/2 distances d ij surely we have to calculate them all in order to find smallest? k t distance measure is partly geometrical: Consider smallest d ij = min(k 2 ti,k2 tj )R2 ij Suppose k ti < k tj Then: R ij <= R il for any l j. [If l s.t. R il < R ij then d il < d ij ] In words: if i,j form smallest d ij then j is geometrical nearest neighbour (GNN) of i. k t distance need only be calculated between GNNs Each point has 1 GNN need only calculate N d ij s

14 Jet clustering in the LHC era (p. 8) Speed Finding Geom Nearest Neighbours Given a set of vertices on plane (1...10) a Voronoi diagram partitions plane into cells containing all points closest to each vertex Dirichlet 1850, Voronoi 1908 A vertex s nearest other vertex is always in an adjacent cell. E.g. GNN of point 7 will be found among 1,4,2,8,3 (it turns out to be 3) Construction of Voronoi diagram for N points: N ln N time Fortune 88 Update of 1 point in Voronoi diagram: ln N time Devillers 99 [+ related work by other authors] Convenient C++ package available: CGAL

15 Jet clustering in the LHC era (p. 8) Speed Finding Geom Nearest Neighbours Given a set of vertices on plane (1...10) a Voronoi diagram partitions plane into cells containing all points closest to each vertex Dirichlet 1850, Voronoi 1908 A vertex s nearest other vertex is always in an adjacent cell. E.g. GNN of point 7 will be found among 1,4,2,8,3 (it turns out to be 3) Construction of Voronoi diagram for N points: N ln N time Fortune 88 Update of 1 point in Voronoi diagram: ln N time Devillers 99 [+ related work by other authors] Convenient C++ package available: CGAL

16 Jet clustering in the LHC era (p. 8) Speed Finding Geom Nearest Neighbours Given a set of vertices on plane (1...10) a Voronoi diagram partitions plane into cells containing all points closest to each vertex Dirichlet 1850, Voronoi 1908 A vertex s nearest other vertex is always in an adjacent cell. E.g. GNN of point 7 will be found among 1,4,2,8,3 (it turns out to be 3) Construction of Voronoi diagram for N points: N ln N time Fortune 88 Update of 1 point in Voronoi diagram: ln N time Devillers 99 [+ related work by other authors] Convenient C++ package available: CGAL

17 Jet clustering in the LHC era (p. 9) Speed Assembling fast k t clustering The FastJet algorithm: Construct the Voronoi diagram of the N particles with CGAL O (N ln N) Find the GNN of each of the N particles, calculate d ij store result in a priority queue (C++ map) O (N ln N) Repeat following steps N times: Find smallest d ij, merge/eliminate i,j N O (1) Update Voronoi diagram and distance map N O (ln N) Overall an O (N ln N) algorithm Cacciari & GPS, hep-ph/ salam/fastjet/ Results identical to standard N 3 implementations

18 Jet clustering in the LHC era (p. 9) Speed Assembling fast k t clustering The FastJet algorithm: Construct the Voronoi diagram of the N particles with CGAL O (N ln N) Find the GNN of each of the N particles, calculate d ij store result in a priority queue (C++ map) O (N ln N) Repeat following steps N times: Find smallest d ij, merge/eliminate i,j N O (1) Update Voronoi diagram and distance map N O (ln N) Overall an O (N ln N) algorithm Cacciari & GPS, hep-ph/ salam/fastjet/ Results identical to standard N 3 implementations

19 Jet clustering in the LHC era (p. 10) Speed FastJet performance (kt) OJF MidPoint JetClu (almost IR unsafe) t (s) KtJet FastJet Tevatron LHC (single LHC (c. 20 LHC interaction) interactions) Heavy Ion N For N 10 4, FastJet algorithm scales as N lnn For N 10 4, FastJet switches to a related geometrical N 2 alg.

20 Jet clustering in the LHC era (p. 11) Speed Jets Comp. Geom. Brute force Geom. jet.alg. scaling Geometrical concepts scaling k t N 3 dynamic nearest-neighbour graph N lnn Dynamic voronoi diagram Devillers 99 (and others) Cam / N 3 dynamic closest pairs N lnn Aachen Shuffles, quad-trees T. Chan 02 Seedless N 2 N All circular partitions of a 2D set N 5/2 Cone of points (+ range-searching) not clear if studied Cam/Aachen: Cacciari & GPS 06 Seedless cone (replaces IR unsafe midpoint cone): GPS & Soyez, in progress

21 Jet clustering in the LHC era (p. 12) Areas What is speed good for? Standard hard event Two well isolated jets 200 particles Easy even with old methods

22 Jet clustering in the LHC era (p. 12) Areas What is speed good for? Add 10 min-bias events (moderately high lumi) 2000 particles Clustering takes O (10s) with old methods. 20ms with FastJet.

23 Jet clustering in the LHC era (p. 12) Areas What is speed good for? Add dense coverage of infinitely soft ghosts See how many end up in jet to measure jet area particles Clustering takes with old methods. 0.6s with FastJet. 20 minutes

24 Jet clustering in the LHC era (p. 13) Areas Jet areas P t,jet dijet event + 10 minbias (Kt-alg, R=1) median (pt/area) jet area Jet areas in k t algorithm are quite varied Because k t -alg adapts to the jet structure Contamination from min-bias area Complicates corrections: minbias subtraction is different for each jet. Cone supposedly simpler Area = πr 2? (Not quite...) But: area can be measured for each jet, as can typical median p t /area.

25 Jet clustering in the LHC era (p. 14) Areas Application: semi-leptonic t LHC 0.02 R=0.4, LHC semileptonic ttbar events k t, no pileup k t, pileup k t, pileup, corrected 1/N dn/dmass 0.01 W mass top mass Each jet corrected by area median (P t /area) reconstructed W / top mass [GeV] Naive analysis: no cuts; assume both b s tagged Take two hardest non-b jets call them a W Take correct sign b, combine with W top

26 Jet clustering in the LHC era (p. 15) Areas 1/N dn/da Distribution of jet areas purely soft jets kt algorithm A / πr 2 Distribution of jet areas Since areas are a crucial quantity in reconstructing jet kinematics, study them further... Two simple cases: 1. run clustering on many soft particles & look at areas of jets that come out 2. Add one hard particle, and examine area of its jet Conclusion: jet area expands when it is anchored by structure. Can one obtain analytical insight into this? To some extent in 1D Hierarchical clustering is used in many fields (bio, computing,...) are similar features of relevance there?

27 Jet clustering in the LHC era (p. 15) Areas 1/N dn/da Distribution of jet areas purely soft jets jets with 1 hard parton kt algorithm A / πr 2 Distribution of jet areas Since areas are a crucial quantity in reconstructing jet kinematics, study them further... Two simple cases: 1. run clustering on many soft particles & look at areas of jets that come out 2. Add one hard particle, and examine area of its jet Conclusion: jet area expands when it is anchored by structure. Can one obtain analytical insight into this? To some extent in 1D Hierarchical clustering is used in many fields (bio, computing,...) are similar features of relevance there?

28 Jet clustering in the LHC era (p. 15) Areas 1/N dn/da Distribution of jet areas purely soft jets jets with 1 hard parton kt algorithm A / πr 2 Distribution of jet areas Since areas are a crucial quantity in reconstructing jet kinematics, study them further... Two simple cases: 1. run clustering on many soft particles & look at areas of jets that come out 2. Add one hard particle, and examine area of its jet Conclusion: jet area expands when it is anchored by structure. Can one obtain analytical insight into this? To some extent in 1D Hierarchical clustering is used in many fields (bio, computing,...) are similar features of relevance there?

29 Jet clustering in the LHC era (p. 15) Areas 1/N dn/da Distribution of jet areas purely soft jets jets with 1 hard parton kt algorithm A / πr 2 Distribution of jet areas Since areas are a crucial quantity in reconstructing jet kinematics, study them further... Two simple cases: 1. run clustering on many soft particles & look at areas of jets that come out 2. Add one hard particle, and examine area of its jet Conclusion: jet area expands when it is anchored by structure. Can one obtain analytical insight into this? To some extent in 1D Hierarchical clustering is used in many fields (bio, computing,...) are similar features of relevance there?

30 Jet clustering in the LHC era (p. 16) Areas Conclusions Jet finding in the context of LHC is a rich subject! Speed (a major issue) improves enormously when one exploits the geometrical structures that underly jet algorithms especially together with recent developments by computational geometers. Jet areas are a new concept of particular relevance in high-noise environments much is still to be understood about them. NB: more is known than could be shown here!

31 Jet clustering in the LHC era (p. 17) Extra material EXTRA MATERIAL

32 Jet clustering in the LHC era (p. 18) Extra material Inclusive jets in LHC 1/n coll d n jets / d P t k t alg, R=0.4 scaled pp y < 5 raw Pb-Pb FastJet Pb-Pb with subtraction PRELIMINARY Hydjet v 1.1 [Pythia P t,min = 10 GeV, unquenched] P t [GeV] Most HI studies use just particles with p t > a few GeV IR unsafe affected by quenching We use all particles and area-based subtraction. Good results despite the huge subtraction being performed.

Jets in QCD, an introduction

Jets in QCD, an introduction Jets in QCD, an introduction Gavin P. Salam LPTHE, UPMC Paris 6 & CNRS Hard Probes 2008 Illa Da Toxa, Galicia, 8-14 June 2008 Drawing on work with M. Cacciari, J. Rojo & G. Soyez Jets, G. Salam (p. 2)

More information

Jets, and Reconstruction with FastJet

Jets, and Reconstruction with FastJet ALICE Italia Frascati, 13 Novembre 2007 Jets, and Reconstruction with FastJet Matteo Cacciari LPTHE - Paris 6,7 and CNRS In collaboration with Gavin Salam and Gregory Soyez Goals Consider real jet algorithms

More information

Jet reconstruction with FastJet

Jet reconstruction with FastJet Jet reconstruction with FastJet Gavin P. Salam LPTHE, UPMC Paris 6 & CNRS Jets in Proton-Proton and Heavy-Ion Collisions Prague, 12 August 21 Based on work (some preliminary) with Matteo Cacciari, Juan

More information

Jets, underlying event and HIC

Jets, underlying event and HIC Jets, underlying event and HIC Gavin P. Salam LPTHE, UPMC Paris 6 & CNRS From Particles and Partons to Nuclei and Fields: An international workshop and symposium in honor of Al Mueller s 70th birthday

More information

Jets: where from, where to?

Jets: where from, where to? Jets: where from, where to? Gavin P. Salam LPTHE, UPMC Paris 6 & CNRS London workshop on standard-model discoveries with early LHC data UCL, London, 31 March 29 Based on work with M. Cacciari, M. Dasgupta,

More information

Jet reconstruction in heavy-ion collisions

Jet reconstruction in heavy-ion collisions Jet reconstruction in heavy-ion collisions Grégory Soyez IPhT, Saclay CERN In collaboration with Gavin Salam, Matteo Cacciari and Juan Rojo BNL March 12 21 p. 1 Plan Motivations Why jets in heavy-ion collisions

More information

News in jet algorithms:

News in jet algorithms: News in jet algorithms: SISCone and anti-k t Grégory Soyez Brookhaven National Laboratory G.P. Salam, G. Soyez, JHEP 5 (7) 86 [arxiv:74.292] M. Cacciari, G.P. Salam, G. Soyez, JHEP 4 (8) 63 [arxiv:82.1189]

More information

Joint ICTP-INFN-SISSA Conference: Topical Issues in LHC Physics. 29 June - 2 July, Jet Physics at the LHC

Joint ICTP-INFN-SISSA Conference: Topical Issues in LHC Physics. 29 June - 2 July, Jet Physics at the LHC 2045-3 Joint ICTP-INFN-SISSA Conference: Topical Issues in LHC Physics 29 June - 2 July, 2009 Jet Physics at the LHC Gavin SALAM LPTHE, Universites Paris VI, France Towards Jetography Gavin Salam LPTHE,

More information

Jets at LHCb. Gavin Salam. LHCb, CERN, 21 January CERN, Princeton & LPTHE/CNRS (Paris)

Jets at LHCb. Gavin Salam. LHCb, CERN, 21 January CERN, Princeton & LPTHE/CNRS (Paris) Jets at LHCb Gavin Salam CERN, Princeton & LPTHE/CNRS (Paris) LHCb, CERN, 21 January 2011 Jets @ LHCb (G. Salam) CERN, 2011-01-21 2 / 16 Any process that involves final-state partons gives jets Examples

More information

Theoretical aspects of jet-finding

Theoretical aspects of jet-finding Theoretical aspects of jet-finding Gavin P. Salam LPTHE, UPMC Paris 6 & CNRS 4th Atlas Hadronic Calibration Workshop Tucson, Arizona 14 16 March 2008 Based on work with Cacciari (LPTHE) & Soyez (BNL),

More information

Standard Model Handles and Candles WG (session 1)

Standard Model Handles and Candles WG (session 1) Standard Model Handles and Candles WG (session 1) Conveners: Experiment: Craig Buttar, Jorgen d Hondt, Markus Wobisch Theory: Michael Kramer, Gavin Salam This talk: the jets sub-group 1. Background + motivation

More information

Towards Jetography. Gavin Salam. LPTHE, CNRS and UPMC (Univ. Paris 6)

Towards Jetography. Gavin Salam. LPTHE, CNRS and UPMC (Univ. Paris 6) Towards Jetography Gavin Salam LPTHE, CNRS and UPMC (Univ. Paris 6) Based on work with Jon Butterworth, Matteo Cacciari, Mrinal Dasgupta, Adam Davison, Lorenzo Magnea, Juan Rojo, Mathieu Rubin & Gregory

More information

Defining jets at the dawn of the LHC

Defining jets at the dawn of the LHC Defining jets at the dawn of the LHC Grégory Soyez CERN In collaboration with Gavin Salam, Matteo Cacciari and Juan Rojo CERN October 9 2009 p. 1 Plan Jet algorithms and jet definitions basic ideas: why

More information

Vivian s Meeting April 17 th Jet Algorithms. Philipp Schieferdecker (KIT)

Vivian s Meeting April 17 th Jet Algorithms. Philipp Schieferdecker (KIT) th 2009 Jet Algorithms What are Jets? Collimated bunches of stable hadrons, originating from partons (quarks & gluons) after fragmentation and hadronization Jet Finding is the approximate attempt to reverse-engineer

More information

arxiv: v1 [nucl-ex] 14 Oct 2013

arxiv: v1 [nucl-ex] 14 Oct 2013 Charged Jets in Minimum Bias p-pb Collisions at snn = 5.02 TeV with ALICE arxiv:1310.3612v1 [nucl-ex] 14 Oct 2013 for the ALICE collaboration Westfälische Wilhelms-Universität Münster, Germany E-mail:

More information

FastJet & FJContrib. Boost 2014 workshop, UCL, London, August Matteo Cacciari (Paris) Gavin Salam (CERN) Gregory Soyez (Saclay)

FastJet & FJContrib. Boost 2014 workshop, UCL, London, August Matteo Cacciari (Paris) Gavin Salam (CERN) Gregory Soyez (Saclay) Boost 2014 workshop, UCL, London, August 2014 FastJet & FJContrib Matteo Cacciari (Paris) Gavin Salam (CERN) Gregory Soyez (Saclay)! 22 additional FJContrib authors 1 Lines of code - 1 year ago FastJet

More information

Jets. Gavin Salam. LPTHE, CNRS and UPMC (Univ. Paris 6)

Jets. Gavin Salam. LPTHE, CNRS and UPMC (Univ. Paris 6) Jets Gavin Salam LPTHE, CNRS and UPMC (Univ. Paris 6) Spring Course of the International Graduate School Bielefeld Paris Helsinki, GRK 881 & PACO Quantum Fields and Strongly Interacting Matter Orsay, France,

More information

Jets Lecture 1: jet algorithms Lecture 2: jet substructure

Jets Lecture 1: jet algorithms Lecture 2: jet substructure MadGraph School Shanghai - November 2015 Jets Lecture 1: jet algorithms Lecture 2: jet substructure Matteo Cacciari LPTHE Paris Why jets A jet is something that happens in high energy events: a collimated

More information

Jets (and photons) at the LHC. J. Huston LPC March 10, 2010

Jets (and photons) at the LHC. J. Huston LPC March 10, 2010 Jets (and photons) at the LHC J. Huston LPC March 10, 2010 More references Understanding cross sections at the LHC we have to understand QCD (at the LHC) PDF s, PDF luminosities and PDF uncertainties LO,

More information

Jet reconstruction in W + jets events at the LHC

Jet reconstruction in W + jets events at the LHC Jet reconstruction in W + jets events at the LHC Ulrike Schnoor Michigan State University High Energy Physics Institutsseminar IKTP TU Dresden, Nov 4, 010 Jet reconstruction in W + jets events at the LHC

More information

Nikos Varelas. University of Illinois at Chicago. CTEQ Collaboration Meeting Northwestern November 20, Nikos Varelas. CTEQ Meeting Nov 20, 2009

Nikos Varelas. University of Illinois at Chicago. CTEQ Collaboration Meeting Northwestern November 20, Nikos Varelas. CTEQ Meeting Nov 20, 2009 QCD Physics at CMS University of Illinois at Chicago CTEQ Collaboration Meeting Northwestern November 0, 009 1 QCD Physics at CMS University of Illinois at Chicago CTEQ Collaboration Meeting Northwestern

More information

Jets, UE and early LHC data

Jets, UE and early LHC data Jets, UE and early LHC data Gavin P. Salam LPTHE, UPMC Paris 6 & CNRS LHC@BNL Joint Theory/Experiment Workshop on Early Physics at the LHC 8 February 2010 Brookhaven National Laboratory, Upton, USA Based

More information

Di muons and the detection of J/psi, Upsilon and Z 0 Jets and the phenomenon of jet quenching

Di muons and the detection of J/psi, Upsilon and Z 0 Jets and the phenomenon of jet quenching collisions in CMS Bolek Wyslouch École Polytechnique Massachusetts Institute of Technology on behalf of CMS Collaboration CERN, December 2, 2010 1 Heavy Ions at the LHC Huge energy jump from RHIC: factor

More information

Jet quenching in PbPb collisions in CMS

Jet quenching in PbPb collisions in CMS Jet quenching in PbPb collisions in CMS Bolek Wyslouch École Polytechnique Massachusetts Institute of Technology arxiv:1102.1957 Orsay, February 18, 2011 1 Heavy Ions at the LHC Huge energy jump from RHIC:

More information

Jets and Heavy Flavour Physics in the vacuum and in the medium

Jets and Heavy Flavour Physics in the vacuum and in the medium LHCP Shanghai, May 2017 Jets and Heavy Flavour Physics in the vacuum and in the medium Matteo Cacciari LPTHE Paris Université Paris Diderot Jets Jets can be a golden observable to study the properties

More information

Jets and jet substructure 4: substructure

Jets and jet substructure 4: substructure Jets and jet substructure 4: substructure Gavin Salam (CERN) with extensive use of material by Matteo Cacciari and Gregory Soyez TASI June 213 1 Two things that make jets@lhc special The large hierarchy

More information

Studies on hadronic top decays

Studies on hadronic top decays Studies on hadronic top decays José M. Clavijo, Havana University, Cuba September 6, 208 Supervisors: Daniela Dominguez Damiani and Hannes Jung Abstract Top events in the boosted regime are studied using

More information

Towards Jetography. Gavin P. Salam. LPTHE, UPMC Univ. Paris 6, CNRS UMR 7589, Paris 05, France. Abstract

Towards Jetography. Gavin P. Salam. LPTHE, UPMC Univ. Paris 6, CNRS UMR 7589, Paris 05, France. Abstract Towards Jetography Gavin P. Salam arxiv:96.1833v1 [hep-ph] 1 Jun 29 LPTHE, UPMC Univ. Paris 6, CNRS UMR 7589, 75252 Paris 5, France Abstract As the LHC prepares to start taking data, this review is intended

More information

Jet Results in pp and Pb-Pb Collisions at ALICE

Jet Results in pp and Pb-Pb Collisions at ALICE Jet Results in pp and Pb-Pb Collisions at ALICE Oliver Busch for the ALICE Collaboration Motivation Jet reconstruction in ALICE Jets in pp Jets in Pb-Pb Hadron triggered recoil jets Motivation Jets originate

More information

Dijet Asymmetry in Pb+Pb Collisions at S NN = 2.76 TeV Using the ALICE Experiment

Dijet Asymmetry in Pb+Pb Collisions at S NN = 2.76 TeV Using the ALICE Experiment Dijet Asymmetry in Pb+Pb Collisions at S NN = 2.76 TeV Using the ALICE Experiment { Isaac Mooney Advisors: Joern Putschke, Rosi Reed Wayne State University National Science Foundation Friday, August 8,

More information

Don Lincoln. QCD Results from the Tevatron

Don Lincoln. QCD Results from the Tevatron Recent Don Lincoln Fermilab DØ Calorimeter Uranium-Liquid Argon Calorimeter stable, uniform response, radiation hard Compensating: e/π 1 Uniform hermetic coverage η 4.2, recall η ln[tan(θ/2)] Longitudinal

More information

Exploring Jet Properties in p+p Collisions at 200 GeV with STAR

Exploring Jet Properties in p+p Collisions at 200 GeV with STAR Exploring Jet Properties in p+p Collisions at 200 GeV with SAR Helen Caines - Yale University - for the SAR Collaboration Outline Quark Matter 2009 Knoxville,N, USA March 30 th -April 4 th What we know

More information

QCD Jet Physics with CMS LHC

QCD Jet Physics with CMS LHC QCD Jet Physics with CMS Detector @ LHC Y.Chao for the CMS Collaboration (National Taiwan University, Taipei, Taiwan) QCD10 (25th annivervary) 2010/06/28-07/03 The Large Hadron Collider Four major experiments

More information

July 8, 2015, Pittsburgh. Jets. Zoltan Nagy DESY

July 8, 2015, Pittsburgh. Jets. Zoltan Nagy DESY July 8, 2015, Pittsburgh Jets Zoltan Nagy DESY What are Jets? A di-jet ATLAS event A multi-jet (6-jet) event What are Jets? What are Jets? The pt is concentrated in a few narrow sprays of particles These

More information

A practical Seedless Infrared-Safe Cone jet algorithm

A practical Seedless Infrared-Safe Cone jet algorithm arxiv:0704.0292 [hep-ph] April 2007 A practical Seedless Infrared-Safe Cone jet algorithm arxiv:0704.0292v2 [hep-ph] 4 Apr 2007 Gavin P. Salam and Grégory Soyez LPTHE, Université Pierre et Marie Curie

More information

Review of jet reconstruction algorithms

Review of jet reconstruction algorithms Journal of Physics: Conference Series PAPE OPEN ACCESS eview of jet reconstruction algorithms To cite this article: yan Atkin 2015 J. Phys.: Conf. Ser. 645 012008 View the article online for updates and

More information

JET FRAGMENTATION DENNIS WEISER

JET FRAGMENTATION DENNIS WEISER JET FRAGMENTATION DENNIS WEISER OUTLINE Physics introduction Introduction to jet physics Jets in heavy-ion-collisions Jet reconstruction Paper discussion The CMS experiment Data selection and track/jet

More information

Jet structures in New Physics and Higgs searches

Jet structures in New Physics and Higgs searches Jet structures in New Physics and Higgs searches Gavin P. Salam LPTHE, UPMC Paris 6 & CNRS LHC New Physics Forum, IWH Heidelberg, Germany, 23 26 February 2009 Part based on work with Jon Butterworth, Adam

More information

Event shapes in hadronic collisions

Event shapes in hadronic collisions Event shapes in hadronic collisions Andrea Banfi ETH Zürich SM@LHC - Durham - April Event shapes at hadron colliders Event shapes are combinations of hadron momenta in a number related to the geometry

More information

Precision QCD at the Tevatron. Markus Wobisch, Fermilab for the CDF and DØ Collaborations

Precision QCD at the Tevatron. Markus Wobisch, Fermilab for the CDF and DØ Collaborations Precision QCD at the Tevatron Markus Wobisch, Fermilab for the CDF and DØ Collaborations Fermilab Tevatron - Run II Chicago Ecm: 1.8 1.96 TeV more Bunches 6 36 Bunch Crossing 3500 396ns CDF Booster Tevatron

More information

Measurement of the associated production of direct photons and jets with the Atlas experiment at LHC. Michele Cascella

Measurement of the associated production of direct photons and jets with the Atlas experiment at LHC. Michele Cascella Measurement of the associated production of direct photons and jets with the Atlas experiment at LHC Michele Cascella Graduate Course in Physics University of Pisa The School of Graduate Studies in Basic

More information

Jet reconstruction with first data in ATLAS

Jet reconstruction with first data in ATLAS University of Victoria, Victoria, BC, Canada E-mail: damir.lelas@cern.ch The algorithms used for jet reconstruction in ATLAS are presented. General performance aspects like jet signal linearity and the

More information

Jet reconstruction. What are jets? How can we relate the measured jets to the underlying physics process? Calibration of jets Tagging of jets

Jet reconstruction. What are jets? How can we relate the measured jets to the underlying physics process? Calibration of jets Tagging of jets Jet reconstruction What are jets? How can we relate the measured jets to the underlying physics process? Calibration of jets Tagging of jets 1 What are jets? Jets for non- particle physicists Jets for

More information

ATLAS jet and missing energy reconstruction, calibration and performance in LHC Run-2

ATLAS jet and missing energy reconstruction, calibration and performance in LHC Run-2 Prepared for submission to JINS International Conference on Instrumentation for Colliding Beam Physics 7 February - March, 7 Budker Institute of Nuclear Physics, Novosibirsk, Russia ALAS jet and missing

More information

Jet Reconstruction Algorithms in Deep Inelastic Scattering

Jet Reconstruction Algorithms in Deep Inelastic Scattering Jet Reconstruction Algorithms in Deep Inelastic Scattering Summer Student Report at H1 Collaboration at DESY submitted by Anton Tamtögl H1 Collaboration, DESY (Deutsches Elektronen Synchrotron) Notkestraße

More information

Study of dihadron fragmentation function correlations using charged jets in proton-proton collisions at s = 7 TeV

Study of dihadron fragmentation function correlations using charged jets in proton-proton collisions at s = 7 TeV Study of dihadron fragmentation function correlations using charged jets in proton-proton collisions at s = 7 TeV Derek Everett, Claude Pruneau, Sidharth Prasad August, Abstract We present the measurements

More information

CDF top quark " $ )(! # % & '

CDF top quark  $ )(! # % & ' $% CDF quark 7 3 5 ( "#! Tevatron Run II Started Spring 1. proton-antiproton collider with (Run I :. antiproton recycler commissioning electron cooling operational by Summer 5. increase in luminosity.

More information

Implementing Jet Algorithms: A Practical Jet Primer

Implementing Jet Algorithms: A Practical Jet Primer Implementing Jet Algorithms: A Practical Jet Primer Stephen D. Ellis University of Washington West Coast LHC Theory Network UC Davis Outline: Jet Jargon Big Picture Jet Goals for LHC Cone Details & Lessons

More information

QCD dijet analyses at DØ

QCD dijet analyses at DØ QCD dijet analyses at DØ Pavel Demine for the DØ collaboration DAPNIA-SPP, CEA Saclay, France Contents: DØ detector Jet reconstruction at DØ Dijet mass spectrum Dijet azimuthal angle decorrelation XII

More information

Physics at Hadron Colliders

Physics at Hadron Colliders Physics at Hadron Colliders Part 2 Standard Model Physics Test of Quantum Chromodynamics - Jet production - W/Z production - Production of Top quarks Precision measurements -W mass - Top-quark mass QCD

More information

Jet Physics at ALICE. Oliver Busch. University of Tsukuba Heidelberg University

Jet Physics at ALICE. Oliver Busch. University of Tsukuba Heidelberg University Jet Physics at ALICE Oliver Busch University of Tsukuba Heidelberg University 1 2 Outline Introduction Results from pp collisions Identified jet fragmentation in pp Jets in heavy-ion collisions Jet shapes

More information

PoS(ICHEP2012)300. Electroweak boson production at LHCb

PoS(ICHEP2012)300. Electroweak boson production at LHCb Physik-Institut der Universität Zürich, Switzerland. E-mail: jonathan.anderson@cern.ch The electroweak boson production cross-sections have been measured in the forward region using s = 7 TeV proton-proton

More information

Jet Physics. Yazid Delenda. 1st Jijel Meeting on Theoretical Physics. Jijel, October 29-31, University Batna 1

Jet Physics. Yazid Delenda. 1st Jijel Meeting on Theoretical Physics. Jijel, October 29-31, University Batna 1 Jet Physics Yazid Delenda University Batna 1 1st Jijel Meeting on Theoretical Physics Quantum Mechanics, Gravitation and Particle Physics Jijel, October 29-31, 2018 977 1 ⵜ ⴰ ⵙ ⴷⴰ ⵡⵉ ⵜ ⵏ ⵜ ⴱⴰ ⵜ ⴻ ⵏ ⵜ U

More information

Non-perturbative effects for QCD jets at hadron colliders

Non-perturbative effects for QCD jets at hadron colliders Non-perturbative effects for QCD jets at hadron colliders Lorenzo Magnea Università di Torino INFN, Sezione di Torino Work in collaboration with M. Dasgupta and G. Salam. Milano 03/04/08 Outline Jets at

More information

Jet Substructure. Adam Davison. University College London

Jet Substructure. Adam Davison. University College London Jet Substructure Adam Davison University College London 1 Outline Jets at the LHC Machine and ATLAS detector What is a jet? Jet substructure What is it? What can it do for us? Some ATLAS/Higgs bias here

More information

arxiv: v1 [hep-ex] 2 Nov 2017

arxiv: v1 [hep-ex] 2 Nov 2017 Proceedings of the Fifth Annual LHCP CR-7/358 November 3, 7 Measurement of jet properties in arxiv:7.654v [hep-ex] Nov 7 Patrick L.S. Connor DESY, Notkestrasse 87, 67 Hamburg, Germany ABSRAC We present

More information

Zhong-Bo Kang Los Alamos National Laboratory

Zhong-Bo Kang Los Alamos National Laboratory Introduction to pqcd and Jets: lecture 3 Zhong-Bo Kang Los Alamos National Laboratory Jet Collaboration Summer School University of California, Davis July 19 21, 2014 Selected references on QCD QCD and

More information

Recent QCD results from ATLAS

Recent QCD results from ATLAS Recent QCD results from ATLAS PASCOS 2013 Vojtech Pleskot Charles University in Prague 21.11.2013 Introduction / Outline Soft QCD: Underlying event in jet events @7TeV (2010 data) Hard double parton interactions

More information

QCD Jets at the LHC. Leonard Apanasevich University of Illinois at Chicago. on behalf of the ATLAS and CMS collaborations

QCD Jets at the LHC. Leonard Apanasevich University of Illinois at Chicago. on behalf of the ATLAS and CMS collaborations QCD Jets at the LHC Leonard Apanasevich University of Illinois at Chicago on behalf of the ATLAS and CMS collaborations Outline Physics at the LHC Jet Reconstruction and Performance Clustering Algorithms

More information

PoS(ICHEP2012)311. Identification of b-quark jets in the CMS experiment. Sudhir Malik 1

PoS(ICHEP2012)311. Identification of b-quark jets in the CMS experiment. Sudhir Malik 1 Identification of b-quark jets in the CMS experiment 1 University of Nebraska-Lincoln Lincoln, NE 68588 E-mail: malik@fnal.gov The identification of jets arising from the production of b-quarks is an essential

More information

Physics at Hadron Colliders Part II

Physics at Hadron Colliders Part II Physics at Hadron Colliders Part II Marina Cobal Università di Udine 1 The structure of an event One incoming parton from each of the protons enters the hard process, where then a number of outgoing particles

More information

Review of LHCb results on MPI, soft QCD and diffraction

Review of LHCb results on MPI, soft QCD and diffraction Review of LHCb results on MPI, soft QCD and diffraction Marcin Kucharczyk on behalf of LHCb collaboration HNI Krakow EDS Blois 2015, Borgo (Corse), 30.06.2015 Outline LHCb - general purpose forward experiment

More information

Large R jets and boosted. object tagging in ATLAS. Freiburg, 15/06/2016. #BoostAndNeverLookBack. Physikalisches Institut Universität Heidelberg

Large R jets and boosted. object tagging in ATLAS. Freiburg, 15/06/2016. #BoostAndNeverLookBack. Physikalisches Institut Universität Heidelberg Large R jets and boosted object tagging in ATLAS Christoph Anders Physikalisches Institut Universität Heidelberg #BoostAndNeverLookBack Freiburg, 15/06/2016 ??? Cambridge-Aachen 2 arxiv:1506.00962 Higgs

More information

QCD and Top physics studies in proton-proton collisions at 7 TeV centre-of-mass energy with the ATLAS detector

QCD and Top physics studies in proton-proton collisions at 7 TeV centre-of-mass energy with the ATLAS detector Journal of Physics: Conference Series QCD and Top physics studies in proton-proton collisions at 7 TeV centre-of-mass energy with the ATLAS detector To cite this article: Marcello Barisonzi 2012 J. Phys.:

More information

Measurement of inclusive charged jet production in pp and Pb-Pb

Measurement of inclusive charged jet production in pp and Pb-Pb Measurement of inclusive charged jet production in pp and Pb-Pb collisions at S NN 5. 02TeV with ALICE Run2 Data Yan Li for the ALICE collaboration Central China Normal University CLHCP 2016 18/12/2016

More information

Charged jets in p Pb collisions measured with the ALICE detector

Charged jets in p Pb collisions measured with the ALICE detector Charged jets in p Pb collisions measured with the ALICE detector (CERN) for the ALICE collaboration (25.03.2015) Rencontres de Moriond, QCD and High Energy Interactions, La Thuile Motivation for p Pb Study

More information

Atlas Status and Perspectives

Atlas Status and Perspectives Atlas Status and Perspectives Bruno Mansoulié (IRFU-Saclay) On behalf of the Topics The hot news: Heavy Ion analysis Data taking in 2010 Luminosity, Data taking & quality, trigger Detector performance

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

Substructure at CMS:

Substructure at CMS: Substructure at CMS: Experimental Perspective (SUNY Buffalo) Terajets 2013: Using Jet Substructure 1 Introduction Use one example analysis (Z tt all hadronic) to bring up some experimental discussion topics

More information

Stop pair production at the LHC with Validation figures. C. Degrande, B. Fuks, V. Hirschi, J. Proudom & H.S. Shao

Stop pair production at the LHC with Validation figures. C. Degrande, B. Fuks, V. Hirschi, J. Proudom & H.S. Shao Stop pair production at the LHC with amc@nlo Validation figures C. Degrande, B. Fuks, V. Hirschi, J. Proudom & H.S. Shao November, 0 χ (m,m χ ) = (500, 00) GeV, LO (m,m ) = (00, 50) GeV, LO χ χ (m,m χ

More information

Recent Jet Results from the CMS experiment

Recent Jet Results from the CMS experiment Recent Jet Results from the CMS experiment Raghav Kunnawalkam Elayavalli ( USA) Nuclear Seminar Monday, February 2nd, 2015 1 Overview https://twiki.cern.ch/twiki/bin/view/cmspublic/ PhysicsResultsHIN Motivations

More information

Inclusive spectrum of charged jets in central Au+Au collisions at s NN = 200 GeV by STAR

Inclusive spectrum of charged jets in central Au+Au collisions at s NN = 200 GeV by STAR Inclusive spectrum of charged jets in central Au+Au collisions at s NN = 200 GeV by SAR Nuclear Physics Institute, Academy of Sciencis of Czech Republic, Na ruhlarce 39/64, 180 86 Prague, Czech Republic

More information

What to do with Multijet Events?

What to do with Multijet Events? DØ note 4465 2004-06-03 What to do with Multijet Events? T. Hebbeker RWTH Aachen ABSTRACT Multijet events are frequently produced in p p collisions. Events with several jets might indicate physics beyond

More information

Recent STAR Jet Results of the High-Energy Spin Physics Program at RHIC

Recent STAR Jet Results of the High-Energy Spin Physics Program at RHIC Recent STAR Jet Results of the High-Energy Spin Physics Program at RHIC Daniel L. Olvitt Jr. Temple University E-mail: daniel.olvitt@temple.edu The production of jets from polarized proton+proton collisions

More information

arxiv: v1 [hep-ex] 21 Aug 2011

arxiv: v1 [hep-ex] 21 Aug 2011 arxiv:18.155v1 [hep-ex] 1 Aug 011 Early Searches with Jets with the ATLAS Detector at the LHC University of Chicago, Enrico Fermi Institute E-mail: georgios.choudalakis@cern.ch We summarize the analysis

More information

Hard And Soft QCD Physics In ATLAS

Hard And Soft QCD Physics In ATLAS Hard And Soft QCD Physics In ALAS Stefanie Adomeit on behalf of the ALAS collaboration International Conference on New Frontiers in Physics - Crete, June -6, QCD Measurements in ALAS at LHC every kind

More information

LHC Heavy Ion Physics Lecture 5: Jets, W, Z, photons

LHC Heavy Ion Physics Lecture 5: Jets, W, Z, photons LHC Heavy Ion Physics Lecture 5: Jets, W, Z, photons HUGS 2015 Bolek Wyslouch Techniques to study the plasma Radiation of hadrons Azimuthal asymmetry and radial expansion Energy loss by quarks, gluons

More information

Relativistic Heavy Ions III - Hard Probes and Jet Quenching

Relativistic Heavy Ions III - Hard Probes and Jet Quenching Relativistic Heavy Ions III - Hard Probes and Jet Quenching RHI Physics The US National Nuclear Physics Summer School & TRIUMF Summer Institute Vancouver, Canada Helen Caines - Yale University June 2010

More information

Measurements of the production of a vector boson in association with jets in the ATLAS and CMS detectors

Measurements of the production of a vector boson in association with jets in the ATLAS and CMS detectors Measurements of the production of a vector boson in association with s in the ALAS and CMS detectors Vieri Candelise University of rieste and INFN rieste, Via Valerio 2, 3428, rieste, Italy Abstract. he

More information

Pileup measurement and mitigation techniques in CMS

Pileup measurement and mitigation techniques in CMS Pileup measurement and mitigation techniques in CMS A Perloff, on behalf of the CMS collaboration Graduate Student, Department of Physics and Astronomy, exas A&M University, College Station, X 7784-44,

More information

Testing QCD at the LHC and the Implications of HERA DIS 2004

Testing QCD at the LHC and the Implications of HERA DIS 2004 Testing QCD at the LHC and the Implications of HERA DIS 2004 Jon Butterworth Impact of the LHC on QCD Impact of QCD (and HERA data) at the LHC Impact of the LHC on QCD The LHC will have something to say

More information

Mini-Bias and Underlying Event Studies at CMS

Mini-Bias and Underlying Event Studies at CMS Yuan Chao Department of Physics National Taiwan University 1617 Taipei, TAIWAN 1 Introduction The Tevatron experiments provide us very good information for the quantum chromodynamics (QCD) modelings of

More information

Top quark pair cross section measurements at the Tevatron experiments and ATLAS. Flera Rizatdinova (Oklahoma State University)

Top quark pair cross section measurements at the Tevatron experiments and ATLAS. Flera Rizatdinova (Oklahoma State University) Top quark pair cross section measurements at the Tevatron experiments and ATLAS (Oklahoma State University) Outline Introduction: Large Hadron Collider (LHC) and major experiments on it ATLAS detector

More information

Pileup Subtraction and Jet Energy Prediction Using Machine Learning

Pileup Subtraction and Jet Energy Prediction Using Machine Learning 000 00 002 003 004 005 006 007 008 009 00 0 02 03 04 05 06 07 08 09 020 02 022 023 024 025 026 027 028 029 030 03 032 033 034 035 036 037 038 039 040 04 042 043 044 045 046 047 048 049 050 05 052 053 054

More information

Jets triggers for the ATLAS experiment

Jets triggers for the ATLAS experiment Jets triggers for the ATLAS experiment Measurement of Global Trigger Efficiency for Multi-Jets analysis Luz Stella Gómez Fajardo Humboldt-Universität zu Berlin-GK DESY, Zeuthen Blockcourse, Rathen 08.04.2011

More information

Underlying Event Measurements at the LHC

Underlying Event Measurements at the LHC 14th EDS Blois Workshop Underlying Event Measurements at the LHC Michael Heinrich for the ATLAS and CMS collaborations INSTITUTE OF EXPERIMENTAL PARTICLE PHYSICS (EKP) PHYSICS FACULTY KIT University of

More information

Lecture 5. QCD at the LHC Joey Huston Michigan State University

Lecture 5. QCD at the LHC Joey Huston Michigan State University Lecture 5 QCD at the LHC Joey Huston Michigan State University Tevatron data Wealth of data from the Tevatron, both Run 1 and Run 2, that allows us to test/add to our pqcd formalism with analysis procedures/

More information

Power corrections to jet distributions at hadron colliders

Power corrections to jet distributions at hadron colliders Power corrections to jet distributions at hadron colliders Lorenzo Magnea Università di Torino INFN, Sezione di Torino Work in collaboration with: M. Cacciari, M. Dasgupta, G. Salam. DIS 7 Munich 8//7

More information

High p T physics at the LHC Lecture III Standard Model Physics

High p T physics at the LHC Lecture III Standard Model Physics High p T physics at the LHC Lecture III Standard Model Physics Miriam Watson, Juraj Bracinik (University of Birmingham) Warwick Week, April 2011 1. LHC machine 2. High PT experiments Atlas and CMS 3. Standard

More information

Lecture 3: jets in heavy ion collisions

Lecture 3: jets in heavy ion collisions Lecture 3: jets in heavy ion collisions Marco van Leeuwen, Nikhef and Utrecht University JET School, UC Davis, 9-2 June 204 Jets and parton energy loss Motivation: understand parton energy loss by tracking

More information

Photoproduction of Events with Rapidity Gaps Between Jets with ZEUS at HERA. Michigan State HEP Seminar May 2, 2006

Photoproduction of Events with Rapidity Gaps Between Jets with ZEUS at HERA. Michigan State HEP Seminar May 2, 2006 Photoproduction of Events with Rapidity Gaps Between Jets with ZEUS at HERA Patrick Ryan University of Wisconsin Michigan State HEP Seminar May 2, 2006 Rapidity Gaps Between Jets in PHP MSU HEP Seminar,

More information

Recent DØ results in Diffractive and Jet Physics

Recent DØ results in Diffractive and Jet Physics Recent DØ results in Diffractive and Jet Physics * Fermi National Accelerator Laboratory, P.O. Box 500, Batavia, IL 60510 E-mail: odell@fnal.gov DØ measurements of the inclusive jet cross section and the

More information

Finding heavy particles in single jets

Finding heavy particles in single jets Finding heavy particles in single jets Christopher Vermilion with teve Ellis and Jon Walsh University of Washington eptember 16, 009 arxiv: 0903.5081, 0909.OON tinyurl.com/jetpruning 1 / 37 Why jet substructure?

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

ATLAS Jet Physics Results and Jet Substructure in 2010 Data from the LHC

ATLAS Jet Physics Results and Jet Substructure in 2010 Data from the LHC ATLAS Jet Physics Results and Jet Substructure in 20 Data from the LHC With a particular focus on experimental issues and effects David W. Miller On behalf of The ATLAS Experiment SLAC National Accelerator

More information

Single top: prospects at LHC

Single top: prospects at LHC Single top: prospects at LHC Markus Cristinziani (Uni Bonn) for ATLAS, Giovanni Petrucciani (SNS & INFN Pisa) for CMS Top2008 M. Cristinziani (Bonn), G. Petrucciani (Pisa) 1 Outline What changes between

More information

QCD Studies at LHC with the Atlas detector

QCD Studies at LHC with the Atlas detector QCD Studies at LHC with the Atlas detector Introduction Sebastian Eckweiler - University of Mainz (on behalf of the ATLAS Collaboration) Examples of QCD studies Minimum bias & underlying event Jet-physics

More information

La ricerca dell Higgs Standard Model a CDF

La ricerca dell Higgs Standard Model a CDF La ricerca dell Higgs Standard Model a CDF Melisa Rossi INFN-TS Giornata di seminari INFN Trieste - 7 Luglio 2009 FNAL: Fermi National Accelerator Lab Tevatron currently provides the highest energy proton-antiproton

More information

Results on QCD jet production at the LHC (incl. Heavy flavours)

Results on QCD jet production at the LHC (incl. Heavy flavours) Results on QCD jet production at the LHC (incl. Heavy flavours) R. Seuster (TRIUMF) On behalf of the ATLAS and CMS collaborations Recontres du Vietnam August 11th 17th, 2013 Windows on the Universe Outline

More information

Study of Dihadron Fragmentation Function Correlations in p-p collisions at 7 TeV. Derek Everett Dr. Claude Pruneau, Dr.

Study of Dihadron Fragmentation Function Correlations in p-p collisions at 7 TeV. Derek Everett Dr. Claude Pruneau, Dr. Study of Dihadron Fragmentation Function Correlations in p-p collisions at 7 TeV Derek Everett Dr. Claude Pruneau, Dr. Sidharth Prasad Outline Physics Motivation Definitions of Observables PYTHIA Monte

More information