diff --git a/doc/get-marcxml-inspire b/doc/get-marcxml-inspire --- a/doc/get-marcxml-inspire +++ b/doc/get-marcxml-inspire @@ -1,16 +1,16 @@ #! /usr/bin/env bash for EXPT in alice atlas cms lhcb; do for YEAR in $(seq 2010 $(date +"%Y")); do OUT=inspire-$EXPT-$YEAR.marc.xml if [[ -e $OUT ]]; then echo "$OUT exists: skipping $EXPT $YEAR download" else echo "Downloading $EXPT $YEAR Inspire record to $OUT" #URL="https://cds.cern.ch/search?ln=en&cc=${COLL}&op1=a&m1=a&p1=${YEAR}&f1=year&rg=200&jrec=1&of=xm" - URL="https://inspirehep.net/search?ln=en&ln=en&p=find+cn+${EXPT}+and+ac+100%2B+and+de+${YEAR}&of=xm&action_search=Search&sf=earliestdate&so=d&rm=&rg=25&sc=0&ot=001,024,035,037,710,245" + URL="https://inspirehep.net/search?ln=en&ln=en&p=find+cn+${EXPT}+and+ac+100%2B+and+de+${YEAR}&of=xm&action_search=Search&sf=earliestdate&so=d&rm=&rg=250&sc=0&ot=001,024,035,037,710,245" echo "$URL" wget "$URL" -O $OUT fi done done diff --git a/doc/mk-coverage-html b/doc/mk-coverage-html --- a/doc/mk-coverage-html +++ b/doc/mk-coverage-html @@ -1,347 +1,342 @@ #! /usr/bin/env python from __future__ import division, print_function """\ %prog [ ...] TODO: - add experiment grouping (with JS tabbing?) - add dates/years - allow dynamic hiding of search and HI analyses; note, not orthogonal to grey/black - add JS sorting and filtering on experiment, date, priority, and keywords (HI, search, ...) """ import argparse ap = argparse.ArgumentParser(usage=__doc__) ap.add_argument("JSONFILES", metavar="file", nargs="+", help="JSON Inspire xref file to read") ap.add_argument("-r", "--ranking", dest="RANKFILES", metavar="file", action="append", default=[], help="lists of Inspire IDs to exclude, suppress, and highlight") ap.add_argument("-R", "--reverse", dest="REVERSE", action="store_true", default=False, help="show list *reverse* ordered in Inspire ID") ap.add_argument("-s", "--only-searches", dest="ONLYSEARCHES", action="store_true", default=False, help="only show search analyses") ap.add_argument("-S", "--no-searches", dest="NOSEARCHES", action="store_true", default=False, help="exclude search analyses") ap.add_argument("-i", "--only-heavyion", dest="ONLYHEAVYION", action="store_true", default=False, help="only show heavy ion analyses") ap.add_argument("-I", "--no-heavyion", dest="NOHEAVYION", action="store_true", default=False, help="exclude heavy ion analyses") ap.add_argument("-o", "--outfile", dest="OUTFILE", default=None, help="output HTML filename") ap.add_argument("--basename", dest="BASENAME", default="rivet-coverage", help="the base name for output files [default=%(default)s]") ap.add_argument("--update-ranking", dest="UPDATERANK", action="store_true", default=False, help="update the per-experiment ranking files") +ap.add_argument("-v", "--verbose", dest="VERBOSE", action="store_true", default=False, + help="print debug info to the terminal") args = ap.parse_args() import datetime now = datetime.datetime.now() EXPTS = ["ALICE", "ATLAS", "CMS", "LHCb", "Other"] ## Read data from JSON files records = {} import json for jsonfile in args.JSONFILES: with open(jsonfile) as jf: recs = json.load(jf) + if args.VERBOSE: + print("Reading {} records from {}".format(len(recs), jsonfile)) records.update(recs) records = {int(k) : v for k, v in records.items()} +print("Read total of {} records".format(len(records))) -## Read CDS IDs from ranking files -# TODO: convert to use Inspire IDs -alllist = [] +## Read Inspire IDs from ranking files blacklist, greylist, hotlist = [], [], [] assigned = {} for rankfilestr in args.RANKFILES: for rankfile in rankfilestr.split(" "): with open(rankfile) as rf: for line in rf: line = line.strip() if not line or line.startswith("#"): continue tokens = line.split() - cds = unicode(tokens[0]) + ins = int(tokens[0]) code = tokens[1] - alllist.append(cds) if code == "X": - blacklist.append(cds) + blacklist.append(ins) elif code == "?": - greylist.append(cds) + greylist.append(ins) elif code == "!": - hotlist.append(cds) + hotlist.append(ins) # Detect an optional assigned email address last = tokens[-1] if "@" in last: if last.startswith("<") and last.endswith(">"): last = last[1:-1] - assigned[cds] = last - + assigned[ins] = last ## Add rankings/tags to the record for ins, rec in records.items(): ## Sanitise title and experiment rec[0] = rec[0] or "[NO TITLE]" - rec[1] = (rec[1] or "UNKNOWN").upper().replace("THE","").replace("COLLABORATION","").strip() + rec[1] = (rec[1] or "UNKNOWN").upper().split()[0].strip() # ## Experiment # expt = expt.upper().replace("THE","").replace("COLLABORATION","").strip() # # else: # # for e in EXPTS[:-1]: #< skip the trailing "Unknown" # # if e.lower() in title.lower(): # # expt = e # # break # # if rec[2] and e.lower() in " ".join(rec[2]).lower(): # # expt = e # # break # rec[5] = expt ## Ranking - # TODO: Update from CDS -> Inspire - cds = rec[3] - # if not cds: - # print("NO CDS!!!", ins, rec[1], rec[0]) - # elif cds not in alllist: - # print("UNKNOWN CDS!!!", cds, ins, rec[1], rec[0]) code = "default" if rec[6]: #< Rivet analyses code = "rivet" - elif cds in greylist: + elif ins in greylist: code = "grey" - elif cds in blacklist: + elif ins in blacklist: code = "black" - elif cds in hotlist: + elif ins in hotlist: code = "hot" ## Tags title = rec[3] or "" if "search" in title.lower(): code += " search" if "Pb" in title or "Xe" in title: code += " heavyion" rm = False rm |= args.ONLYSEARCHES and not "search" in code rm |= args.NOSEARCHES and "search" in code rm |= args.ONLYHEAVYION and not "heavyion" in code rm |= args.NOHEAVYION and "heavyion" in code if rm: del records[ins] else: rec.append(code) ## Count numbers of records (and update rank file if requested) ex_ntots, ex_ndefaults, ex_nurgents, ex_nwanteds, ex_ntargets, ex_nrivets = {}, {}, {}, {}, {}, {} for ex in EXPTS: ex_records = {ins : rec for ins, rec in records.items() if rec[1].upper() == ex.upper()} ex_ntots[ex] = len(ex_records) ex_nrivets[ex] = len([ins for ins, rec in ex_records.items() if "rivet" in rec[-1]]) ex_ndefaults[ex] = len([ins for ins, rec in ex_records.items() if "default" in rec[-1]]) ex_nurgents[ex] = len([ins for ins, rec in ex_records.items() if "hot" in rec[-1]]) ex_nwanteds[ex] = ex_ndefaults[ex] + ex_nurgents[ex] ex_ntargets[ex] = ex_nwanteds[ex] + ex_nrivets[ex] + if args.VERBOSE: + print(ex, "#urgent/#wanted =", ex_nurgents[ex], "/", ex_nwanteds[ex]) + if args.UPDATERANK: if args.ONLYSEARCHES or args.NOSEARCHES or args.ONLYHEAVYION or args.NOHEAVYION: print("Won't update rank lists while search/HI/experiment filtering is enabled") sys.exit(1) rfname = "{}-{}.rank".format(args.BASENAME, ex.lower()) print("Writing updated rank file to {}".format(rfname)) syms = { "default" : ".", "rivet" : ".", "grey" : "?", "black" : "X", "hot" : "!" } with open(rfname, "w") as rf: for ins, rec in sorted(ex_records.items()): rankcode = rec[-1].split()[0] # line = u"{} {} {}\n".format(ins.encode("UTF-8"), syms[code], rec[3].encode("UTF-8")) - line = u"{} {} {}".format(ins, syms[rankcode], rec[0]) + line = u"{} {} {} {}".format(ins, rec[3], syms[rankcode], rec[0]) # print(assigned.get(ins)) - # TODO: update cds -> ins - cds = rec[3] - if cds in assigned: - #print(cds, rec[0], assigned[cds]) - line += " <{}>".format(assigned[cds]) + if ins in assigned: + #print(ins, rec[0], assigned[ins]) + line += " <{}>".format(assigned[ins]) line += "\n" rf.write(line.encode("UTF-8")) ntot = len(records) nrivet = len([ins for ins, rec in records.items() if "rivet" in rec[-1]]) ndefault = len([ins for ins, rec in records.items() if "default" in rec[-1]]) nurgent = len([ins for ins, rec in records.items() if "hot" in rec[-1]]) nwanted = ndefault + nurgent ntarget = nwanted + nrivet ## Register filter strings excls = [] if args.ONLYSEARCHES: excls.append("searches only") if args.NOSEARCHES: excls.append("no searches") if args.ONLYHEAVYION: excls.append("heavy ion only") if args.NOHEAVYION: excls.append("no heavy ion") ## Web page rendering import html OUT = html.HTML("html") title = "Rivet LHC analysis coverage" exclstr = " ({})".format(", ".join(excls)) if excls else "" title += exclstr head = OUT.head(newlines=True) head.meta(charset="utf-8") head.title(title) head.script("MathJax.Hub.Config({ tex2jax: {inlineMath: [['$','$']]} });", type="text/x-mathjax-config") head.script("", type="text/javascript", src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML", async="async") head.script("", type="text/javascript", src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js") head.script(""" $(document).ready( function(){ $("#blacktoggle").click( function(){ var b = $("#blacktoggle"); var t = b.text(); b.text(t.indexOf("Show") != -1 ? t.replace("Show", "Hide") : t.replace("Hide", "Show") ); $(".black").toggle(100); }); $("#greytoggle").click( function(){ var b = $("#greytoggle"); var t = b.text(); b.text(t.indexOf("Show") != -1 ? t.replace("Show", "Hide") : t.replace("Hide", "Show") ); $(".grey").toggle(100); }); }); """) style = head.style(newlines="True") style += "html { font-family: sans; font-size: large; color: #333; }" style += "body { padding: 2em; }" style += "table { margin: 2em 0 2em 0; border: 0; border-collapse: collapse; text-align: left; }" style += "table.list { border-top: 3px solid black; border-bottom: 3px solid black; }" style += "table.list thead { border-bottom: 1px solid #333; }" style += "table.key { border: 1px solid #333; margin: 0; }" style += "td { padding: 15px; }" style += "tr.ana { border-top: 1px solid #ccc; }" style += "tr.ana td { padding-bottom: 1em; padding-top: 1em; }" style += "a { color: #339; }" style += "button { margin: 1em; }" # style += ".row { margin: 1em 0 3em 0; }" # style += ".row:after { content: ''; display: table; clear: both; }" # style += ".col { float: left; width: 50%; }" style += "button { border: none; margin: 0 1em 0 0; border-radius: 1ex; color: #333; background: #ddf; padding: 1ex; }" style += "button:hover { background: #cce; }" style += "button:active { color: white; }" style += ".rivet { background: #cfc; }" style += ".hot { background: #fbb; }" style += ".default { background: #fee; }" style += ".grey { color: #666; background: #ddd; font-size: normal; display: none; }" style += ".grey a { color: #669; }" style += ".black { color: #eee; background: #333; display: none; }" style += ".black a { color: #99c; }" style += ".hot.assigned { background: repeating-linear-gradient(135deg, #fbb, #fbb 10px, #bd7 10px, #bd7 20px); }" style += ".default.assigned { background: repeating-linear-gradient(135deg, #fee, #fee 10px, #de9 10px, #de9 20px); }" style += ".grey.assigned { background: repeating-linear-gradient(135deg, #ddd, #ddd 10px, #dfd 10px, #dfd 20px); }" body = OUT.html.body(newlines=True) body.h1(title) body.p().b("Rivet analyses exist for {}/{} papers = {:.0f}%. {} priority analyses required.".format(nrivet, ntarget, 100*nrivet/ntarget, nurgent)) body.p("Total number of Inspire papers scanned = {}, at {}".format(ntot, now.strftime("%Y-%m-%d"))) body.p("Breakdown by identified experiment (in development):") t = body.table(klass="list") th = t.thead(newlines=True) r = th.tr(klass="thead") r.td().b("Key") for ex in EXPTS: r.td().b(ex) # tb = t.tbody(newlines=True) r = tb.tr(klass="default") r.td().b("Rivet wanted (total):") for ex in EXPTS: r.td("{}".format(ex_nwanteds[ex])) # r = tb.tr(klass="hot") r.td().b("Rivet REALLY wanted:") for ex in EXPTS: r.td("{}".format(ex_nurgents[ex])) r = tb.tr(klass="rivet") # r.td().b("Rivet provided:") for ex in EXPTS: # txt = "{}".format(ex_nrivets[ex]) # if ex_ntargets[ex]: # txt += " / {:d} = {:.0f}%".format(ex_ntargets[ex], 100*ex_nrivets[ex]/ex_ntargets[ex]) # r.td(txt) b = r.td().b("{}".format(ex_nrivets[ex])) if ex_ntargets[ex]: b.span("/{:d} = ".format(ex_ntargets[ex]), style="color: #777") b += "{:.0f}%".format(100*ex_nrivets[ex]/ex_ntargets[ex]) body.button("Show greylist", id="greytoggle") body.button("Show blacklist", id="blacktoggle") #body.input(klass="search", placeholder="Search") #body.button("Sort by name", klass="sort", data-sort="name") t = body.table(klass="list").tbody(newlines=True) for i, (ins, rec) in enumerate(sorted(records.items(), reverse=args.REVERSE)): expt = rec[1] code = rec[-1] - cds = rec[3] - if cds in assigned: + if ins in assigned: code += " assigned" cell = t.tr(klass=code+" ana", newlines=True).td(newlines=False) summ = u"" summ += u"{}: {}".format(expt, rec[0]) # if expt != "UNKNOWN": # #summ += " " # summ += " [{}]".format(expt) cell.b(summ) cell.br() cell.a("Inspire", href="http://inspirehep.net/record/{}".format(ins)) # Inspire cell += " " if rec[2]: # DOI cell.a("DOI/journal", href="http://dx.doi.org/{}".format(rec[2])) cell += " " if rec[3]: # CDS cell.a("CDS", href="https://cds.cern.ch/record/{}".format(rec[3])) cell += " " if rec[4]: # arXiv cell.a("arXiv", href="https://arxiv.org/abs/{}".format(rec[4])) cell += " " if rec[5]: # HepData cell.a("HepData", href="https://hepdata.net/record/{}".format(rec[5])) cell += " " if rec[6]: # Rivet anas = u", ".join(rec[6]) if rec[6] else u"" cell.a(anas, href="https://rivet.hepforge.org/analyses/{}.html".format(rec[6][0])) - if cds in assigned: - cell.a("IN PROGRESS: assigned to {}".format(assigned[cds]), href="mailto:{}".format(assigned[cds])) + if ins in assigned: + cell.a("IN PROGRESS: assigned to {}".format(assigned[ins]), href="mailto:{}".format(assigned[ins])) ## Time-created footer body.p("Generated at {}".format(now.strftime("%c"))) -body.p("Generated from JSON files extracted from CDS ({} papers in total):".format(ntot)) +body.p("Generated from JSON files extracted from Inspire ({} papers in total):".format(ntot)) body.p(", ".join(args.JSONFILES), style="font-family: monospace; font-size: smaller") ## Write out outfile = args.OUTFILE if not outfile: outfile = args.BASENAME exclparts = [e.replace(" ", "") for e in excls] if exclparts: outfile += "-" + "-".join(exclparts) if not outfile.endswith(".html"): outfile += ".html" print("Writing output to {} {}".format(outfile, exclstr)) with open(outfile, "wb") as hf: a = unicode(OUT) hf.write(a.encode("UTF-8")) diff --git a/doc/rivet-coverage-alice.rank b/doc/rivet-coverage-alice.rank --- a/doc/rivet-coverage-alice.rank +++ b/doc/rivet-coverage-alice.rank @@ -1,225 +1,234 @@ -1225995 ! First proton-proton collisions at the LHC as observed with the ALICE detector -1231809 X Alignment of the ALICE Inner Tracking System with cosmic-ray tracks -1260253 . Charged-particle multiplicity measurement in proton-proton collisions at $\sqrt{s}$ = 0.9 and 2.36 TeV with ALICE at LHC -1260702 . Charged-particle multiplicity measurement in proton-proton collisions at $\sqrt{s}$ = 7 TeV with ALICE at LHC -1274828 . Midrapidity antiproton-to-proton ratio in pp collisions at $\sqrt{s} = 0.9$ and $7$~TeV measured by the ALICE experiment -1276079 . Two-pion Bose-Einstein correlations in $pp$ collisions at $\sqrt{s}$=900 GeV -1276256 . Transverse momentum spectra of charged particles in proton-proton collisions at $\sqrt{s}$ = 900 GeV with ALICE at the LHC -1308005 ! Elliptic flow of charged particles in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1308007 . Charged-particle multiplicity density at mid-rapidity in central Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1310328 . Strange particle production in proton-proton collisions at $\sqrt{s}$ = 0.9 TeV with ALICE at the LHC -1312348 ? Suppression of Charged Particle Production at Large Transverse Momentum in Central Pb--Pb Collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1313050 . Centrality dependence of the charged-particle multiplicity density at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1314539 . Production of pions, kaons and protons in pp collisions at $\sqrt{s}$ = 900 GeV with ALICE at the LHC -1316558 . Two-pion Bose-Einstein correlations in central PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1323464 . Femtoscopy of $pp$ collisions at $\sqrt{s}$=0.9 and 7 TeV at the LHC with two-pion Bose-Einstein correlations -1348393 . Rapidity and transverse momentum dependence of inclusive J/$\psi$ production in pp collisions at $\sqrt{s}$ = 7 TeV -1352300 ! Higher harmonic anisotropic flow measurements of charged particles in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1381944 . Harmonic decomposition of two-particle angular correlations in Pb-Pb collisions at $\mathbf{\sqrt{s_{\rm NN}} = 2.76}$ TeV -1387180 ? Particle-yield modification in jet-like azimuthal dihadron correlations in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1394233 . Measurement of charm production at central rapidity in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1396906 . J/$\psi$ polarization in pp collisions at $\sqrt{s}$=7 TeV -1400676 . Light vector meson production in pp collisions at $\sqrt{s}$ = 7 TeV -1402589 ! Underlying Event measurements in pp collisions at $\sqrt{s}$ = 0.9 and 7 TeV with the ALICE experiment at the LHC -1415766 ? Measurement of Event Background Fluctuations for Charged Particle Jet Reconstruction in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1417687 . Heavy flavour decay muon production at forward rapidity in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1419772 ! J/$\psi$ Production as a Function of Charged Particle Multiplicity in pp Collisions at $\sqrt{s}$ = 7 TeV -1422527 ? J/$\psi$ suppression at forward rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1427249 ? Measurement of the Cross Section for Electromagnetic Dissociation with Neutron Emission in Pb-Pb Collisions at √sNN = 2.76 TeV -1430640 X Multi-strange baryon production in pp collisions at $\sqrt{s}$ = 7 TeV with ALICE -1430959 ? Suppression of high transverse momentum D mesons in central Pb--Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV -1432760 ? Inclusive J/$\psi$ production in pp collisions at $\sqrt{s}$ = 2.76 TeV -1447081 ? Measurement of electrons from semileptonic heavy-flavour hadron decays in pp collisions at $\sqrt{s}$ = 7 TeV -1447152 ? Measurement of charm production at central rapidity in proton-proton collisions at $\sqrt{s}$ = 2.76 TeV -1449971 ! Transverse sphericity of primary charged particles in minimum bias proton-proton collisions at $\sqrt{s}$=0.9, 2.76 and 7 TeV -1452082 . Neutral pion and $\eta$ meson production in proton-proton collisions at $\sqrt{s}$=0.9 TeV and $\sqrt{s}$=7 TeV -1452114 ? Anisotropic flow of charged hadrons, pions and (anti-)protons measured at high transverse momentum in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV -1452307 . Measurement of prompt J/$\psi$ and beauty hadron production cross sections at mid-rapidity in pp collisions at $\sqrt{s}$ = 7 TeV -1452640 ? $K^{0}_{s}-K^{0}_{s}$ correlations in pp collisions at $\sqrt{s}=7 TeV$ from the LHC ALICE experiment -1452856 . Production of muons from heavy flavour decays at forward rapidity in pp and Pb-Pb collisions at $\sqrt {s_{NN}}$ = 2.76 TeV -1460053 ? Charge separation relative to the reaction plane in Pb-Pb collisions at $\sqrt{s_{NN}}$= 2.76 TeV -1460877 ? Net-Charge Fluctuations in Pb-Pb collisions at $\sqrt{s_{NN}}= 2.76$ TeV -1463889 ? Production of $K*(892)^0$ and $\phi$(1020) in pp collisions at $\sqrt{s}$ =7 TeV -1472421 ? Measurement of electrons from beauty hadron decays in pp collisions at $\sqrt{s}$ = 7 TeV -1472422 ! D$_s^+$ meson production at central rapidity in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1472425 . Pion, Kaon, and Proton Production in Central Pb--Pb Collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1473029 . Centrality Dependence of Charged Particle Production at Large Transverse Momentum in Pb--Pb Collisions at $\sqrt{s_{\rm{NN}}} = 2.76$ TeV -1474539 . Measurement of inelastic, single- and double-diffraction cross sections in proton-proton collisions at the LHC with ALICE -1476722 ? Coherent J/$\Psi$ photoproduction in ultra-peripheral Pb-Pb collisions at $\sqrt{s_{NN}}$ =2.76 TeV -1483543 ! Pseudorapidity density of charged particles p-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1485266 . Transverse Momentum Distribution and Nuclear Modification Factor of Charged Particles in p-Pb Collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1491241 . Charged kaon femtoscopic correlations in pp collisions at $\sqrt{s}=7$ TeV -1497210 . Long-range angular correlations on the near and away side in p-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1500579 ! Centrality determination of Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV with ALICE -1501710 . Charge correlations using the balance function in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1506330 . Measurement of the inclusive differential jet cross section in pp collisions at $\sqrt{s}$ = 2.76 TeV -1514201 ! Centrality dependence of $\pi$, K, p production in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1528237 . J/$\psi$ Elliptic Flow in Pb-Pb Collisions at $\sqrt{s_{NN}}$=2.76 TeV -1528555 . Centrality dependence of the pseudorapidity density distribution for charged particles in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1544100 . Mid-rapidity anti-baryon to baryon ratios in pp collisions at $\sqrt{s}$ = 0.9, 2.76 and 7 TeV measured by ALICE -1544889 X Performance of the ALICE VZERO system -1545407 . D meson elliptic flow in non-central Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76TeV -1546021 . Charmonium and $e^+e^-$ pair photoproduction at mid-rapidity in ultra-peripheral Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1554526 . Directed flow of charged particles at mid-rapidity relative to the spectator plane in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV -1556551 . Multiplicity dependence of two-particle azimuthal correlations in pp collisions at the LHC -1558156 . Multiplicity dependence of the average transverse momentum in pp, p-Pb, and Pb-Pb collisions at the LHC -1558429 . Long-range angular correlations of π, K and p in p–Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1559558 . Energy Dependence of the Transverse Momentum Distributions of Charged Particles in pp Collisions Measured by ALICE -1561724 . K$^0_S$ and $\Lambda$ production in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1561808 ! Multi-strange baryon production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1562655 ! Multiplicity Dependence of Pion, Kaon, Proton and Lambda Production in p-Pb Collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1591637 . J/$\psi$ production and nuclear effects in p-Pb collisions at $\sqrt{s_{NN}}$=5.02 TeV -1612368 . Two- and three-pion quantum statistics correlations in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV at the CERN Large Hadron Collider -1616125 . Centrality, rapidity and transverse momentum dependence of the J/$\psi$ suppression in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV -1624179 . Measurement of charged jet suppression in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76TeV -1641336 . Production of charged pions, kaons and protons at large transverse momenta in pp and Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1648854 X Performance of the ALICE Experiment at the CERN LHC -1666708 . Measurement of quarkonium production at forward rapidity in pp collisions at $\sqrt{s}$ = 7 TeV -1690314 . Freeze-out radii extracted from three-pion cumulants in pp, p-Pb and Pb-Pb collisions at the LHC -1692998 . K*(892)$^0$ and $\Phi$(1020) production in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1697849 . Multiplicity dependence of jet-like two-particle correlations in p-Pb collisions at $\sqrt{s_NN}$ = 5.02 TeV with ALICE at LHC -1700395 . Azimuthal anisotropy of D-meson production in Pb-Pb collisions at root $\sqrt{s_{NN}}$ = 2.76 TeV -1700665 . Measurement of visible cross sections in proton-lead collisions at $\sqrt{s_{NN}}$=5.02 TeV in van der Meer scans with the ALICE detector -1700964 . Transverse momentum dependence of inclusive primary charged-particle production in p-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1701894 . Measurement of prompt D-meson production in p-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1702183 . Neutral pion production at midrapidity in pp and Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1702184 . Suppression of $\psi$(2S) production in p-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1702571 . Measurement of electrons from semileptonic heavy-flavor hadron decays in pp collisions at $\sqrt{s}$ = 2.76 TeV -1702572 . Beauty production in pp collisions at $\sqrt{s}$ = 2.76 TeV measured via semi-electronic decays -1702834 ! Suppression of $\Upsilon$(1S) at forward rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -1702836 . Elliptic flow of identified hadrons in Pb-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 2.76 TeV -1708647 . Multiparticle azimuthal correlations in p-Pb and Pb-Pb collisions at the CERN Large Hadron Collider -1709031 . Production of $\Sigma(1385)^{\pm}$ and $\Xi(1530)^{0}$ in proton-proton collisions at $\sqrt{s}=$ 7 TeV -1712778 . Exclusive $J/\psi$ photoproduction off protons in ultra-peripheral p-Pb collisions at $\sqrt{s_{NN}}$=5.02 TeV -1741643 . Event-by-event mean $p_T$ fluctuations in pp and Pb-Pb collisions at the LHC -1953948 ! Production of inclusive $\Upsilon$(1S) and $\Upsilon$(2S) in p-Pb collisions at $\mathbf{\sqrt{s_{{\rm NN}}} = 5.02}$ TeV -1970694 . Charged jet cross sections and properties in proton-proton collisions at $\sqrt{s}=7$ TeV -1970776 . Inclusive photon production at forward rapidities in proton-proton collisions at $\sqrt{s}$ = 0.9, 2.76 and 7 TeV -1978606 ! Centrality dependence of particle production in p-Pb collisions at $\sqrt{s_{\rm NN} }$= 5.02 TeV -1984764 . Forward-backward multiplicity correlations in pp collisions at $\sqrt{s}$=0.9, 2.76 and 7 TeV -1984767 . Two-pion femtoscopy in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV -1987206 . Measurement of jet suppression in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -1989150 . Precision measurement of the mass difference between light nuclei and anti-nuclei -1992903 . Measurement of dijet $k_T$ in p-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1996438 . Measurement of charged jet production cross sections and nuclear modification in p-Pb collisions at $\sqrt{s_\rm{NN}} = 5.02$ TeV -1999164 . Measurement of pion, kaon and proton production in proton-proton collisions at $\sqrt{s}$ = 7 TeV -2004578 . Rapidity and transverse-momentum dependence of the inclusive J/$\mathbf{\psi}$ nuclear modification factor in p-Pb collisions at $\mathbf{\sqrt{\textit{s}_{NN}}}=5.02$ TeV -2005107 . Measurement of charm and beauty production at central rapidity versus charged-particle multiplicity in proton-proton collisions at $\sqrt{s}$ = 7 TeV -2005513 . Coherent $\rho^0$ photoproduction in ultra-peripheral Pb-Pb collisions at $\mathbf{\sqrt{\textit{s}_{\rm NN}}} = 2.76$ TeV -2012463 . Inclusive, prompt and non-prompt J/$\psi$ production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2025364 . Measurement of jet quenching with semi-inclusive hadron-jet distributions in central Pb-Pb collisions at ${\sqrt{\bf{s}_{\mathrm {\bf{NN}}}}}$ = 2.76 TeV -2025647 . Centrality dependence of high-$p_{\rm T}$ D meson suppression in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2026062 . Centrality dependence of the nuclear modification factor of charged pions, kaons, and protons in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -2026383 . Coherent $\psi(2S)$ photo-production in ultra-peripheral Pb-Pb collisions at $\sqrt{s_{\rm NN}}$= 2.76 TeV -2029802 . One-dimensional pion, kaon, and proton femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm {NN}}}$ =2.76 TeV -2029808 . Forward-central two-particle correlations in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV -2029824 . Differential studies of inclusive J/$\psi$ and $\psi$(2S) production at forward rapidity in Pb-Pb collisions at $\mathbf{\sqrt{{\textit s}_{_{NN}}}}$ = 2.76 TeV -2029825 . Centrality dependence of inclusive J/$\psi$ production in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV -2029884 . $^{3}_{\Lambda}\mathrm H$ and $^{3}_{\bar{\Lambda}} \overline{\mathrm H}$ production in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2030418 . $\phi$-meson production at forward rapidity in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV and in pp collisions at $\sqrt{s}$ = 2.76 TeV -2030480 . Production of light nuclei and anti-nuclei in $pp$ and Pb-Pb collisions at energies available at the CERN Large Hadron Collider -2033884 . Elliptic flow of muons from heavy-flavour hadron decays at forward rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV -2034421 X Search for weakly decaying $\overline{\Lambda\mathrm{n}}$ and $\Lambda\Lambda $ exotic bound states in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2036935 . Event shape engineering for inclusive spectra and elliptic flow in Pb-Pb collisions at $\sqrt{s_\rm{NN}}=2.76$ TeV -2037814 . Centrality dependence of pion freeze-out radii in Pb-Pb collisions at $\sqrt{\mathbf{s_{NN}}}$=2.76 TeV -2038804 . Study of cosmic ray events with high muon multiplicity using the ALICE detector at the CERN Large Hadron Collider -2051865 . Transverse momentum dependence of D-meson production in Pb–Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2051869 . Measurement of D$^+_s$ production and nuclear modification factor in Pb–Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV -2051887 ! Direct photon production in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV -2052525 ! Centrality evolution of the charged–particle pseudorapidity density over a broad pseudorapidity range in Pb–Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV -2052528 . Azimuthal anisotropy of charged jet production in $\sqrt{s_{\rm NN}}=2.76$ TeV Pb–Pb collisions -2052556 . Charged–particle multiplicities in proton–proton collisions at $\sqrt{s}=$ 0.9 to 8 TeV, with ALICE at the LHC -2053198 . Measurement of electrons from heavy-flavour hadron decays in p–Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV -2053775 . Inclusive quarkonium production at forward rapidity in pp collisions at $\sqrt{s}= 8$ TeV -2053776 . Measurement of an excess in the yield of J/$\psi$ at very low $p_{\rm T}$ in Pb–Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV -2055040 . Multiplicity and transverse momentum evolution of charge-dependent correlations in pp, p-Pb, and Pb-Pb collisions at the LHC -2056018 . Pseudorapidity and transverse-momentum distributions of charged particles in proton-proton collisions at $\mathbf{\sqrt{\textit s}}$ = 13 TeV -2109975 . Charge-dependent flow and the search for the chiral magnetic wave in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2113256 . Centrality Dependence of the Charged-Particle Multiplicity Density at Midrapidity in Pb-Pb Collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV -2117760 ! Multi-strange baryon production in p-Pb collisions at $\sqrt{s_\mathbf{NN}}=5.02$ TeV -2118516 . Multipion Bose-Einstein correlations in $pp$, $p$-Pb, and Pb-Pb collisions at energies available at the CERN Large Hadron Collider -2124348 . Multiplicity dependence of charged pion, kaon, and (anti)proton production at large transverse momentum in p-Pb collisions at $\sqrt{s_{\rm NN}}$= 5.02 TeV -2126032 . Anisotropic flow of charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV -2127042 X Particle identification in ALICE: a Bayesian approach -2127657 . Production of K$^{*}$(892)$^{0}$ and $\phi$(1020) in p-Pb collisions at $\sqrt{s_{\mathrm{NN}}}$ = 5.02 TeV -2134226 . Measurement of D-meson production versus multiplicity in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV -2138163 . Centrality dependence of $\mathbf{\psi}$(2S) suppression in p-Pb collisions at $\mathbf{\sqrt{{\textit s}_{\rm NN}}}$ = 5.02 TeV -2138593 . Centrality dependence of charged jet production in p-Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 5.02 TeV -2139456 . Measurement of transverse energy at midrapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV -2147403 . Correlated event-by-event fluctuations of flow harmonics in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV -2151170 . Pseudorapidity dependence of the anisotropic flow of charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV -2153377 ! D-meson production in $p$–Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV and in $pp$ collisions at $\sqrt{s}=7$ TeV -2153590 . Measurement of azimuthal correlations of D mesons and charged particles in pp collisions at $\sqrt{s}=7$ TeV and p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV -2154390 . Elliptic flow of electrons from heavy-flavour hadron decays at mid-rapidity in Pb–Pb collisions at $\sqrt{s_{\rm NN}}= 2.76$ TeV -2162399 . J/$\psi$ suppression at forward rapidity in Pb–Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV -2162576 . Higher harmonic flow coefficients of identified hadrons in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2189682 ! Enhanced production of multi-strange hadrons in high-multiplicity proton–proton collisions -2210751 . Jet-like correlations with neutral pion triggers in pp and central Pb-Pb collisions at 2.76 TeV -2213564 . Measurement of electrons from beauty-hadron decays in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV and Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV -2214586 . Evolution of the longitudinal and azimuthal structure of the near-side peak in Pb–Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV -2214587 . Anomalous evolution of the near-side jet peak shape in Pb-Pb collisions at $\sqrt{s_{\mathrm{NN}}}$ = 2.76 TeV -2215398 . Measurement of the production of high-$p_{\rm T}$ electrons from heavy-flavour hadron decays in Pb-Pb collisions at $\mathbf{\sqrt{\it s_{\rm{NN}}}}$ = 2.76 TeV -2224138 . Determination of the event collision time with the ALICE detector at the LHC -2228649 . W and Z boson production in p–Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV -2239845 ! Centrality dependence of the pseudorapidity density distribution for charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV -2239958 ! Insight into particle production mechanisms via angular correlations of identified particles in pp collisions at $\sqrt{s}=7$ TeV -2242607 . Energy dependence of forward-rapidity J/$\psi$ and $\psi(2S)$ production in pp collisions at the LHC -2242827 . First measurement of jet mass in Pb-Pb and p-Pb collisions at the LHC -2243043 . Production of $\Sigma(1385)^{\pm}$ and $\Xi(1530)^{0}$ in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV -2243279 . Measurement of D-meson production at mid-rapidity in pp collisions at ${\sqrt{s}=7}$  TeV -2243326 . Production of muons from heavy-flavour hadron decays in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV -2244366 . K$^{*}(892)^{0}$ and $\phi(1020)$ meson production at high transverse momentum in pp and Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 2.76 TeV -2244883 . Production of $\pi^0$ and $\eta$ mesons up to high transverse momentum in pp collisions at 2.76 TeV -2244885 . Azimuthally differential pion femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV -2245547 . Flow dominance and factorization of transverse momentum correlations in Pb-Pb collisions at the LHC -2256847 . J/$\psi$ production as a function of charged-particle pseudorapidity density in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV -2258402 . Measuring K$^0_{\rm S}$K$^{\rm \pm}$ interactions using Pb-Pb collisions at ${\sqrt{s_{\rm NN}}=2.76}$ TeV -2262600 . Linear and non-linear flow modes in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV -2271135 . Searches for transverse momentum dependent flow vector fluctuations in Pb-Pb and p-Pb collisions at the LHC -2271795 . D-meson azimuthal anisotropy in mid-central Pb-Pb collisions at $\mathbf{\sqrt{s_{\rm NN}}=5.02}$ TeV -2274147 . Measurement of deuteron spectra and elliptic flow in Pb–Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV at the LHC -2275327 . Kaon femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 2.76 TeV -2275974 ! Charged-particle multiplicity distributions over a wide pseudorapidity range in proton-proton collisions at $\sqrt{s}=$ 0.9, 7, and 8 TeV -2280315 . $\pi^0$ and $\eta$ meson production in proton-proton collisions at $\sqrt{s}=8$ TeV -2280318 . Systematic studies of correlations between different order flow harmonics in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2281131 X The ALICE Transition Radiation Detector: construction, operation, and performance -2282544 . J/$\psi$ elliptic flow in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV -2282897 . Constraining the magnitude of the Chiral Magnetic Effect with Event Shape Engineering in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2284035 . Search for collectivity with azimuthal J/$\psi$-hadron correlations in high multiplicity p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 and 8.16 TeV -2285133 . Production of deuterons, tritons, $^{3}$He nuclei and their antinuclei in pp collisions at $\mathbf{\sqrt{{\textit s}}}$ = 0.9, 2.76 and 7 TeV -2286433 . Production of $^{4}$He and $^{4}\overline{\textrm{He}}$ in Pb-Pb collisions at $\sqrt{s_{\mathrm{NN}}}$ = 2.76 TeV at the LHC -2293585 . Measurement of Z$^0$-boson production at large rapidities in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV -2294919 . Relative particle yield fluctuations in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV -2296452 . Constraints on jet quenching in p-Pb collisions at $\mathbf{\sqrt{s_{NN}}}$ = 5.02 TeV measured by the event-activity dependence of semi-inclusive hadron-jet distributions -2296996 . First measurement of $\Xi_{\rm c}^0$ production in pp collisions at $\mathbf{\sqrt{s}}$ = 7 TeV -2298650 . $\Lambda_{\rm c}^+$ production in pp collisions at $\sqrt{s} = 7$ TeV and in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV -2299472 . Neutral pion and $\eta$ meson production in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV -2302066 . Prompt and non-prompt J/$\psi$ production and nuclear modification at mid-rapidity in p-Pb collisions at ${\bf \sqrt{{\it s}_{\text{NN}}}= 5.02}$ TeV -2304800 ! Transverse momentum spectra and nuclear modification factors of charged particles in pp, p-Pb and Pb-Pb collisions at the LHC -2306302 . Azimuthally-differential pion femtoscopy relative to the third harmonic event plane in Pb-Pb collisions at $\mathbf{\sqrt{\textit{s}_{_{\rm NN}}}}$ = 2.76 TeV -2307650 . Neutral pion and $\eta$ meson production at mid-rapidity in Pb–Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV -2308256 . Direct photon production at low transverse momentum in proton-proton collisions at $\sqrt{s}$ = 2.76 and 8 TeV -2310570 . Energy dependence and fluctuations of anisotropic flow in Pb-Pb collisions at $\mathbf{\sqrt{{\textit s}_\text{NN}}} = \mathbf{5.02}$ and $\mathbf{2.76}$ TeV -2311747 ! Measurement of D$^0$, D$^+$, D$^{*+}$ and D$_{\rm s}^+$ production in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV -2314216 . $\phi$ meson production at forward rapidity in Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}=2.76$ TeV -2315558 . Anisotropic flow in Xe-Xe collisions at $\mathbf{\sqrt{s_{\rm{NN}}} = 5.44}$ TeV -2315859 . Measurements of low-$p_{T}$ electrons from semileptonic heavy-flavour hadron decays at mid-rapidity in pp and Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -2315951 . Measurement of the inclusive J/$\psi$ polarization at forward rapidity in pp collisions at $\sqrt{s} = 8$ TeV -2316010 . Inclusive J/$\psi$ production at forward and backward rapidity in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 8.16 TeV -2316031 . Dielectron production in proton–proton collisions at $\sqrt{s} = 7$ TeV -2316069 ! Anisotropic flow of identified particles in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -2316135 . Production of the $\rho(770)^{0}$ meson in pp and Pb–Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -2316136 . Inclusive J/$\psi$ production in Xe-Xe collisions at $\sqrt{s_{NN}}$ = 5.44 TeV -2316249 . Transverse momentum spectra and nuclear modification factors of charged particles in Xe–Xe collisions at $\sqrt{s_{\rm NN}} = 5.44$ TeV -2316306 . $\Upsilon$ suppression at forward rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}= 5.02$ TeV -2316322 ? Analysis of the apparent nuclear modification in peripheral Pb-Pb collisions at 5.02 TeV -2316371 . Suppression of $\Lambda(1520)$ resonance production in central Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -2316393 ! Direct photon elliptic flow in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -2316778 . Non-Flow and Flow studies with differential transverse momentum and number density correlations in p-Pb and Pb-Pb at LHC -2316782 . Azimuthal anisotropy of heavy-flavour decay electrons in p-Pb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -2316786 ! Centrality and pseudorapidity dependence of the charged-particle multiplicity density in Xe–Xe collisions at $\sqrt{s_{NN}}$ = 5.44 TeV -2316934 . Dielectron and heavy-quark production in inelastic and high-multiplicity proton-proton collisions at $\sqrt{s} = 13$ TeV -2320574 . p-p, p-$\Lambda$ and $\Lambda$-$\Lambda$ correlations studied via femtoscopy in pp reactions at $\sqrt{s}$ = 7 TeV -2625083 . Measurement of dielectron production in central Pb-Pb collisions at $\sqrt{{\textit{s}}_{\mathrm{NN}}}$ = 2.76 TeV -2630402 . Medium modification of the shape of small-radius jets in central Pb-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 2.76 TeV -2632051 . Multiplicity dependence of light-flavor hadron production in pp collisions at $\sqrt{s}$ = 7 TeV +841752 X Alignment of the ALICE Inner Tracking System with cosmic-ray tracks +852264 . Charged-particle multiplicity measurement in proton-proton collisions at $\sqrt{s}=7$ TeV with ALICE at LHC +852450 . Charged-particle multiplicity measurement in proton-proton collisions at $\sqrt{s}=0.9$ and 2.36 TeV with ALICE at LHC +859610 . Midrapidity antiproton-to-proton ratio in pp collisions at $\sqrt{s} = 0.9$ and $7$~TeV measured by the ALICE experiment +860416 . Transverse momentum spectra of charged particles in proton-proton collisions at $\sqrt{s} = 900$~GeV with ALICE at the LHC +860477 . Two-pion Bose-Einstein correlations in $pp$ collisions at $\sqrt{s}=900$ GeV +864292 . ALICE EMCal Physics Performance Report +877821 . Charged-particle multiplicity density at mid-rapidity in central Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV +877822 ! Elliptic flow of charged particles in Pb-Pb collisions at 2.76 TeV +879583 ? Suppression of Charged Particle Production at Large Transverse Momentum in Central Pb-Pb Collisions at $\sqrt{s_{NN}} =$ 2.76 TeV +880049 . Centrality dependence of the charged-particle multiplicity density at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV +881474 . Strange particle production in proton-proton collisions at sqrt(s) = 0.9 TeV with ALICE at the LHC +881884 . Two-pion Bose-Einstein correlations in central Pb-Pb collisions at $\sqrt{{s}_{NN}} =$ 2.76 TeV +884741 . Femtoscopy of $pp$ collisions at $\sqrt{s}=0.9$ and 7 TeV at the LHC with two-pion Bose-Einstein correlations +885104 . Production of pions, kaons and protons in $pp$ collisions at $\sqrt{s}= 900$ GeV with ALICE at the LHC +897764 . Rapidity and transverse momentum dependence of inclusive J$/\psi$ production in $pp$ collisions at $\sqrt{s} = 7$ TeV +900651 ! Higher harmonic anisotropic flow measurements of charged particles in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV +927105 . Harmonic decomposition of two-particle angular correlations in Pb-Pb collisions at $\sqrt{s_{NN}}=$ 2.76 TeV +930312 . Particle-yield modification in jet-like azimuthal di-hadron correlations in Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV +944730 . $J/\psi$ polarization in $pp$ collisions at $\sqrt{s}=7$ TeV +944757 . Measurement of charm production at central rapidity in proton-proton collisions at $\sqrt{s} = 7$ TeV +1080735 ! Underlying Event measurements in $pp$ collisions at $\sqrt{s}=0.9$ and 7 TeV with the ALICE experiment at the LHC +1080945 . Light vector meson production in $pp$ collisions at $\sqrt{s}=7$ TeV +1084331 ? Measurement of Event Background Fluctuations for Charged Particle Jet Reconstruction in Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV +1084981 . Heavy flavour decay muon production at forward rapidity in proton–proton collisions at $\sqrt{s} =$ 7 TeV +1088222 . $J/\psi$ suppression at forward rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1088833 ! $J/\psi$ Production as a Function of Charged Particle Multiplicity in $pp$ Collisions at $\sqrt{s} = 7$ TeV +1093488 . Suppression of high transverse momentum D mesons in central Pb-Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1093519 ? Measurement of the Cross Section for Electromagnetic Dissociation with Neutron Emission in Pb-Pb Collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1094079 . Inclusive $J/\psi$ production in $pp$ collisions at $\sqrt{s} = 2.76$ TeV +1097057 X Multi-strange baryon production in $pp$ collisions at $\sqrt{s} = 7$ TeV with ALICE +1115186 . Transverse sphericity of primary charged particles in minimum bias proton-proton collisions at $\sqrt{s}=0.9$, 2.76 and 7 TeV +1115187 ? Measurement of charm production at central rapidity in proton-proton collisions at $\sqrt{s}=2.76$ TeV +1115824 ? Measurement of electrons from semileptonic heavy-flavour hadron decays in pp collisions at \sqrt{s} = 7 TeV +1116147 . Neutral pion and $\eta$ meson production in proton-proton collisions at $\sqrt{s}=0.9$ TeV and $\sqrt{s}=7$ TeV +1116150 . Anisotropic flow of charged hadrons, pions and (anti-)protons measured at high transverse momentum in Pb-Pb collisions at $\sqrt{s_{NN}}$=2.76 TeV +1116251 . Measurement of prompt $J/\psi$ and beauty hadron production cross sections at mid-rapidity in $pp$ collisions at $\sqrt{s} = 7$ TeV +1116417 . Production of muons from heavy flavour decays at forward rapidity in pp and Pb-Pb collisions at $\sqrt {s_{NN}}$ = 2.76 TeV +1117885 ? $K^0_s-K^0_s$ correlations in $pp$ collisions at $\sqrt{s}=7$ TeV from the LHC ALICE experiment +1121161 . Charge separation relative to the reaction plane in Pb-Pb collisions at $\sqrt{s_{NN}}= 2.76$ TeV +1123802 ? Net-Charge Fluctuations in Pb-Pb collisions at $\sqrt{s}_{NN} = 2.76$ TeV +1126962 ? Measurement of electrons from beauty hadron decays in $pp$ collisions at $\sqrt{s}=7$ TeV +1126963 . $D_{s}^+$ meson production at central rapidity in proton--proton collisions at $\sqrt{s}=7$ TeV +1126966 . Pion, Kaon, and Proton Production in Central Pb--Pb Collisions at $\sqrt{s_{NN}} = 2.76$ TeV +1127497 . Centrality Dependence of Charged Particle Production at Large Transverse Momentum in Pb--Pb Collisions at $\sqrt{s_{\rm{NN}}} = 2.76$ TeV +1181770 . Measurement of inelastic, single- and double-diffraction cross sections in proton--proton collisions at the LHC with ALICE +1182213 ? Production of $K^*(892)^0$ and $\phi(1020)$ in $pp$ collisions at $\sqrt{s}=7$ TeV +1185785 ? Coherent $J/\psi$ photoproduction in ultra-peripheral Pb-Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV +1190545 ! Pseudorapidity density of charged particles in $p$ + Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV +1190895 . Transverse momentum distribution and nuclear modification factor of charged particles in $p$-Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV +1206610 . Long-range angular correlations on the near and away side in $p$-Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV +1208696 . Charged kaon femtoscopic correlations in $pp$ collisions at $\sqrt{s}=7$ TeV +1210881 . Measurement of the inclusive differential jet cross section in $pp$ collisions at $\sqrt{s} = 2.76$ TeV +1211186 . Charge correlations using the balance function in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1215085 ! Centrality determination of Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV with ALICE +1222333 ! Centrality dependence of $\pi$, K, p production in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1225273 . J/Psi Elliptic Flow in Pb-Pb Collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1225979 . Centrality dependence of the pseudorapidity density distribution for charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1232206 . Charmonium and $e^+e^-$ pair photoproduction at mid-rapidity in ultra-peripheral Pb-Pb collisions at $\sqrt{s_{\rm NN}}$=2.76 TeV +1232209 . Mid-rapidity anti-baryon to baryon ratios in pp collisions at $\sqrt{s}$ = 0.9, 2.76 and 7 TeV measured by ALICE +1233087 . D meson elliptic flow in non-central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76TeV +1238451 X Performance of the ALICE VZERO system +1238980 . Directed Flow of Charged Particles at Midrapidity Relative to the Spectator Plane in Pb-Pb Collisions at $\sqrt{s_{NN}}$=2.76 TeV +1241422 . Energy Dependence of the Transverse Momentum Distributions of Charged Particles in pp Collisions Measured by ALICE +1241423 . Multiplicity dependence of the average transverse momentum in pp, p-Pb, and Pb-Pb collisions at the LHC +1241570 . Multiplicity dependence of two-particle azimuthal correlations in pp collisions at the LHC +1242302 . Long-range angular correlations of $\rm \pi$, K and p in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV +1243863 . $K^0_S$ and $\Lambda$ production in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1243865 . Multi-strange baryon production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1244523 . Multiplicity Dependence of Pion, Kaon, Proton and Lambda Production in p-Pb Collisions at $\sqrt{s_{NN}}$ = 5.02 TeV +1251898 . $J/\psi$ production and nuclear effects in p-Pb collisions at $\sqrt{S_{NN}}$ = 5.02 TeV +1262523 . Two- and three-pion quantum statistics correlations in Pb-Pb collisions at $\sqrt{{s}_{NN}} =$ 2.76 TeV at the CERN Large Hadron Collider +1263062 . Centrality, rapidity and transverse momentum dependence of $J/\psi$ suppression in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$=2.76 TeV +1263194 . Measurement of charged jet suppression in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1276299 . Production of charged pions, kaons and protons at large transverse momenta in pp and Pb–Pb collisions at $\sqrt{s_{\rm NN}}$ =2.76 TeV +1281831 X Performance of the ALICE Experiment at the CERN LHC +1285950 . Measurement of quarkonium production at forward rapidity in $pp$ collisions at $\sqrt{s} = 7$ TeV +1288320 . $K^*(892)^0$ and $ϕ(1020)$ production in Pb-Pb collisions at $\sqrt{s{NN}}$ = 2.76 TeV +1288705 . Freeze-out radii extracted from three-pion cumulants in pp, p–Pb and Pb–Pb collisions at the LHC +1294934 . Measurement of visible cross sections in proton-lead collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV in van der Meer scans with the ALICE detector +1294938 . Azimuthal anisotropy of D meson production in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV +1295687 . Transverse momentum dependence of inclusive primary charged-particle production in p-Pb collisions at $\sqrt{s_\mathrm{{NN}}}=5.02~\text {TeV}$ +1296081 . Measurement of prompt $D$-meson production in $p-Pb$ collisions at $\sqrt{s_{NN}}$ = 5.02 TeV +1296306 . Neutral pion production at midrapidity in pp and Pb-Pb collisions at $\sqrt{s_{{\mathrm {NN}}}}= 2.76\,{\mathrm {TeV}}$ +1296307 . Suppression of $\psi$(2S) production in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV +1296860 . Measurement of electrons from semileptonic heavy-flavor hadron decays in $pp$ collisions at $\sqrt{s} = 2.76$ TeV +1296861 . Beauty production in pp collisions at $\sqrt{s}$ = 2.76 TeV measured via semi-electronic decays +1297101 ! Suppression of $\Upsilon (1S)$ at forward rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV +1297103 . Elliptic flow of identified hadrons in Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV +1300038 . Multiparticle azimuthal correlations in p -Pb and Pb-Pb collisions at the CERN Large Hadron Collider +1300380 . Production of $\Sigma(1385)^{\pm}$ and $\Xi(1530)^{0}$ in proton-proton collisions at $\sqrt{s}=$ 7 TeV +1301858 . Multiplicity dependence of jet-like two-particle correlation structures in p–Pb collisions at $\sqrt{s_{NN}}$=5.02 TeV +1303903 . Exclusive $\mathrm{J/}\psi$ photoproduction off protons in ultra-peripheral p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV +1305020 . Upgrade of the ALICE Experiment: Letter Of Intent +1305021 . Technical Design Report for the Upgrade of the ALICE Inner Tracking System +1307102 . Event-by-event mean ${p}_{\mathbf {T}}$ fluctuations in pp and Pb-Pb collisions at the LHC +1321022 ! Production of inclusive $\Upsilon$(1S) and $\Upsilon$(2S) in p-Pb collisions at $\mathbf{\sqrt{s_{{\rm NN}}} = 5.02}$ TeV +1328629 . Charged jet cross sections and properties in proton-proton collisions at $\sqrt{s}=7$ TeV +1328669 . Inclusive photon production at forward rapidities in proton-proton collisions at $\sqrt{s}$ = 0.9, 2.76 and 7 TeV +1335350 ! Centrality dependence of particle production in p-Pb collisions at $\sqrt{s_{\rm NN} }$= 5.02 TeV +1342496 . Forward-backward multiplicity correlations in pp collisions at $ \sqrt{s} $ = 0.9, 2.76 and 7 TeV +1342499 . Two-pion femtoscopy in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV +1343112 . Measurement of jet suppression in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1346963 . Measurement of charged jet production cross sections and nuclear modification in p-Pb collisions at $\sqrt{s_\rm{NN}} = 5.02$ TeV +1351451 . Measurement of dijet $k_T$ in p–Pb collisions at $\sqrt{s}_{NN}$=5.02 TeV +1355544 . Rapidity and transverse-momentum dependence of the inclusive J/$\psi$ nuclear modification factor in p-Pb collisions at $ \sqrt{s_{N\ N}} =$ 5.02 TeV +1357206 . Coherent ρ$^{0}$ photoproduction in ultra-peripheral Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV +1357424 . Measurement of pion, kaon and proton production in proton–proton collisions at $\sqrt{s} = 7$ TeV +1364887 . Inclusive, prompt and non-prompt J/$\psi$ production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1366028 . Measurement of charm and beauty production at central rapidity versus charged-particle multiplicity in proton-proton collisions at $ \sqrt{s}=7 $ TeV +1376027 . Measurement of jet quenching with semi-inclusive hadron-jet distributions in central Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV +1377363 . Centrality dependence of high-p$_{T}$ D meson suppression in Pb-Pb collisions at $ \sqrt{s_{\mathrm{N}\mathrm{N}}}=2.76 $ TeV +1377750 . Centrality dependence of the nuclear modification factor of charged pions, kaons, and protons in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV +1377753 X Search for weakly decaying $\overline{\Lambda\mathrm{n}}$ and $\Lambda\Lambda $ exotic bound states in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1379971 . One-dimensional pion, kaon, and proton femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm {NN}}}$ =2.76 TeV +1379977 . Forward-central two-particle correlations in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV +1380192 . Differential studies of inclusive J/ψ and ψ(2S) production at forward rapidity in Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV +1380193 . Centrality dependence of inclusive J/ψ production in p-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ TeV +1380234 . $^{3}_{\Lambda}\mathrm H$ and $^{3}_{\bar{\Lambda}} \overline{\mathrm H}$ production in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV +1380453 . $\phi$-meson production at forward rapidity in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV and in pp collisions at $\sqrt{s}$ = 2.76 TeV +1380491 . Production of light nuclei and anti-nuclei in pp and Pb-Pb collisions at energies available at the CERN Large Hadron Collider +1382591 . Elliptic flow of muons from heavy-flavour hadron decays at forward rapidity in Pb–Pb collisions at $\sqrt{s_{\rm NN}}= 2.76$ TeV +1384270 . Event shape engineering for inclusive spectra and elliptic flow in Pb-Pb collisions at $\sqrt{s_\rm{NN}}=2.76$ TeV +1384807 . Centrality dependence of pion freeze-out radii in Pb-Pb collisions at $\sqrt{s}_{NN}=$ 2.76 TeV +1385276 . Study of cosmic ray events with high muon multiplicity using the ALICE detector at the CERN Large Hadron Collider +1388181 . Precision measurement of the mass difference between light nuclei and anti-nuclei +1388730 . Coherent $\psi$(2S) photo-production in ultra-peripheral Pb Pb collisions at $\sqrt{s}_{\rm NN}$ = 2.76 TeV +1394580 . Transverse momentum dependence of D-meson production in Pb-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=$ 2.76 TeV +1394672 . Multiplicity and transverse momentum evolution of charge-dependent correlations in pp, p–Pb, and Pb–Pb collisions at the LHC +1394675 . Measurement of D$_{s}^{+}$ production and nuclear modification factor in Pb-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=$ 2.76 TeV +1394676 ! Centrality evolution of the charged-particle pseudorapidity density over a broad pseudorapidity range in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV +1394677 ! Direct photon production in Pb-Pb collisions at $\sqrt{s_\rm{NN}} =$ 2.76 TeV +1394678 . Azimuthal anisotropy of charged jet production in $\sqrt{s_{\rm NN}}$ = 2.76 TeV Pb-Pb collisions +1394682 . Measurement of electrons from heavy-flavour hadron decays in p-Pb collisions at $\sqrt{s_{\rm NN}} =$ 5.02 TeV +1394854 . Charged-particle multiplicities in proton–proton collisions at $\sqrt{s} = 0.9$ to 8 TeV +1395099 . Inclusive quarkonium production at forward rapidity in pp collisions at $\sqrt{s}=8$ TeV +1395253 . Pseudorapidity and transverse-momentum distributions of charged particles in proton–proton collisions at $\sqrt s=$ 13 TeV +1395296 . Measurement of an excess in the yield of $J/\psi$ at very low $p_{\rm T}$ in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1410144 . Charge-dependent flow and the search for the chiral magnetic wave in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV +1410589 . Centrality dependence of the charged-particle multiplicity density at midrapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV +1411084 ! Multi-strange baryon production in p-Pb collisions at $\sqrt{s_\mathbf{NN}}=5.02$ TeV +1411653 . Multipion Bose-Einstein correlations in pp,p -Pb, and Pb-Pb collisions at energies available at the CERN Large Hadron Collider +1415274 . Multiplicity dependence of charged pion, kaon, and (anti)proton production at large transverse momentum in p-Pb collisions at $\mathbf{\sqrt{{\textit s}_{\rm NN}}}$ = 5.02 TeV +1418181 . Production of K$^{*}$ (892)$^{0}$ and $\phi $ (1020) in p–Pb collisions at $\sqrt{s_{{\text {NN}}}}$ = 5.02 TeV +1419244 . Anisotropic flow of charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV +1419249 X Particle identification in ALICE: a Bayesian approach +1423072 . Measurement of D-meson production versus multiplicity in p-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=5.02 $ TeV +1426826 . Centrality dependence of $\mathbf{\psi}$(2S) suppression in p-Pb collisions at $\mathbf{\sqrt{{\textit s}_{\rm NN}}}$ = 5.02 TeV +1427026 . Centrality dependence of charged jet production in p–Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 5.02 TeV +1427723 . Measurement of transverse energy at midrapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV +1452590 . Correlated event-by-event fluctuations of flow harmonics in Pb-Pb collisions at $\sqrt{s_{_{\rm NN}}}=2.76$ TeV +1456145 . Pseudorapidity dependence of the anisotropic flow of charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV +1464839 . Measurement of azimuthal correlations of D mesons and charged particles in pp collisions at $\sqrt{s}=7$ TeV and p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV +1465513 ! $D$-meson production in $p$-Pb collisions at $\sqrt{s_{\rm NN}}=$5.02 TeV and in pp collisions at $\sqrt{s}=$7 TeV +1466626 . Elliptic flow of electrons from heavy-flavour hadron decays at mid-rapidity in Pb-Pb collisions at $ \sqrt{{\mathrm{s}}_{\mathrm{NN}}}=2.76 $ TeV +1471285 . Higher harmonic flow coefficients of identified hadrons in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1471838 ! Enhanced production of multi-strange hadrons in high-multiplicity proton-proton collisions +1472319 . J/$\psi$ suppression at forward rapidity in Pb-Pb collisions at $\mathbf{\sqrt{s_{{\rm NN}}} = 5.02}$ TeV +1483164 . Jet-like correlations with neutral pion triggers in pp and central Pb–Pb collisions at 2.76 TeV +1486391 . Measurement of electrons from beauty-hadron decays in p-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ TeV and Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV +1487545 . Anomalous evolution of the near-side jet peak shape in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1487546 . Evolution of the longitudinal and azimuthal structure of the near-side jet peak in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 2.76$ TeV +1487727 . Measurement of the production of high-$p_{\rm T}$ electrons from heavy-flavour hadron decays in Pb-Pb collisions at $\mathbf{\sqrt{\it s_{\rm{NN}}}}$ = 2.76 TeV +1491202 . Determination of the event collision time with the ALICE detector at the LHC +1496634 . W and Z boson production in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV +1507090 ! Centrality dependence of the pseudorapidity density distribution for charged particles in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV +1507157 ! Insight into particle production mechanisms via angular correlations of identified particles in pp collisions at $\sqrt{\mathrm{s}}=7$  TeV +1510878 . Production of $\Sigma(1385)^{\pm}$ and $\Xi(1530)^{0}$ in p-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV +1511864 . K$^{*}(892)^{0}$ and $\phi(1020)$ meson production at high transverse momentum in pp and Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 2.76 TeV +1511865 . Energy dependence of forward-rapidity $\mathrm {J}/\psi $ and $\psi \mathrm {(2S)}$ production in pp collisions at the LHC +1511870 . Measurement of D-meson production at mid-rapidity in pp collisions at ${\sqrt{s}=7}$  TeV +1512107 . First measurement of jet mass in Pb–Pb and p–Pb collisions at the LHC +1512110 . Production of ${\pi ^0}$ and $\eta $ mesons up to high transverse momentum in pp collisions at 2.76 TeV +1512297 . Production of muons from heavy-flavour hadron decays in p-Pb collisions at $\mathbf{\sqrt{{\textit s}_{NN}} = 5.02}$ TeV +1512303 . Azimuthally differential pion femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=2.76$ TeV +1512772 . Flow dominance and factorization of transverse momentum correlations in Pb-Pb collisions at the LHC +1589286 . J/$\psi$ production as a function of charged-particle pseudorapidity density in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV +1599396 . Linear and non-linear flow modes in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV +1599554 . Measuring K$^0_{\rm S}$K$^{\rm \pm}$ interactions using Pb-Pb collisions at ${\sqrt{s_{\rm NN}}=2.76}$ TeV +1608612 . $D$-meson azimuthal anisotropy in midcentral Pb-Pb collisions at $\mathbf{\sqrt{s_{\rm NN}}=5.02}$ TeV +1610453 . Searches for transverse momentum dependent flow vector fluctuations in Pb-Pb and p-Pb collisions at the LHC +1611301 . Measurement of deuteron spectra and elliptic flow in Pb–Pb collisions at $\sqrt{s_{\mathrm {NN}}}$ = 2.76 TeV at the LHC +1614477 ! Charged-particle multiplicity distributions over a wide pseudorapidity range in proton-proton collisions at $\sqrt{s}=$ 0.9, 7, and 8 TeV +1620477 . $\pi ^{0}$ and $\eta $ meson production in proton-proton collisions at $\sqrt{s}=8$ TeV +1621591 . Systematic studies of correlations between different order flow harmonics in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1621809 . Kaon femtoscopy in Pb-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 2.76 TeV +1622554 X The ALICE Transition Radiation Detector: construction, operation, and performance +1623558 . Constraining the magnitude of the Chiral Magnetic Effect with Event Shape Engineering in Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}$ = 2.76 TeV +1623907 . J/$\psi$ elliptic flow in Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}=5.02$ TeV +1624550 . Search for collectivity with azimuthal J/$\psi$-hadron correlations in high multiplicity p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 and 8.16 TeV +1625294 . Production of deuterons, tritons, $^{3}$He nuclei and their antinuclei in pp collisions at $\mathbf{\sqrt{{\textit s}}}$ = 0.9, 2.76 and 7 TeV +1631788 . Production of $^{4}$He and $^{4}\overline{\textrm{He}}$ in Pb-Pb collisions at $\sqrt{s_{\mathrm{NN}}}$ = 2.76 TeV at the LHC +1632046 . Longitudinal asymmetry and its effect on pseudorapidity distributions in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1639439 . Measurement of Z$^0$-boson production at large rapidities in Pb-Pb collisions at $\sqrt{s_{\rm NN}}=5.02$ TeV +1642729 . First measurement of $\Xi_{\rm c}^0$ production in pp collisions at $\mathbf{\sqrt{s}}$ = 7 TeV +1643642 . Constraints on jet quenching in p-Pb collisions at $\mathbf{\sqrt{s_{NN}}}$ = 5.02 TeV measured by the event-activity dependence of semi-inclusive hadron-jet distributions +1644609 . Relative particle yield fluctuations in Pb-Pb collisions at ${\mathbf{\sqrt{s_{\rm NN}}=2.76}}$ TeV +1645239 . $\Lambda_{\rm c}^+$ production in pp collisions at $\sqrt{s} = 7$ TeV and in p-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV +1649235 . Neutral pion and $\eta$ meson production in p-Pb collisions at $\sqrt{s_\mathrm{NN}} = 5.02$ TeV +1652829 . Prompt and non-prompt $\hbox {J}/\psi $ production and nuclear modification at mid-rapidity in p–Pb collisions at $\mathbf{\sqrt{{ s}_{\text {NN}}}= 5.02}$  TeV +1657384 ! Transverse momentum spectra and nuclear modification factors of charged particles in pp, p-Pb and Pb-Pb collisions at the LHC +1662651 . Neutral pion and $\eta$ meson production at mid-rapidity in Pb-Pb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1664312 . Direct photon production at low transverse momentum in proton-proton collisions at $\mathbf{\sqrt{s}=2.76}$ and 8 TeV +1664538 . Azimuthally-differential pion femtoscopy relative to the third harmonic event plane in Pb-Pb collisions at $\mathbf{\sqrt{\textit{s}_{_{\rm NN}}}}$ = 2.76 TeV +1666817 . Energy dependence and fluctuations of anisotropic flow in Pb-Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ and 2.76 TeV +1669805 . $\phi$ meson production at forward rapidity in Pb-Pb collisions at $\sqrt{s_\mathrm{NN}}=2.76$ TeV +1669819 ! Measurement of D$^0$, D$^+$, D$^{*+}$ and D$^+_{\rm s}$ production in Pb-Pb collisions at $\mathbf{\sqrt{s_{\rm NN}}}= 5.02$ TeV +1671792 . Anisotropic flow in Xe-Xe collisions at $\mathbf{\sqrt{s_{\rm{NN}}} = 5.44}$ TeV +1672756 ! Centrality and pseudorapidity dependence of the charged-particle multiplicity density in Xe-Xe collisions at $\sqrt{s_{\rm NN}}$ = 5.44 TeV +1672765 . Two particle differential transverse momentum and number density correlations in p-Pb and Pb-Pb at the LHC +1672788 . Dielectron and heavy-quark production in inelastic and high-multiplicity proton-proton collisions at $\sqrt{s_{\rm NN}}$ = 13 TeV +1672789 ! Direct photon elliptic flow in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1672790 . Transverse momentum spectra and nuclear modification factors of charged particles in Xe-Xe collisions at $\sqrt{s_{\rm NN}}$ = 5.44 TeV +1672792 . Dielectron production in proton-proton collisions at $ \sqrt{s}=7 $ TeV +1672798 . $\Upsilon$ suppression at forward rapidity in Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 5.02 TeV +1672800 . Inclusive J/$\psi$ production in Xe–Xe collisions at $\sqrt{s_{\rm NN}}$ = 5.44 TeV +1672801 . Measurement of the inclusive J/ $\psi $ polarization at forward rapidity in pp collisions at $\mathbf {\sqrt{s} = 8}$  TeV +1672806 . Suppression of $\Lambda(1520)$ resonance production in central Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1672807 . Inclusive J/$\psi$ production at forward and backward rapidity in p-Pb collisions at $\sqrt{s_{\rm NN}}$ = 8.16 TeV +1672811 . Measurements of low-$p_{\rm T}$ electrons from semileptonic heavy-flavour hadron decays at mid-rapidity in pp and Pb-Pb collisions at $\mathbf{\sqrt{{\it s}_\mathrm{NN}}}$ = 2.76 TeV +1672812 . Azimuthal anisotropy of heavy-flavour decay electrons in p-Pb collisions at $ \sqrt{s_{\rm NN}}$ = 5.02 TeV +1672822 ! Anisotropic flow of identified particles in Pb-Pb collisions at $ {\sqrt{s}}_{\mathrm{NN}}=5.02 $ TeV +1672860 . Production of the $\rho$(770)${^{0}}$ meson in pp and Pb-Pb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1672884 . Particle identification studies with a full-size 4-GEM prototype for the ALICE TPC upgrade +1672944 ? Analysis of the apparent nuclear modification in peripheral Pb-Pb collisions at 5.02 TeV +1675759 . p-p, p-$\Lambda$ and $\Lambda$-$\Lambda$ correlations studied via femtoscopy in pp reactions at $\sqrt{s}$ = 7 TeV +1680638 . Measurement of dielectron production in central Pb-Pb collisions at $\sqrt{{\textit{s}}_{\mathrm{NN}}}$ = 2.76 TeV +1682990 . Medium modification of the shape of small-radius jets in central Pb-Pb collisions at $\sqrt{s_{\mathrm {NN}}} = 2.76\,\rm{TeV}$ +1684320 . Multiplicity dependence of light-flavor hadron production in pp collisions at $\sqrt{s}$ = 7 TeV +1693305 . Energy dependence of exclusive $J/\psi$ photoproduction off protons in ultra-peripheral p-Pb collisions at $\sqrt{s_{\rm{NN}}}$ = 5.02 TeV +1693308 . Charged jet cross section and fragmentation in proton-proton collisions at $\sqrt{s}$ = 7 TeV +1695028 . Measuring K$^0_{\rm S}$K$^{\rm{\pm}}$ interactions using pp collisions at $\sqrt{s}=7$ TeV +1695334 . Event-shape engineering for the D-meson elliptic flow in mid-central Pb-Pb collisions at $\sqrt{s_{\rm NN}} =5.02$ TeV +1696315 . $\Lambda_\mathrm{c}^+$ production in Pb-Pb collisions at $\sqrt{s_{\rm NN}} = 5.02$ TeV diff --git a/doc/rivet-coverage-atlas.rank b/doc/rivet-coverage-atlas.rank --- a/doc/rivet-coverage-atlas.rank +++ b/doc/rivet-coverage-atlas.rank @@ -1,778 +1,807 @@ -1228823 X Readiness of the ATLAS Liquid Argon Calorimeter for LHC Collisions -1244611 X Drift Time Measurement in the ATLAS Liquid Argon Electromagnetic Calorimeter using Cosmic Muons -1249427 . Charged-particle multiplicities in $pp$ interactions at $\sqrt{s}$ = 900 GeV measured with the ATLAS detector at the LHC -1262789 X The ATLAS Inner Detector commissioning and calibration -1267853 X The ATLAS Simulation Infrastructure -1268564 X Performance of the ATLAS Detector using First Collision Data -1275998 X Commissioning of the ATLAS Muon Spectrometer with Cosmic Rays -1282535 X Readiness of the ATLAS Tile Calorimeter for LHC collisions -1285236 ? Search for New Particles in Two-Jet Final States in 7 TeV Proton-Proton Collisions with the ATLAS Detector at the LHC -1294880 ? Search for Quark Contact Interactions in Dijet Angular Distributions in $pp$ Collisions at $\sqrt{s}$ = 7 TeV Measured with the ATLAS Detector -1295801 . Measurement of inclusive jet and dijet cross sections in proton-proton collisions at 7 TeV centre-of-mass energy with the ATLAS detector -1299479 . Measurement of the $W\to l\nu$ and $Z/\gamma* \to ll$ production cross sections in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1309851 ? Observation of a Centrality-Dependent Dijet Asymmetry in Lead-Lead Collisions at $\sqrt{s_{NN}}$ = 2.76 TeV with the ATLAS Detector at the LHC -1309895 . Measurement of underlying event characteristics using charged particles in $pp$ collisions at $\sqrt{s}$ = 900 GeV and 7 TeV with the ATLAS Detector -1311111 X Studies of the performance of the ATLAS detector using cosmic-ray muons -1312983 . Measurement of the top quark-pair production cross section with ATLAS in pp collisions at $\sqrt{s}$ = 7 TeV -1317794 . Charged-particle multiplicities in pp interactions measured with the ATLAS detector at the LHC -1318459 . Measurement of the inclusive isolated prompt photon cross section in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1318460 ? Search for Diphoton Events with Large Missing Transverse Energy in 7 TeV Proton-Proton Collisions with the ATLAS Detector -1318461 . Measurement of the production cross section for W bosons in association with jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1318462 . Measurement of the centrality dependence of $J/{\psi}$ yields and observation of Z production in lead-lead collisions with the ATLAS detector at the LHC -1319028 . Study of Jet Shapes in Inclusive Jet Production in pp Collisions at $\sqrt{s}$ = 7 TeV using the ATLAS Detector -1323586 X Luminosity Determination in $pp$ Collisions at $\sqrt{s}$ = 7 TeV using the ATLAS Detector at the LHC -1326040 ? Search for Massive Long-lived Highly Ionizing Particles with the ATLAS detector at the LHC -1328281 ? Search for supersymmetry using final states with one lepton, jets, and missing transverse momentum with the ATLAS detector in $\sqrt{s}$=7 TeV pp collisions -1328666 . Measurement of Dijet Azimuthal Decorrelations in pp Collisions at √s = 7 TeV -1332220 . Search for squarks and gluinos using final states with jets and missing transverse momentum with the ATLAS detector in √s = 7 TeV proton-proton collisions -1334564 ? Search for high-mass states with one lepton plus missing transverse momentum in proton-proton collisions at √s = 7 TeV with the ATLAS detector -1334591 . Measurements of underlying-event properties using neutral and charged particles in pp collisions at $\sqrt{s}$ = 900 GeV and $\sqrt{s}$ = 7 TeV with the ATLAS detector at the LHC -1335111 ? Search for Stable Hadronising Squarks and Gluinos at the ATLAS Experiment at the LHC -1336252 . Measurement of the W charge asymmetry in the W →μν decay mode in pp collisions at √ s = 7 TeV with the ATLAS detector -1337270 ? A search for new physics in dijet mass and angular distributions in pp collisions at √s = 7 TeV measured with the ATLAS detector -1337773 ? Search for supersymmetry in pp collisions at √s = 7 TeV in final states with missing transverse momentum and b-jets -1341242 ? Search for a heavy particle decaying into an electron and a muon with the ATLAS detector in $\sqrt{s}$ = 7 TeV pp collisions at the LHC -1341563 ? Search for an excess of events with an identical flavour lepton pair and significant missing transverse momentum in $\sqrt{s}$ = 7 TeV proton-proton collisions with the ATLAS detector -1341564 . Search for supersymmetric particles in events with lepton pairs and large missing transverse momentum in √s = 7 TeV proton-proton collisions at the ATLAS experiment -1341565 ? Search for high mass dilepton resonances in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS experiment -1342115 . Measurement of the Inelastic Proton-Proton Cross-Section at $\sqrt{s}$=7 TeV with the ATLAS Detector -1345755 . Measurement of the differential cross-sections of inclusive, prompt and non-prompt $J/\psi$ production in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1347252 ? Search for Contact Interactions in Dimuon Events from pp Collisions at $\sqrt{s}$ = 7 TeV with the ATLAS Detector -1347253 . Search for pair production of first or second generation leptoquarks in proton-proton collisions at $\sqrt{s}$=7 TeV using the ATLAS detector at the LHC -1347441 . Measurement of the $W^{+}W^{-}$ cross section in $\sqrt{s}$ = 7 TeV pp collisions with ATLAS -1357549 ? Measurement of W$\gamma$ and Z$\gamma$ production in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS Detector -1359898 X Limits on the production of the Standard Model Higgs Boson in pp collisions at $\sqrt{s}$ =7 TeV with the ATLAS detector -1361244 . Search for Heavy Long-Lived Charged Particles with the ATLAS detector in $pp$ collisions at $\sqrt{s}$ = 7 TeV -1362272 . Measurement of the $\Upsilon(1S)$ Production Cross-Section in pp Collisions at $\sqrt{s}$ = 7 TeV in ATLAS -1362274 ? Search for new phenomena with the monojet and missing transverse momentum signature using the ATLAS detector in $\sqrt{s}$ = 7 TeV proton-proton collisions -1364239 ? Search for Diphoton Events with Large Missing Transverse Energy with 36 pb$^{−1}$ of 7 TeV Proton-Proton Collision Data with the ATLAS Detector -1364240 . Measurement of the isolated diphoton cross section in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1366561 . Measurement of dijet production with a veto on additional central jet activity in pp collisions at $\sqrt{s}$=7 TeV using the ATLAS detector -1367043 . Measurement of multi-jet cross sections in proton-proton collisions at a 7 TeV center-of-mass energy -1367388 . Measurement of the transverse momentum distribution of Z/$\gamma$* bosons in proton-proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1368663 . Properties of jets measured from tracks in proton-proton collisions at center-of-mass energy $\sqrt{s}$ = 7 TeV with the ATLAS detector -1370945 ? Search for neutral MSSM Higgs bosons decaying to $\tau^+ \tau^-$ pairs in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1372424 . Measurement of the inclusive isolated prompt photon cross-section in pp collisions at $\sqrt{s}$= 7 TeV using 35 pb$^{-1}$ of ATLAS data -1372515 ? Inclusive search for same-sign dilepton signatures in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1373671 ? Search for a heavy gauge boson decaying to a charged lepton and a neutrino in 1 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1373936 ? Search for dilepton resonances in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1374371 . Measurement of the $Z \to \tau\tau$ Cross Section with the ATLAS Detector -1376122 . Measurement of the top quark pair production cross section in pp collisions at $\sqrt{s}$ = 7 TeV in dilepton final states with ATLAS -1378671 X Search for the Standard Model Higgs boson in the two photon decay channel with the ATLAS detector at the LHC -1378776 . Measurement of the pseudorapidity and transverse momentum dependence of the elliptic flow of charged particles in lead-lead collisions at $\sqrt{s_{NN}}$ = 2.76 TeV with the ATLAS detector -1378784 . Measurement of the centrality dependence of the charged particle pseudorapidity distribution in lead-lead collisions at $\sqrt{s_{NN}}$ = 2.76 TeV with the ATLAS detector -1379110 . Measurement of the Transverse Momentum Distribution of W Bosons in $pp$ Collisions at $\sqrt{s}$ = 7 TeV with the ATLAS Detector -1379113 ? Search for New Physics in the Dijet Mass Distribution using 1 fb$^-1$ of $pp$ Collision Data at $\sqrt{s}$ = 7 TeV collected by the ATLAS Detector -1379766 . Measurements of the electron and muon inclusive cross-sections in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1379856 . A measurement of the ratio of the W and Z cross sections with exactly one associated jet in pp collisions at $\sqrt(s)$ = 7 TeV with ATLAS -1379857 ? Search for a heavy Standard Model Higgs boson in the channel $H \to ZZ \to l^{+} l^{-}q\overline{q}$ using the ATLAS detector -1379858 X Performance of Missing Transverse Momentum Reconstruction in Proton-Proton Collisions at $\sqrt{s}$ = 7 TeV with ATLAS -1380744 . Measurement of the cross-section for b-jets produced in association with a Z boson at $\sqrt{s}$=7 TeV with the ATLAS detector -1380799 . Measurement of the cross section for the production of a W boson in association with b-jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1381516 ? Search for displaced vertices arising from decays of new heavy particles in 7 TeV pp collisions at ATLAS -1382039 . Measurement of the $W \to \tau \nu_{\tau}$ Cross Section in pp Collisions at $\sqrt{s}$ = 7 TeV with the ATLAS experiment -1382652 ? Search for a heavy neutral particle decaying into an electron and a muon using 1 fb$^-1$ of ATLAS data -1382887 ? Search for a Standard Model Higgs boson in the $H \to ZZ \to l^{+}l^{-}\nu\overline{\nu}$ decay channel with the ATLAS detector -1383262 ? Search for the Higgs boson in the $H \to WW \to l\nu jj$ decay channel in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1384601 ? Search for New Phenomena in $t\overline{t}$ Events With Large Missing Transverse Momentum in Proton-Proton Collisions at $\sqrt{s}$ = 7 TeV with the ATLAS Detector -1384989 . Measurement of the inclusive $W^{\pm}$ and $Z/\gamma$ cross sections in the electron and muon decay channels in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1385704 . Measurement of the jet fragmentation function and transverse profile in proton-proton collisions at a center-of-mass energy of 7 TeV with the ATLAS detector -1385817 X Search for the Standard Model Higgs boson in the decay channel $H \to ZZ^{(*)} \to 4l$ with the ATLAS detector -1386563 . Search for squarks and gluinos using final states with jets and missing transverse momentum with the ATLAS detector in $\sqrt{s}$ = 7 TeV proton-proton collisions -1386593 . Search for supersymmetry in final states with jets, missing transverse momentum and one isolated lepton in $\sqrt{s}$ = 7 TeV pp collisions using 1 fb$^{-1}$ of ATLAS data -1386708 . Measurement of the inclusive and dijet cross-sections of b-jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1388759 X Performance of the ATLAS Trigger System in 2010 -1389646 . Search for new phenomena in final states with large jet multiplicities and missing transverse momentum using $\sqrt{s}$=7 TeV pp collisions with the ATLAS detector -1390100 ? Search for Massive Colored Scalars in Four-Jet Final States in $\sqrt{s}$=7 TeV proton-proton collisions with the ATLAS Detector -1390635 X Electron performance measurements with the ATLAS detector using the 2010 LHC proton-proton collision data -1392977 ? Measurement of the ZZ production cross section and limits on anomalous neutral triple gauge couplings in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1394357 . Searches for supersymmetry with the ATLAS detector using final states with two leptons and missing transverse momentum in $\sqrt{s}$ = 7 TeV proton-proton collisions -1394359 X A study of the material in the ATLAS inner detector using secondary hadronic interactions -1395183 ? Search for strong gravity signatures in same-sign dimuon final states using the ATLAS detector at the LHC -1396511 . $K^{0}_{s}$ and $\Lambda$ production in $pp$ interactions at $\sqrt{s}$ = 0.9 and 7 TeV measured with the ATLAS detector at the LHC -1398384 . Measurement of the production cross section for $Z/\gamma^*$ in association with jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1399589 . Search for Diphoton Events with Large Missing Transverse Momentum in 1 fb$^{-1}$ of 7 TeV Proton-Proton Collision Data with the ATLAS Detector -1401254 . Measurement of the W$^\pm$Z production cross section and limits on anomalous triple gauge couplings in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1406291 ? Search for Extra Dimensions using diphoton events in 7 TeV proton-proton collisions with the ATLAS detector -1406679 X Search for the Higgs boson in the $H \to WW^{(*)} \to l^{+}\nu l^{-}\bar\nu$ decay channel in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1407756 ? Search for production of resonant states in the photon-jet mass distribution using pp collisions at $\sqrt{s}$ = 7 TeV collected by the ATLAS detector -1407848 ? Search for scalar bottom pair production with the ATLAS detector in pp Collisions at $\sqrt{s}$ = 7 TeV -1407975 . Measurement of $D^{*\pm}$ meson production in jets from pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1407976 ? Search for contact interactions in dilepton events from pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1409128 ? Search for first generation scalar leptoquarks in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1409444 ? Observation of a new $\chi_b$ state in radiative transitions to $\Upsilon(1S)$ and $\Upsilon(2S)$ at ATLAS -1410048 ? Search for heavy vector-like quarks coupling to light quarks in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1410510 . Measurement of inclusive jet and dijet production in pp collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1410621 X Jet energy measurement with the ATLAS detector in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1411728 ? Search for anomalous production of prompt like-sign muon pairs and constraints on physics beyond the Standard Model with the ATLAS detector -1411893 . Study of jets produced in association with a W boson in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1415176 . Measurement of the top quark pair production cross-section with ATLAS in the single lepton channel -1416198 . Rapidity gap cross sections measured with the ATLAS detector in pp collisions at $\sqrt{s}$ = 7 TeV -1416376 ? Search for excited leptons in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1419706 ? Search for decays of stopped, long-lived particles from 7 TeV pp collisions with the ATLAS detector -1421948 X Search for the Standard Model Higgs boson in the diphoton decay channel with 4.9 fb$^{-1}$ of pp collisions at $\sqrt{s}$=7 TeV with ATLAS -1421964 X Combined search for the Standard Model Higgs boson using up to 4.9 fb$^{-1}$ of pp collision data at $\sqrt{s}$ = 7 TeV with the ATLAS detector at the LHC -1421965 ? Search for the Standard Model Higgs boson in the decay channel $H \to ZZ^{(*)} \to 4l$ with 4.8 fb$^{-1}$ of pp collisions at $\sqrt{s}$=7 TeV with ATLAS -1424292 ? Search for Pair Production of a Heavy Up-Type Quark Decaying to a W Boson and a b Quark in the lepton+jets Channel with the ATLAS Detector -1424639 ? Search for pair-produced heavy quarks decaying to Wq in the two-lepton channel at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1426397 ? Search for anomaly-mediated supersymmetry breaking with the ATLAS detector based on a disappearing-track signature in pp collisions at $\sqrt{s}$ = 7 TeV -1426437 . Measurement of the cross section for top-quark pair production in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector using final states with two high-pt leptons -1427191 ? Search for same-sign top-quark production and fourth-generation down-type quarks in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1428304 ? Search for Down-Type Fourth Generation Quarks with the ATLAS Detector in Events with One Lepton and Hadronically Decaying W Bosons -1428898 . Measurement of the azimuthal ordering of charged hadrons with the ATLAS detector -1428899 ? Search for FCNC single top-quark production at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1429320 ? Search for new particles decaying to ZZ using final states with leptons and jets with the ATLAS detector in $\sqrt{s}$ = 7 Tev proton-proton collisions -1429910 X Single hadron response measurement and calorimeter jet energy scale uncertainty with the ATLAS detector at the LHC -1429911 ? Search for a light Higgs boson decaying to long-lived weakly-interacting particles in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1430964 . Measurement of the polarisation of W bosons produced with large transverse momentum in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS experiment -1432077 . Measurement of the azimuthal anisotropy for charged particle production in $\sqrt{s_{NN}}$ = 2.76 TeV lead-lead collisions with the ATLAS detector -1432090 . Forward-backward correlations and charged-particle azimuthal distributions in $pp$ interactions using the ATLAS detector -1432142 . Measurement of the production cross section of an isolated photon associated with jets in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1432152 ? Search for second generation scalar leptoquarks in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1432681 . Measurement of inclusive two-particle angular correlations in pp collisions with the ATLAS detector at the LHC -1433203 X Determination of the strange quark density of the proton from ATLAS measurements of the $W \to l\nu$ and $Z \to ll$ cross sections -1433228 X Observation of spin correlation in $t\overline{t}$ events from $pp$ collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1433342 . Measurement of the charge asymmetry in top quark pair production in $pp$ collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1433940 . Jet mass and substructure of inclusive jets in $\sqrt{s}$ = 7 TeV pp collisions with the ATLAS experiment -1434279 . Measurement of $t\overline{t}$ production with a veto on additional central jet activity in pp collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1434837 ? Search for heavy neutrinos and right-handed W bosons in events with two leptons and jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1435115 X Measurement of the top quark mass with the template method in the top antitop $\to$ lepton + jets channel using ATLAS data -1435122 ? Search for gluinos in events with two same-sign leptons, jets and missing transverse momentum with the ATLAS detector in pp collisions at $\sqrt{s}$ = 7 TeV -1435578 . Search for supersymmetry in pp collisions at $\sqrt{s}$ = 7 TeV in final states with missing transverse momentum and b-jets with the ATLAS detector -1435611 . Measurement of the WW cross section in $\sqrt{s}$ = 7 TeV pp collisions with the ATLAS detector and limits on anomalous gauge couplings -1435993 . Search for events with large missing transverse momentum, jets, and at least two tau leptons in 7 TeV proton-proton collision data with the ATLAS detector -1436105 ? Search for a fermiophobic Higgs boson in the diphoton decay channel with the ATLAS detector -1437212 X Search for the decay $B_s^0 \to \mu^+ \mu^-$ with the ATLAS detector -1439240 ? Search for Pair Production of a New b′ Quark that Decays into a Z Boson and a Bottom Quark with the ATLAS Detector -1439651 ? Search for resonant WZ production in the $WZ \to l\nu l'l'$ channel in $\sqrt{s}$ = 7 TeV pp collisions with the ATLAS detector -1440776 ? Search for charged Higgs bosons decaying via $H^{\pm} \to \tau \nu$ in $t\bar{t}$ events using pp collision data at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1441890 ? Search for supersymmetry with jets, missing transverse momentum and at least one hadronically decaying tau lepton in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1442820 ? Searches for TeV-scale Gravity Signatures in Final States with Leptons and Jets with the ATLAS Detector at $\sqrt{s}$ = 7 TeV -1444069 . Search for supersymmetry in events with three leptons and missing transverse momentum in $\sqrt{s}$ = 7 TeV pp collisions with the ATLAS detector -1444877 ? Search for scalar top quark pair production in natural gauge mediated supersymmetry models with the ATLAS detector in pp collisions at $\sqrt{s}$ = 7 TeV -1445243 ? Measurement of $\tau$ polarization in $W \to \tau\nu$ decays with the ATLAS detector in pp collisions at $\sqrt{s}$ = 7 TeV -1446102 ? Search for lepton flavour violation in the $e\mu$ continuum with the ATLAS detector in $\sqrt{s}$ = 7 TeV pp collisions at the LHC -1446501 ? Search for tb resonances in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1447729 . Measurement of the top quark pair cross section with ATLAS in pp collisions at $\sqrt{s}$ = 7 TeV using final states with an electron or a muon and a hadronically decaying $\tau$ lepton -1448394 . Measurement of the W boson polarization in top quark decays with the ATLAS detector -1448436 . Measurement of $W\gamma$ and $Z\gamma$ production cross sections in pp collisions at $\sqrt{s}$ = 7 TeV and limits on anomalous triple gauge couplings with the ATLAS detector -1449045 . Measurement of the t-channel single top-quark production cross section in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1451704 ? A search for $t\bar{t}$ resonances with the ATLAS detector in 2.05 fb$^{-1}$ of proton-proton collisions at $\sqrt(s)$ = 7 TeV -1452117 . Evidence for the associated production of a W boson and a top quark in ATLAS at $\sqrt{s}$ = 7 TeV -1453197 ? Search for a Standard Model Higgs boson in the $H \to ZZ \to l^+l^-\nu\bar{\nu}$ decay channel using 4.7 fb$^{-1}$ of $\sqrt{s}$ = 7 TeV data with the ATLAS detector -1454106 ? A search for flavour changing neutral currents in top-quark decays in pp collision data collected with the ATLAS detector at $\sqrt{s}$ = 7 TeV -1454768 ? Search for the Standard Model Higgs boson in the $H \to WW^{(*)} \to l\nu l\nu$ decay mode with 4.7 fb$^{-1}$ of ATLAS data at $\sqrt{s}$ = 7 TeV -1455386 . Hunt for new phenomena using large jet multiplicities and missing transverse momentum with ATLAS in 4.7 fb$^{-1}$ of $\sqrt{s}$ = 7 TeV proton-proton collisions -1455435 . Measurement of event shapes at large momentum transfer with the ATLAS detector in pp collisions at $\sqrt{s}$ = 7 TeV -1455797 X Search for a Standard Model Higgs boson in the mass range 200-600 GeV in the $H \to ZZ \to l^+l^-q\bar{q}$ decay channel with the ATLAS detector -1456046 . Measurement of the b-hadron production cross section using decays to $D^{*+}\mu^- X$ final states in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1458234 . ATLAS measurements of the properties of jets for boosted particle searches -1458256 ? Search for the Standard Model Higgs boson in the $H \to \tau^+ \tau^-$ decay mode in $\sqrt{s}$ = 7 TeV pp collisions with ATLAS -1458259 ? Search for the Higgs boson in the $H \to WW \to l\nu jj$ decay channel at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1459148 ? Search for the Standard Model Higgs boson produced in association with a vector boson and decaying to a b-quark pair with the ATLAS detector -1459149 X Combined search for the Standard Model Higgs boson in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1461453 X Measurement of the $\Lambda_b^0$ lifetime and mass in the ATLAS experiment -1461455 ? A search for $t\bar{t}$ resonances in lepton+jets events with highly boosted top quarks collected in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1463140 ? Search for top and bottom squarks from gluino pair production in final states with missing transverse energy and at least three b-jets with the ATLAS detector -1463980 . Measurements of top quark pair relative differential cross-sections with ATLAS in pp collisions at $\sqrt{s}$ = 7 TeV -1470625 ? Search for magnetic monopoles in $\sqrt{s}$ = 7 TeV pp collisions with the ATLAS detector -1470847 . Measurement of charged-particle event shape variables in $\sqrt{s}$ = 7 TeV proton-proton interactions with the ATLAS detector -1471031 X Observation of a new particle in the search for the Standard Model Higgs boson with the ATLAS detector at the LHC -1471489 . Underlying event characteristics and their dependence on jet size of charged-particle jet events in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1471490 ? Time-dependent angular analysis of the decay $B_s^0 \to J/\psi \phi$ and extraction of $\Delta \Gamma_s$ and the CP-violating weak phase $\phi_s$ by ATLAS -1471906 . Search for squarks and gluinos with the ATLAS detector in final states with jets and missing transverse momentum using 4.7 fb$^{-1}$ of $\sqrt{s}$ = 7 TeV proton-proton collision data -1472179 . Measurement of W$^{\pm}$Z production in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1472180 . Search for a supersymmetric partner to the top quark in final states with jets and missing transverse momentum at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1472424 . Measurement of the jet radius and transverse momentum dependence of inclusive jet suppression in lead-lead collisions at $\sqrt{s_{NN}}$ = 2.76 TeV with the ATLAS detector -1472814 ? Search for direct top squark pair production in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt{s}$ = 7 TeV pp collisions using 4.7 fb$^{-1}$ of ATLAS data -1473036 ? Search for new phenomena in the $WW \to l\nu l' \nu'$ final state in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1473037 ? Search for direct slepton and gaugino production in final states with two leptons and missing transverse momentum with the ATLAS detector in pp collisions at $\sqrt{s}$ = 7 TeV -1473202 ? Search for direct production of charginos and neutralinos in events with three leptons and missing transverse momentum in $\sqrt{s}$ = 7 TeV pp collisions with the ATLAS detector -1473993 ? Search for light scalar top-quark pair production in final states with two leptons with the ATLAS detector in $\sqrt{s}$ = 7 TeV proton-proton collisions -1474366 . Further search for supersymmetry at $\sqrt{s}$ = 7 TeV in final states with jets, missing transverse momentum and isolated leptons with the ATLAS detector -1474599 . Measurement of the flavour composition of dijet events in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1475317 . Measurements of the pseudorapidity dependence of the total transverse energy in proton-proton collisions at $\sqrt{s}$ = 7 TeV with ATLAS -1476109 ? Search for diphoton events with large missing transverse momentum in 7 TeV proton-proton collision data with the ATLAS detector -1477023 ? Search for light top squark pair production in final states with leptons and b-jets with the ATLAS detector in $\sqrt{s}$ = 7 TeV proton-proton collisions -1477841 ? Search for high-mass resonances decaying to dilepton final states in pp collisions at a center-of-mass energy of 7 TeV with the ATLAS detector -1479051 . Search for a heavy top-quark partner in final states with two leptons with the ATLAS detector at the LHC -1479237 ? ATLAS search for a heavy gauge boson decaying to a charged lepton and a neutrino in pp collisions at $\sqrt{s}$ = 7 TeV -1479246 ? Search for dark matter candidates and large extra dimensions in events with a photon and missing transverse momentum in pp collision data at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1482260 ? Search for resonant top quark plus jet production in $t\bar{t}$+jets events with the ATLAS detector in pp collisions at $\sqrt{s}$=7  TeV -1482535 ? Search for displaced muonic lepton jets from light Higgs boson decay in proton-proton collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1483273 ? Search for Supersymmetry in Events with Large Missing Transverse Momentum, Jets, and at Least One Tau Lepton in 7 TeV Proton-Proton Collision Data with the ATLAS Detector -1483610 ? ATLAS search for new phenomena in dijet mass and angular distributions using pp collisions at $\sqrt{s}$=7 TeV -1484202 ? Search for direct chargino production in anomaly-mediated supersymmetry breaking models based on a disappearing-track signature in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1484320 . Measurement of $W^+W^-$ production in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS detector and limits on anomalous WWZ and WW$_{\gamma}$ couplings -1485262 . Search for R-parity-violating supersymmetry in events with four or more leptons in $\sqrt{s}$ = 7 TeV pp collisions with the ATLAS detector -1485263 ? Search for dark matter candidates and large extra dimensions in events with a jet and missing transverse momentum with the ATLAS detector -1485267 ? Search for anomalous production of prompt like-sign lepton pairs at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1485558 ? Search for pair-produced massive coloured scalars in four-jet final states with the ATLAS detector in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1485840 ? Search for pair production of massive particles decaying into three quarks with the ATLAS detector in $\sqrt{s}$ = 7 TeV pp collisions at the LHC -1485847 ? Search for doubly-charged Higgs bosons in like-sign dilepton final states at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1489152 ? Search for the neutral Higgs bosons of the Minimal Supersymmetric Standard Model in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1489348 ? Search for pair production of heavy top-like quarks decaying to a high-$p_T$ W boson and a b quark in the lepton plus jets final state at $\sqrt{s}$=7 TeV with the ATLAS detector -1489561 . Measurement of angular correlations in Drell-Yan lepton pairs to probe $Z/\gamma*$ boson transverse momentum at $\sqrt{s}$=7 TeV with the ATLAS detector -1489810 X Jet energy resolution in proton-proton collisions at $\sqrt{s}$ = 7 TeV recorded in 2010 with the ATLAS detector -1489819 . Measurement of Z boson Production in Pb+Pb Collisions at $\sqrt{s_{NN}}$=2.76 TeV with the ATLAS Detector -1489825 ? A search for high-mass resonances decaying to $\tau^+ \tau^-$ in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1490895 ? Search for long-lived, heavy particles in final states with a muon and multi-track displaced vertex in proton-proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1491195 ? Search for Extra Dimensions in diphoton events using proton-proton collisions recorded at $\sqrt{s}$ = 7 TeV with the ATLAS detector at the LHC -1492085 ? Search for supersymmetry in events with photons, bottom quarks, and missing transverse momentum in proton-proton collisions at a centre-of-mass energy of 7 TeV with the ATLAS detector -1492086 ? Search for contact interactions and large extra dimensions in dilepton events from pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1492197 ? Searches for heavy long-lived sleptons and R-Hadrons with the ATLAS detector in pp collisions at $\sqrt{s}$ = 7 TeV -1493037 . Measurement of isolated-photon pair production in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1493242 ? Search for resonances decaying into top-quark pairs using fully hadronic decays in pp collisions with ATLAS at $\sqrt{s}$ = 7 TeV -1496097 . Measurement of ZZ production in pp collisions at $\sqrt{s}$=7 TeV and limits on anomalous ZZZ and ZZ$\gamma$ couplings with the ATLAS detector -1496448 . Search for new phenomena in events with three charged leptons at $/sqrt{s}$ = 7 TeV with the ATLAS detector -1497191 . Measurement of the $t\bar{t}$ production cross section in the tau+jets channel using the ATLAS detector -1497193 . Measurement of Upsilon production in 7 TeV pp collisions at ATLAS -1498104 ? Search for a heavy narrow resonance decaying to $e\mu, e\tau$, or $\mu\tau$ with the ATLAS detector in $\sqrt{s}$ = 7 TeV pp collisions at the LHC -1500087 ? Search for charged Higgs bosons through the violation of lepton universality in $t\bar{t}$ events using pp collision data at $\sqrt{s}$ = 7 TeV with the ATLAS experiment -1501942 ? Observation of Associated Near-side and Away-side Long-range Correlations in $\sqrt{s_{NN}}$=5.02 TeV Proton-lead Collisions with the ATLAS Detector -1502658 ? A search for prompt lepton-jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1502659 ? Multi-channel search for squarks and gluinos in $\sqrt{s}$=7 TeV pp collisions with the ATLAS detector -1503580 ? Search for single b*-quark production with the ATLAS detector at $\sqrt{s}$=7 TeV -1507671 ? Search for long-lived, multi-charged particles in pp collisions at $\sqrt{s}$=7 TeV using the ATLAS detector -1510534 . Measurement of hard double-parton interactions in $W(\to l\nu)$+ 2 jet events at $\sqrt{s}$=7 TeV with the ATLAS detector -1511050 X A Particle Consistent with the Higgs Boson Observed with the ATLAS Detector at the Large Hadron Collider -1513670 . Measurements of $W\gamma$ and $Z\gamma$ production in pp collisions at $\sqrt{s}$= 7 TeV with the ATLAS detector at the LHC -1513671 . Measurement of $k_T$ splitting scales in $W \to l\nu$ events at $\sqrt{s}$=7 TeV with the ATLAS detector -1516003 . Measurement of the cross-section for W boson production in association with b-jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1516976 ? Search for a light charged Higgs boson in the decay channel $H^+ \to c\bar{s}$ in $t\bar{t}$ events using pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1517082 ? Search for WH production with a light Higgs boson decaying to prompt electron-jets in proton-proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1517411 X Improved luminosity determination in pp collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector at the LHC -1523620 X Characterisation and mitigation of beam-induced backgrounds observed in the ATLAS detector during the 2011 proton-proton run -1523621 ? Search for third generation scalar leptoquarks in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1525951 . Measurement with the ATLAS detector of multi-particle azimuthal correlations in p+Pb collisions at $\sqrt{s_{NN}}$=5.02 TeV -1544536 . Measurement of the inclusive jet cross-section in pp collisions at $\sqrt{s}$=2.76 TeV and comparison to the inclusive jet cross-section at $\sqrt{s}$=7 TeV using the ATLAS detector -1544537 ? Search for non-pointing photons in the diphoton and $E_T^{miss}$ final state in $\sqrt{s}$ = 7 TeV proton-proton collisions using the ATLAS detector -1544538 ? Study of heavy-flavor quarks produced in association with top-quark pairs at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1544539 . Measurement of the production cross section of jets in association with a Z boson in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -1544993 ? Search for resonant diboson production in the $WW/WZ \to l\nu jj$ decay channels with the ATLAS detector at $\sqrt{s}$ = 7 TeV -1546811 X Triggers for displaced decays of long-lived neutral particles in the ATLAS detector -1546922 ? A search for $t\bar{t}$ resonances in the lepton plus jets final state with ATLAS using 4.7 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}$ = 7 TeV -1547747 . Measurement of the distributions of event-by-event flow harmonics in lead--lead collisions at $\sqrt{s_{NN}}$=2.76 TeV with the ATLAS detector at the LHC -1548199 . Measurement of the high-mass Drell--Yan differential cross-section in pp collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1559061 . Measurement of the differential cross section of $B^+$ meson production in pp collisions at $\sqrt{s}$ = 7 TeV at ATLAS -1559925 X Evidence for the spin-0 nature of the Higgs boson using ATLAS data -1560320 ? Performance of jet substructure techniques for large-R jets in proton-proton collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1560344 . Measurement of the Azimuthal Angle Dependence of Inclusive Jet Yields in Pb+Pb Collisions at $\sqrt{s_{NN}}$= 2.76 TeV with the ATLAS detector -1560373 . Measurements of Higgs boson production and couplings in diboson final states with the ATLAS detector at the LHC -1562547 . Measurement of the top quark charge in pp collisions at √s = 7 TeV with the ATLAS detector -1563577 . Measurement of jet shapes in top-quark pair events at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1564320 . Measurement of top quark polarization in top-antitop events from proton-proton collisions at √s = 7 TeV using the ATLAS detector -1564586 . Dynamics of isolated-photon plus jet production in pp collisions at √s = 7 TeV with the ATLAS detector -1566954 ? Search for excited electrons and muons in $\sqrt{s}$=8 TeV proton-proton collisions with the ATLAS detector -1568342 ? Search for new phenomena in final states with large jet multiplicities and missing transverse momentum at √s = 8 TeV proton-proton collisions using the ATLAS experiment -1572445 ? Search for direct third-generation squark pair production in final states with missing transverse momentum and two b-jets in √s = 8 TeV pp collisions with the ATLAS detector -1581735 ? Search for Microscopic Black Holes in a Like-sign Dimuon Final State using large Track Multiplicity with the ATLAS detector -1600324 ? Search for new phenomena in photon+jet events collected in proton--proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1600816 ? Search for dark matter in events with a hadronically decaying W or Z boson and missing transverse momentum in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1610180 ? Search for charginos nearly mass-degenerate with the lightest neutralino based on a disappearing-track signature in pp collisions at √s = 8 TeV with the ATLAS detector -1616130 ? Search for long-lived stopped R-hadrons decaying out-of-time with pp collisions using the ATLAS detector -1616400 X Measurement of the mass difference between top and anti-top quarks in pp collisions at √s = 7 TeV using the ATLAS detector -1625660 . Measurement of the inclusive isolated prompt photon cross section in pp collisions at √s = 7 TeV with the ATLAS detector using 4.6 fb$^{-1}$ -1626586 ? Search for Quantum Black-Hole Production in High-Invariant-Mass Lepton+Jet Final States Using Proton–Proton Collisions at √s = 8TeV and the ATLAS Detector -1631400 . Measurement of the top quark pair production charge asymmetry in proton–proton collisions at √ s = 7 TeV using the ATLAS detector -1631701 X Standalone Vertex Finding in the ATLAS Muon Spectrometer -1634809 ? Search for a Multi-Higgs Boson Cascade in $W^+W^− b\bar{b}$ events with the ATLAS detector in pp collisions at √s = 8 TeV -1636207 . Measurement of dijet cross sections in pp collisions at 7 TeV centre−of−mass energy using the ATLAS detector -1642553 . Measurement of the production cross-section of prompt J/$\psi$ mesons in association with a W± boson in pp collisions at √s = 7 TeV with the ATLAS detector -1645451 . Measurement of the electroweak production of dijets in association with a Z-boson and distributions sensitive to vector boson fusion in proton-proton collisions at $\sqrt{s}$ = 8 TeV using the ATLAS detector -1647619 ? Search for Higgs boson decays to a photon and a Z boson in pp collisions at $\sqrt{s}$ = 7 and 8 TeV with the ATLAS detector -1647989 ? Search for invisible decays of a Higgs boson produced in association with a Z boson in ATLAS -1664107 . The differential production cross section of the $\phi$(1020) meson in $\sqrt{s}$ = 7 TeV pp collisions measured with the ATLAS Detector -1664108 . Measurement of the production of a W boson in association with a charm quark in pp collisions at √s = 7 TeV with the ATLAS detector -1665444 ? Search for direct production of charginos and neutralinos in events with three leptons and missing transverse momentum in $\sqrt{s}$ = 8 TeV $pp$ collisions with the ATLAS detector -1666157 . Measurement of event-plane correlations in $\sqrt{s_{NN}}$ = 2.76 TeV lead–lead collisions with the ATLAS detector -1669812 ? Search for direct top-squark pair production in final states with two leptons in pp collisions at $\sqrt{s}$=8 TeV with the ATLAS detector -1670052 ? Search for direct top squark pair production in events with a $Z$ boson, $b$-jets and missing transverse momentum in $\sqrt{s}=8$ TeV $pp$ collisions with the ATLAS detector -1670059 ? Search for direct production of charginos, neutralinos and sleptons in final states with two leptons and missing transverse momentum in $pp$ collisions at $\sqrt{s}$=8 TeV with the ATLAS detector -1670332 . Measurement of the 4$\ell$ Cross Section at the $Z$ Resonance and Determination of the Branching Fraction of $Z\rightarrow 4\ell$ in $pp$ Collisions at $\sqrt{s}$ = 7 and 8 TeV with ATLAS -1670931 ? Search for top quark decays $t \rightarrow qH$ with $H \to \gamma\gamma$ using the ATLAS detector -1692373 ? Search for dark matter in events with a $Z$ boson and missing transverse momentum in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -1693168 X Measurement of the parity-violating asymmetry parameter $\alpha_b$ and the helicity amplitudes for the decay $\Lambda_b^0\to J/\psi\Lambda^0$ with the ATLAS detector -1693379 . Measurement of the low-mass Drell--Yan differential cross section at √s = 7 TeV using the ATLAS detector -1694142 X Electron reconstruction and identification efficiency measurements with the ATLAS detector using the 2011 LHC proton-proton collision data -1694329 ? Search for supersymmetry at $\sqrt{s}=8$ TeV in final states with jets and two same-sign leptons or three leptons with the ATLAS detector -1695792 X Muon reconstruction efficiency and momentum resolution of the ATLAS experiment in proton–proton collisions at $\sqrt{s}=7$ TeV in 2010 -1697648 . Measurement of $\chi_{c1}$ and $\chi_{c2}$ production with $\sqrt{s}=7$ TeV $pp$ collisions at ATLAS -1697652 . Measurement of the cross section of high transverse momentum $Z\rightarrow b\bar{b}$ production in proton--proton collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector -1698966 X Operation and performance of the ATLAS semiconductor tracker -1701107 X Monitoring and data quality assessment of the ATLAS liquid argon calorimeter -1701989 ? Search for high-mass dilepton resonances in $pp$ collisions at $\sqrt {s}$ = 8 TeV with the ATLAS detector -1702039 . Measurement of the centrality and pseudorapidity dependence of the integrated elliptic flow in lead-lead collisions at $\sqrt{s_{\mathrm{NN}}}=2.76$ TeV with the ATLAS detector. -1702263 ? Search for microscopic black holes and string balls in final states with leptons and jets with the ATLAS detector at $\sqrt{s}$=8 TeV -1702959 ? Search for supersymmetry in events with four or more leptons in $\sqrt{s}$ = 8 TeV pp collisions with the ATLAS detector -1703745 . Evidence of electroweak production of $W^{\pm}W^{\pm}jj$ in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -1704268 X Light-quark and gluon jet discrimination in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector -1705530 ? Search for squarks and gluinos with the ATLAS detector in final states with jets and missing transverse momentum using $\sqrt{s}=8$ TeV proton-proton collision data -1705576 X Jet energy measurement and its systematic uncertainty in proton-proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector -1706129 . Measurement of the underlying event in jet events from 7 TeV proton-proton collisions with the ATLAS detector -1706342 ? Search for direct pair production of the top squark in all-hadronic final states in proton-proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1708378 . Measurement of inclusive jet charged-particle fragmentation functions in Pb+Pb collisions at $\sqrt{s_{NN}} = 2.76$ TeV with the ATLAS detector -1708940 . Measurement of the $Z/\gamma^*$ boson transverse momentum distribution in $pp$ collisions at $\sqrt{s} =7$ TeV with the ATLAS detector -1709081 X Measurement of the Higgs boson mass from the $H\rightarrow \gamma\gamma$ and $H{\rightarrow\,}ZZ^{*}{\rightarrow\,}4\ell$ channels with the ATLAS detector using 25 fb$^{-1}$ of $pp$ collision data -1709746 ? Search for $WZ$ resonances in the fully leptonic channel using $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1710369 ? Search for Higgs Boson Pair Production in the $\gamma\gamma b\bar{b}$ Final State using $pp$ Collision Data at $\sqrt{s}=8$TeV from the ATLAS Detector -1710934 . Measurement of the $t\bar{t}$ production cross-section using $e\mu$ events with $b$-tagged jets in $pp$ collisions at $\sqrt{s}=7$ and 8 TeV with the ATLAS detector -1712263 ? Search for the Standard Model Higgs boson decay to $\mu^{+}\mu^{-}$ with the ATLAS detector -1712337 X A neural network clustering algorithm for the ATLAS silicon pixel detector -1712656 . Comprehensive measurements of $t$-channel single top-quark production cross sections at $\sqrt{s} = 7$ TeV with the ATLAS detector -1712966 ! Measurements of normalized differential cross-sections for $t\bar{t}$ production in $pp$ collisions at $\sqrt{s}$=7 TeV using the ATLAS detector -1712968 ? Search for the direct production of charginos, neutralinos and staus in final states with at least two hadronically decaying taus and missing transverse momentum in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1712975 ? Search for pair-produced third-generation squarks decaying via charm quarks or in compressed supersymmetric scenarios in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -1713028 ! Simultaneous measurements of the $t\bar{t}$, $W^+W^-$, and $Z/\gamma^{*}\rightarrow\tau\tau$ production cross-sections in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector -1714148 ? Search for top squark pair production in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt{s}=8$ TeV $pp$ collisions with the ATLAS detector -1714215 ? Search for strong production of supersymmetric particles in final states with missing transverse momentum and at least three b-jets at $\sqrt{s} =$ 8 TeV proton-proton collisions with the ATLAS detector. -1727967 ! Measurement of the cross-section of high transverse momentum vector bosons reconstructed as single jets and studies of jet substructure in $pp$ collisions at ${\sqrt{s}}$ = 7 TeV with the ATLAS detector -1728108 ? Search for supersymmetry in events with large missing transverse momentum, jets, and at least one tau lepton in 20 fb$^{-1}$ of $\sqrt{s}$=8 TeV proton-proton collision data with the ATLAS detector -1728286 . Measurement of the $t\bar{t}$ production cross-section as a function of jet multiplicity and jet transverse momentum in 7 TeV proton--proton collisions with the ATLAS detector -1734202 ? Observation of an Excited $B^{\pm}_c$ Meson State with the ATLAS Detector -1735492 ? Search for new phenomena in the dijet mass distribution using $pp$ collision data at $\sqrt{s}=8$ TeV with the ATLAS detector -1741328 . Flavour tagged time dependent angular analysis of the $B_s \rightarrow J/\psi \phi$ decay and extraction of $\Delta\Gamma$ and the weak phase $\phi_s$ in ATLAS -1741560 ? Search for contact interactions and large extra dimensions in the dilepton channel using proton--proton collisions at $\sqrt{s}~=$ 8 TeV with the ATLAS detector -1742692 . Measurement of differential production cross-sections for a $Z$ boson in association with $b$-jets in 7 TeV proton-proton collisions with the ATLAS detector -1743068 X Measurement of the muon reconstruction performance of the ATLAS detector using 2011 and 2012 LHC proton–proton collision data -1743175 . Measurements of fiducial and differential cross sections for Higgs boson production in the diphoton decay channel at $\sqrt{s}=8$ TeV with ATLAS -1743558 . Measurements of spin correlation in top-antitop quark events from proton-proton collisions at $\sqrt{s}=7$ TeV using the ATLAS detector -1744017 X Electron and photon energy calibration with the ATLAS detector using LHC Run 1 data -1744666 . Measurement of the production cross-section of $\psi(2S)\to J/\psi(\to\mu^+\mu^-)\pi^+\pi^-$ in $pp$ collisions at $\sqrt{s}=7$ TeV at ATLAS -1744698 . Measurements of jet vetoes and azimuthal decorrelations in dijet events produced in $pp$ collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector -1745602 . Search for Scalar Diphoton Resonances in the Mass Range $65-600$ GeV with the ATLAS Detector in $pp$ Collision Data at $\sqrt{s}$ = 8 $TeV$ -1746306 ? Search for new particles in events with one lepton and missing transverse momentum in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1746807 ? Search for new resonances in $W\gamma$ and $Z\gamma$ Final States in $pp$ Collisions at $\sqrt{s}=8\,\mathrm{TeV}$ with the ATLAS Detector -1747772 ? Search for $W' \rightarrow tb \rightarrow qqbb$ Decays in pp Collisions at $\sqrt{s}$ = 8 TeV with the ATLAS Detector -1749689 . Fiducial and differential cross sections of Higgs boson production measured in the four-lepton decay channel in $\boldsymbol{pp}$ collisions at $\boldsymbol{\sqrt{s}}$ = 8 TeV  with the ATLAS detector -1749694 X Performance of the ATLAS muon trigger in pp collisions at $\sqrt{s}=$8 TeV -1750700 . Measurement of flow harmonics with multi-particle cumulants in Pb+Pb collisions at $\sqrt{s_{\mathrm{NN}}}=2.76$TeV with the ATLAS detector -1750954 . Measurement of the production and lepton charge asymmetry of $\textit{W}$ bosons in Pb+Pb collisions at $\sqrt{s_{\mathrm{\mathbf{NN}}}}=$2.76 TeV with the ATLAS detector -1751040 . Measurements of Higgs boson production and couplings in the four-lepton channel in $pp$ collisions at center-of-mass energies of 7 and 8 TeV with the ATLAS detector -1751434 ? Search for the lepton flavor violating decay $Z \rightarrow e\mu$ in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1751527 . Measurement of the total cross section from elastic scattering in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector -1751969 . A measurement of the ratio of the production cross sections for W and Z bosons in association with jets with the ATLAS detector -1752602 . Measurement of Higgs boson production in the diphoton decay channel in $pp$ collisions at center-of-mass energies of 7 and 8 TeV with the ATLAS detector -1753176 ? Search for long-lived neutral particles decaying into lepton jets in proton--proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1753190 . Measurement of the top-quark mass in the fully hadronic decay channel from ATLAS data at $\sqrt{s}=7$ TeV -1753810 . Measurement of long-range pseudorapidity correlations and azimuthal harmonics in $\sqrt{s_{\mathrm{NN}}}$=5.02 TeV proton-lead collisions with the ATLAS detector -1754508 ? Search for $H \rightarrow \gamma\gamma$ produced in association with top quarks and constraints on the Yukawa coupling between the top quark and the Higgs boson using data taken at 7 TeV and 8 TeV with the ATLAS detector -1755168 . Measurement of distributions sensitive to the underlying event in inclusive Z-boson production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector -1756493 ? Search for non-pointing and delayed photons in the diphoton and missing transverse momentum final state in 8 TeV $pp$ collisions at the LHC using the ATLAS detector -1756494 ? Search for pair and single production of new heavy quarks that decay to a $Z$ boson and a third-generation quark in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -1756956 ? Search for neutral Higgs bosons of the minimal supersymmetric standard model in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1757231 ? Search for the $b\bar{b}$ decay of the Standard Model Higgs boson in associated $(W/Z)H$ production with the ATLAS detector -1757242 ? Search for resonant diboson production in the $\ell\ell q\bar{q}$ final state in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -1951330 . Measurements of the W production cross sections in association with jets with the ATLAS detector -1952176 ? Search for s-channel single top-quark production in proton-proton collisions at $\sqrt{s}$=8 TeV with the ATLAS detector -1955425 ? Search for dark matter in events with heavy quarks and missing transverse momentum in $pp$ collisions with the ATLAS detector -1955467 ? Search for $W' \rightarrow t\bar{b}$ in the lepton plus jets final state in proton--proton collisions at a centre-of-mass energy of $\sqrt{s}$ = 8 TeV with the ATLAS detector -1955537 ? Search for the $X_b$ and other hidden-beauty states in the $\pi^+ \pi^- \Upsilon(1 \rm S)$ channel at ATLAS -1956555 ? Search for invisible particles produced in association with single-top-quarks in proton-proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1957417 . Measurement of the $WW+WZ$ cross section and limits on anomalous triple gauge couplings using final states with one lepton, missing transverse momentum, and two jets with the ATLAS detector at $\sqrt{\rm{s}} = 7$ TeV -1966082 . Measurement of the inclusive jet cross-section in proton--proton collisions at $\sqrt{s}=7$ TeV using 4.5 $\mbox{fb}^{-1}$ of data with the ATLAS detector -1967026 ? Search for new phenomena in events with a photon and missing transverse momentum in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -1967055 . Measurement of three-jet production cross-sections in pp collisions at 7 TeV centre-of-mass energy using the ATLAS detector -1967717 . Measurements of the Nuclear Modification Factor for Jets in Pb+Pb Collisions at $\sqrt{s_{\mathrm{NN}}}=2.76$ TeV with the ATLAS Detector -1968587 . Search for new phenomena in events with three or more charged leptons in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -1971401 ? Searches for heavy long-lived charged particles with the ATLAS detector in proton--proton collisions at $\sqrt{s}$ = 8 TeV -1972583 ? Search for anomalous production of prompt same-sign lepton pairs and pair-produced doubly charged Higgs bosons with $\sqrt{s}$ = 8 TeV $pp$ collisions using the ATLAS detector -1974107 . Measurement of the transverse polarization of $\Lambda$ and $\bar{\Lambda}$ hyperons produced in proton--proton collisions at $\sqrt{s}$=7 TeV using the ATLAS detector -1975394 . Observation and measurement of Higgs boson decays to $WW^\ast$ with the ATLAS detector -1976215 . Centrality and rapidity dependence of inclusive jet production in $\sqrt{s_\mathrm{NN}}$ = 5.02 TeV proton--lead collisions with the ATLAS detector -1976696 . Measurement of Spin Correlation in Top-Antitop Quark Events and Search for Top Squark Pair Production in pp Collisions at $\sqrt{s}=8$ TeV Using the ATLAS Detector -1977875 . Observation and measurements of the production of prompt and non-prompt $J/\psi$ mesons in association with a $Z$ boson in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1977927 ? Search for charged Higgs bosons decaying via $H^{\pm} \rightarrow \tau^{\pm}\nu$ in fully hadronic final states using $pp$ collision data at $\sqrt{s}$ = 8 TeV with the ATLAS detector -1978197 X Identification and energy calibration of hadronically decaying tau leptons with the ATLAS experiment in $pp$ collisions at $\sqrt{s}$=8 TeV -1979931 ? Search for Scalar-Charm Pair Production in pp Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector -1980937 ? Search for Higgs and $Z$ Boson Decays to $J/\psi\gamma$ and $\Upsilon(nS)\gamma$ with the ATLAS Detector -1981342 ? Search for squarks and gluinos in events with isolated leptons, jets and missing transverse momentum at $\sqrt{s}=8$ TeV with the ATLAS detector -1981819 ? Search for pair-produced long-lived neutral particles decaying in the ATLAS hadronic calorimeter in $pp$ collisions at $\sqrt{s}$ = 8 TeV -1982276 . Evidence for the Higgs-boson Yukawa coupling to tau leptons with the ATLAS detector -1983600 ? Search for direct pair production of a chargino and a neutralino decaying to the 125 GeV Higgs boson in $\sqrt{s}$ = 8 TeV pp collisions with the ATLAS detector -1983631 . Measurement of the charge asymmetry in dileptonic decays of top quark pairs in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector -1984432 ? Observation of top-quark pair production in association with a photon and measurement of the $t\bar{t}\gamma$ production cross section in pp collisions at $\sqrt{s}=7$ TeV using the ATLAS detector -1985260 ? Search for new phenomena in final states with an energetic jet and large missing transverse momentum in $pp$ collisions at $\sqrt{s}=8~$TeV with the ATLAS detector -1989793 ? Search for a CP-odd Higgs boson decaying to $Zh$ in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -1993236 ? Search for massive supersymmetric particles decaying to many jets using the ATLAS detector in $pp$ collisions at $\sqrt{s} = 8$TeV -1993530 . Differential top--antitop cross-section measurements as a function of observables constructed from final-state particles using pp collisions at $\sqrt{s}=7$ TeV in the ATLAS detector -1994408 ? A search for high-mass resonances decaying to $\tau^{+}\tau^{-}$ in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -1994986 . Two-particle Bose--Einstein correlations in $pp$ collisions at $\mathbf {\sqrt{s} =}$ 0.9 and 7 TeV measured with the ATLAS detector -1995608 ? Determination of the off-shell Higgs boson signal strength in the high-mass $ZZ$ and $WW$ final states with the ATLAS detector -2000307 ? Evidence of $W\gamma\gamma$ production in $pp$ collisions at $\sqrt{s}=8$ TeV and limits on anomalous quartic gauge couplings with the ATLAS detector -2000717 ? Search for supersymmetry in events containing a same-flavour opposite-sign dilepton pair, jets, and large missing transverse momentum in $\sqrt{s}=8$ TeV $pp$ collisions with the ATLAS detector -2001014 X Determination of spin and parity of the Higgs boson in the $WW^*\rightarrow e \nu \mu \nu$ decay channel with the ATLAS detector -2001341 . Measurement of the forward-backward asymmetry of electron and muon pair-production in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector -2001592 ? Search for a Heavy Neutral Particle Decaying to $e\mu$, $e\tau$, or $\mu\tau$ in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector -2001596 ? Search for a Charged Higgs Boson Produced in the Vector-boson Fusion Mode with Decay $H^\pm \to W^\pm Z$ using $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Experiment -2001684 ? Search for production of $WW/WZ$ resonances decaying to a lepton, neutrino and jets in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2001975 ? Search for the Standard Model Higgs boson produced in association with top quarks and decaying into $b\bar{b}$ in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2002197 ? Search for vector-like $B$ quarks in events with one isolated lepton, missing transverse momentum and jets at $\sqrt{s}=$ 8 TeV with the ATLAS detector -2002290 X Measurement of the top quark mass in the $t\bar t \to {\rm lepton+jets}$ and $t\bar t \to {\rm dilepton}$ channels using $\sqrt{s}=7$ TeV ATLAS data -2004386 X Combined Measurement of the Higgs Boson Mass in $pp$ Collisions at $\sqrt{s}$ = 7 and 8 TeV with the ATLAS and CMS Experiments -2004438 ? Search for a new resonance decaying to a $W$ or $Z $ boson and a Higgs boson in the $\ell \ell/ \ell \nu/ \nu \nu + b \bar{b}$ final states with the ATLAS Detector -2004911 ? Search for low-scale gravity signatures in multi-jet final states with the ATLAS detector at $\sqrt{s}$ = 8 TeV -2005764 ? Search for New Phenomena in Dijet Angular Distributions in Proton-Proton Collisions at $\sqrt{s} = 8$ TeV Measured with the ATLAS Detector -2007002 . Measurement of the correlation between flow harmonics of different order in lead-lead collisions at $\sqrt{s_{NN}}$=2.76 TeV with the ATLAS detector -2008774 ? Search for long-lived, weakly interacting particles that decay to displaced hadronic jets in proton-proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2009191 ? Search for heavy long-lived multi-charged particles in $pp$ collisions at $\sqrt{s}$=8 TeV using the ATLAS detector -2009386 . Measurement of the top pair production cross-section in 8 TeV proton--proton collisions using kinematic information in the lepton+jets final state with ATLAS -2010104 ! Measurement of charged-particle spectra in Pb+Pb collisions at $\sqrt{{s}_\mathsf{NN}} = 2.76$TeV with the ATLAS detector at the LHC -2010107 ? Search for invisible decays of the Higgs boson produced in association with a hadronically decaying vector boson in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2010295 ? Analysis of events with $b$-jets and a pair of leptons of the same charge in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2010949 ? Search for massive, long-lived particles using multitrack displaced vertices or displaced lepton pairs in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2011304 ? Search for high-mass diphoton resonances in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2011305 . Measurements of the Total and Differential Higgs Boson Production Cross Sections Combining the $H \rightarrow \gamma \gamma$ and $H \rightarrow ZZ ^{*}\rightarrow 4\ell$ Decay Channels at $\sqrt{s}=8$ TeV with the ATLAS Detector -2014277 ? Search for Higgs bosons decaying to $aa$ in the $\mu\mu\tau\tau$ final state in $pp$ collisions at $\sqrt{s} = $ 8 TeV with the ATLAS experiment -2016477 ? Search for production of vector-like quark pairs and of four top quarks in the lepton-plus-jets final state in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2017862 ? A search for $t\bar{t}$ resonances using lepton-plus-jets events in proton--proton collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2019396 ? Search for new light gauge bosons in Higgs boson decays to four-lepton final states in $pp$ collisions at $\sqrt{s}=8$TeV with the ATLAS detector at the LHC -2019865 . Measurement of differential J /ψ production cross sections and forward-backward ratios in p + Pb collisions with the ATLAS detector -2021093 ? Search for high-mass diboson resonances with boson-tagged jets in proton--proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2021099 ? Search for Dark Matter in Events with Missing Transverse Momentum and a Higgs Boson Decaying to Two Photons in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector -2021253 ? Search for Higgs boson pair production in the $b\bar{b} b\bar{b}$ final state from $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2021525 ? Search for heavy lepton resonances decaying to a $Z$ boson and a lepton in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2022217 ? Search for type-III Seesaw heavy leptons in $pp$ collisions at $\sqrt{s}= 8$ TeV with the ATLAS Detector -2025630 X Measurements of the top quark branching ratios into channels with leptons and quarks with the ATLAS detector -2026011 ? Search for metastable heavy charged particles with large ionisation energy loss in $pp$ collisions at $\sqrt{s}$ = 8 TeV using the ATLAS experiment -2026119 . Measurement of colour flow with the jet pull angle in $t\bar{t}$ events using the ATLAS detector at $\sqrt{s}=8$ TeV -2026125 ? Modelling $Z\to\tau\tau$ processes in ATLAS with $\tau$-embedded $Z\to\mu\mu$ data -2026126 ? Study of the spin and parity of the Higgs boson in diboson decays with the ATLAS detector -2026416 ? Search for the associated production of the Higgs boson with a top quark pair in multilepton final states with the ATLAS detector -2026429 ? Search for heavy Majorana neutrinos with the ATLAS detector in pp collisions at $\sqrt{s} = 8$ TeV -2026734 ? Study of $(W/Z)H$ production and Higgs boson couplings using $H \rightarrow WW^{\ast}$ decays with the ATLAS detector -2026890 . Measurement of exclusive $\gamma\gamma\rightarrow \ell^+\ell^-$ production in proton--proton collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector -2029377 . Measurement of the production of neighbouring jets in lead-lead collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$ TeV with the ATLAS detector -2029385 . Centrality, rapidity and transverse momentum dependence of isolated prompt photon production in lead-lead collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$ TeV measured with the ATLAS detector -2029476 ? ATLAS Run 1 searches for direct pair production of third-generation squarks at the Large Hadron Collider -2032063 X Determination of the top-quark pole mass using $t \bar{t}+1$-jet events collected with the ATLAS experiment in 7 TeV $pp$ collisions -2034254 X Measurements of the Higgs boson production and decay rates and coupling strengths using $pp$ collision data at $\sqrt{s}=7$ and $8$ TeV in the ATLAS experiment -2035512 ? Search for photonic signatures of gauge-mediated supersymmetry in 8 TeV $pp$ collisions with the ATLAS detector -2036004 X Summary of the searches for squarks and gluinos using $\sqrt{s}$ = 8 TeV $pp$ collisions with the ATLAS experiment at the LHC -2036291 ? Search for an additional, heavy Higgs boson in the $H\rightarrow ZZ$ decay channel at $\sqrt{s}$ = 8 TeV in $pp$ collision data with the ATLAS detector -2036312 . $Z$ boson production in $p+$Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV measured with the ATLAS detector -2037674 X Study of the $B_c^+ \to J/\psi D_s^+$ and $B_c^+ \to J/\psi D_s^{*+}$ decays with the ATLAS detector -2038747 X Measurement of the branching ratio $\Gamma(\Lambda_b^0 \rightarrow \psi(2S)\Lambda^0)/\Gamma(\Lambda_b^0 \rightarrow J/\psi\Lambda^0)$ with the ATLAS detector -2039725 X Determination of the ratio of $b$-quark fragmentation fractions $f_s/f_d$ in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector -2040198 . Measurement of the centrality dependence of the charged-particle pseudorapidity distribution in proton--lead collisions at $\sqrt{s_{_\text{NN}}} = 5.02$ TeV with the ATLAS detector -2040688 . Measurement of transverse energy-energy correlations in multi-jet events in $pp$ collisions at $\sqrt{s} = 7$ TeV using the ATLAS detector and determination of the strong coupling constant $\alpha_{\mathrm{s}}(m_Z)$ -2042102 X Constraints on non-Standard Model Higgs boson interactions in an effective Lagrangian using differential cross sections measured in the $H \rightarrow \gamma\gamma$ decay channel at $\sqrt{s} = 8$ TeV with the ATLAS detector -2043233 ? Search for lepton-flavour-violating $H\to\mu\tau$ decays of the Higgs boson with the ATLAS detector -2045641 ? Searches for scalar leptoquarks in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2046583 ? Search for flavour-changing neutral current top-quark decays to $qZ$ in $pp$ collision data collected with the ATLAS detector at $\sqrt{s}=8$ TeV -2047040 X Summary of the ATLAS experiment's sensitivity to supersymmetry after LHC Run 1 - interpreted in the phenomenological MSSM -2047454 . Measurements of fiducial cross-sections for $t\bar{t}$ production with one or two additional $b$-jets in $pp$ collisions at $\sqrt{s}$=8 TeV using the ATLAS detector -2048106 ? Search for invisible decays of a Higgs boson using vector-boson fusion in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2048122 ? Search for single top-quark production via flavour changing neutral currents at 8 TeV with the ATLAS detector -2048180 ? Search for a high-mass Higgs boson decaying to a $W$ boson pair in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2048197 ? Constraints on new phenomena via Higgs boson couplings and invisible decays with the ATLAS detector -2049547 . Measurement of the charge asymmetry in top-quark pair production in the lepton-plus-jets final state in $pp$ collision data at $\sqrt{s}=8$ TeV with the ATLAS detector -2052165 ? Search for pair production of a new heavy quark that decays into a $W$ boson and a light quark in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2052848 ? Searches for Higgs boson pair production in the $hh\to bb\tau\tau, \gamma\gamma WW*, \gamma\gamma bb, bbbb$ channels with the ATLAS detector -2053111 . Observation of long-range elliptic anisotropies in $\sqrt{s}=$13 and 2.76 TeV $pp$ collisions with the ATLAS detector -2053189 X A new method to distinguish hadronically decaying boosted $Z$ bosons from $W$ bosons using the ATLAS detector -2053201 ? Search for direct top squark pair production in final states with two tau leptons in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2053208 ? Search for new phenomena in events with at least three photons collected in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2053221 . Measurement of jet charge in dijet events from $\sqrt{s}=8$ TeV pp collisions with the ATLAS detector -2053330 . Measurement of the $t\bar{t}W$ and $t\bar{t}Z$ production cross sections in $pp$ collisions at $\sqrt{s} = 8 \mathrm{\ Te\kern -0.1em V}$ with the ATLAS detector -2053792 ? Search for flavour-changing neutral current top quark decays $t\to Hq$ in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2054504 ? Search for the electroweak production of supersymmetric particles in $\sqrt{s}$=8 TeV $pp$ collisions with the ATLAS detector -2054554 . Measurements of four-jet differential cross sections in $\sqrt(s)$ = 8 TeV proton-proton collisions using the ATLAS detector -2055247 . Measurements of four-lepton production in $pp$ collisions at $\sqrt{s}=$8 TeV with the ATLAS detector -2055267 ? Search for magnetic monopoles and stable particles with high electric charges in 8 TeV $pp$ collisions with the ATLAS detector -2058159 ? Search for the production of single vector-like and excited quarks in the $Wt$ final state in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2058295 X Performance of pile-up mitigation techniques for jets in $pp$ collisions at $\sqrt{s} = 8$ TeV using the ATLAS detector -2058820 ? Search for anomalous couplings in the $Wtb$ vertex from the measurement of double differential angular decay rates of single top quarks produced in the $t$-channel with the ATLAS detector -2058825 . Measurement of the differential cross-section of highly boosted top quarks as a function of their transverse momentum in $\sqrt{s}$ = 8 TeV proton--proton collisions using the ATLAS detector -2059559 . Measurement of the production cross-section of a single top quark in association with a $W$ boson at 8 TeV with the ATLAS experiment -2060731 X Identification of boosted, hadronically decaying W bosons and comparisons with ATLAS data taken at $\sqrt{s} = 8$ TeV -2061416 . Measurement of the correlations between the polar angles of leptons from top quark decays in the helicity basis at $\sqrt{s}=7$ TeV using the ATLAS detector -2061422 ? Search for dark matter produced in association with a Higgs boson decaying to two bottom quarks in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2063966 . Dijet production in $\sqrt{s}=7$ TeV $pp$ collisions with large rapidity gaps at the ATLAS experiment -2102146 . Measurements of top-quark pair differential cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s} = 8$ TeV using the ATLAS detector -2102936 ? Evidence for single top-quark production in the $s$-channel in proton--proton collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector using the Matrix Element Method -2103375 ? A search for prompt lepton-jets in pp collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector -2109123 ? Search for the Standard Model Higgs boson produced in association with a vector boson and decaying into a tau pair in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2109716 . Measurement of the dependence of transverse energy production at large pseudorapidity on the hard-scattering kinematics of proton--proton collisions at $\sqrt{s} = 2.76$ TeV with ATLAS -2110203 X Performance of $b$-Jet Identification in the ATLAS Experiment -2110747 ? Search for New Phenomena in Dijet Mass and Angular Distributions from pp collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2111356 . Measurement of the transverse momentum and $\phi^*_{\eta}$ distributions of Drell--Yan lepton pairs in proton--proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2111372 ? Search  for strong gravity in multijet final states produced in pp collisions at $\sqrt{s}=$ 13 TeV using the ATLAS detector at the LHC -2111578 . Measurement of $D^{*\pm}$, $D^\pm$ and $D_s^\pm$ meson production cross sections in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector -2112269 . Measurement of the differential cross-sections of prompt and non-prompt production of $J/\psi$ and $\psi(2\mathrm{S})$ in $pp$ collisions at $\sqrt{s} = 7$ and $8$ TeV with the ATLAS detector -2113171 ? Search for charged Higgs bosons in the $H^{\pm} \rightarrow tb$ decay channel in $pp$ collisions at $\sqrt{s} = 8$ TeV using the ATLAS detector -2115337 ? Combination of searches for $WW$, $WZ$, and $ZZ$ resonances in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2115496 . Measurement of the $ZZ$ Production Cross Section in $pp$ Collisions at $\sqrt{s} = 13$ TeV with the ATLAS Detector -2116415 ? Search for new phenomena with photon+jet events in proton–proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2116436 X Reconstruction of hadronic decay products of tau leptons with the ATLAS experiment -2116823 . Measurement of the charge asymmetry in highly boosted top-quark pair production in $\sqrt{s} =$ 8 TeV $pp$ collision data collected by the ATLAS experiment -2120788 X Measurement of the CP-violating phase $\phi_s$ and the $B^0_s$ meson decay width difference with $B^0_s \to J/\psi\phi$ decays in ATLAS -2120855 ? Probing lepton flavour violation via neutrinoless $\tau\longrightarrow 3\mu$ decays with the ATLAS detector -2125289 ? A search for an excited muon decaying to a muon and two jets in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2127038 ? A search for top squarks with R-parity-violating decays to all-hadronic final states with the ATLAS detector in $\sqrt{s}$ = 8 TeV proton--proton collisions -2128621 . Charged-particle distributions in $\sqrt{s}=13$ TeV $pp$ interactions measured with the ATLAS detector at the LHC -2128767 . Measurement of the charged-particle multiplicity inside jets from $\sqrt{s}=8$ TeV $pp$ collisions with the ATLAS detector -2131638 X Test of CP Invariance in vector-boson fusion production of the Higgs boson using the Optimal Observable method in the ditau decay channel with the ATLAS detector -2132306 ? Search for single production of vector-like quarks decaying into $Wb$ in $pp$ collisions at $\sqrt{s} =$ 8 TeV with the ATLAS detector -2132839 ? Search for single production of a vector-like quark via a heavy gluon in the $4b$ final state with the ATLAS detector in $pp$ collisions at $\sqrt{s} = 8$ TeV -2133568 ? Search for new phenomena in final states with large jet multiplicities and missing transverse momentum with ATLAS using $\sqrt{s} =13$ TeV proton--proton collisions -2134966 . Measurement of event-shape observables in $Z \to \ell^{+} \ell^{-}$ events in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector at the LHC -2135204 ? Search for supersymmetry at $\sqrt{s}=13$ TeV in final states with jets and two same-sign leptons or three leptons with the ATLAS detector -2136855 . Measurement of total and differential $W^+W^-$ production cross sections in proton-proton collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector and limits on anomalous triple-gauge-boson couplings -2137188 . Measurements of $W^\pm Z$ production cross sections in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector and limits on anomalous gauge boson self-couplings -2137212 X Identification of high transverse momentum top quarks in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2137226 . Charged-particle distributions in $pp$ interactions at $\sqrt{s}=8$ TeV measured with the ATLAS detector at the LHC -2138166 X Topological cell clustering in the ATLAS calorimeters and its performance in LHC Run 1 -2139897 X Muon reconstruction performance of the ATLAS detector in proton--proton collision data at $\sqrt{s}$=13 TeV -2141086 X Beam-induced and cosmic-ray backgrounds observed in the ATLAS detector during the LHC 2012 proton-proton running period -2142492 . Measurement of $W^{\pm}$ and $Z$-boson production cross sections in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2142493 ? Search for charged Higgs bosons produced in association with a top quark and decaying via $H^{\pm} \rightarrow \tau\nu$ using $pp$ collision data recorded at $\sqrt{s} = 13$ TeV by the ATLAS detector -2142575 ? Search for resonances in the mass distribution of jet pairs with one or two jets identified as $b$-jets in proton--proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2143781 ? Search for new phenomena in events with a photon and missing transverse momentum in $pp$ collisions at $\sqrt{s}=13 TeV$ with the ATLAS detector -2145362 . Measurement of fiducial differential cross sections of gluon-fusion production of Higgs bosons decaying to $WW^{\ast}{\rightarrow\,}e\nu\mu\nu$ with the ATLAS detector at $\sqrt{s}=8$ TeV -2145933 ? Search for the Standard Model Higgs boson decaying into $b\bar{b}$ produced in association with top quarks decaying hadronically in $pp$ collisions at $\sqrt{s}$=8 TeV with the ATLAS detector -2146067 . Study of the rare decays of $B^0_s$ and $B^0$ into muon pairs from data collected during the LHC Run 1 with the ATLAS detector -2146105 ? Search for metastable heavy charged particles with large ionization energy loss in pp collisions at $\sqrt{s} = 13$ TeV using the ATLAS experiment -2147109 . Measurements of $Z\gamma$ and $Z\gamma\gamma$ production in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector -2147356 . Measurements of the charge asymmetry in top-quark pair production in the dilepton final state at $\sqrt{s}=8$ TeV with the ATLAS detector -2148625 ? Search for lepton-flavour-violating decays of the Higgs and $Z$ bosons with the ATLAS detector -2148641 . Search for new phenomena in final states with an energetic jet and large missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$ TeV using the ATLAS detector -2151982 . Measurement of the inclusive isolated prompt photon cross section in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2152376 . Search for squarks and gluinos in final states with jets and missing transverse momentum at $\sqrt{s}=$ 13 TeV with the ATLAS detector -2152735 ? Search for gluinos in events with an isolated lepton, jets and missing transverse momentum at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2153753 ? Search for scalar leptoquarks in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS experiment -2154442 . Transverse momentum, rapidity, and centrality dependence of inclusive charged-particle production in $\sqrt{s_{NN}}=5.02$ TeV p+Pb collisions measured by the ATLAS experiment -2155306 X Measurement of the relative width difference of the $B^0$--$\bar B^0$ system with the ATLAS detector -2156666 ? Search for pair production of gluinos decaying via stop and sbottom in events with $b$-jets and large missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2157235 . Measurement of the angular coefficients in $Z$-boson events using electron and muon pairs from data taken at $\sqrt{s}=8$ TeV with the ATLAS detector -2157893 ! Charged-particle distributions at low transverse momentum in $\sqrt{s} = 13$ TeV pp interactions measured with the ATLAS detector at the LHC -2158116 . Measurement of the double-differential high-mass Drell--Yan cross section in $pp$ collisions at $\sqrt{s}= 8$ TeV with the ATLAS detector -2158117 X Measurement of the photon identification efficiencies with the ATLAS detector using LHC Run-1 data -2158821 ? Search for TeV-scale gravity signatures in high-mass final states with leptons and jets with the ATLAS detector at $\sqrt{s}=13$ TeV -2158833 ? Search for the Standard Model Higgs boson produced by vector-boson fusion in 8 TeV pp collisions and decaying to bottom quarks with the ATLAS detector -2158842 X Measurement of the top quark mass in the $t\bar{t}\to\mbox{dilepton}$ channel from $\sqrt{s}=8$ TeV ATLAS data -2158863 ? Measurements of the Higgs boson production and decay rates and constraints on its couplings from a combined ATLAS and CMS analysis of the LHC $pp$ collision data at $\sqrt{s}=$ 7 and 8 TeV -2159578 . Measurement of the Inelastic Proton-Proton Cross Section at $\sqrt{s} = 13$ TeV with the ATLAS Detector at the LHC -2159581 . Measurement of the $t\bar{t}$ production cross-section using $e\mu$ events with b-tagged jets in pp collisions at $\sqrt{s}$=13 TeV with the ATLAS detector -2160228 ? Search for resonances in diphoton events at $\sqrt{s}$=13 TeV with the ATLAS detector -2160253 ? Search for top squarks in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt{s}=13$ TeV $pp$ collisions with the ATLAS detector -2160353 . Measurement of the $W^{\pm}Z$ boson pair-production cross section in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS Detector -2160550 ? Search for new resonances in events with one lepton and missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2161043 ? Search for pair production of Higgs bosons in the $b\bar{b}b\bar{b}$ final state using proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2161140 ? Searches for heavy diboson resonances in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2161142 ? Search for heavy long-lived charged $R$-hadrons with the ATLAS detector in 3.2 fb$^{-1}$ of proton--proton collision data at $\sqrt{s} = 13$ TeV -2194256 X The performance of the jet trigger for the ATLAS detector during 2011 data taking -2194713 . Measurement of forward-backward multiplicity correlations in lead-lead, proton-lead and proton-proton collisions with the ATLAS detector -2194717 ? Search for the Higgs boson produced in association with a $W$ boson and decaying to four $b$-quarks via two spin-zero particles in $pp$ collisions at 13 TeV with the ATLAS detector -2194987 ? Search for supersymmetry in a final state containing two photons and missing transverse momentum in $\sqrt{s}$ = 13 TeV $pp$ collisions at the LHC using the ATLAS detector -2195073 ? Search for bottom squark pair production in proton--proton collisions at $\sqrt{s}=$13 TeV with the ATLAS detector -2195357 ! Measurement of jet activity in top quark events using the $e\mu$ final state with two $b$-tagged jets in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2198619 ? Search for Higgs and $Z$ Boson Decays to $\phi\,\gamma$ with the ATLAS Detector -2198982 ? Search for high-mass new phenomena in the dilepton final state using proton--proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2198983 . Measurement of exclusive $\gamma\gamma\rightarrow W^+W^-$ production and search for exclusive Higgs boson production in $pp$ collisions at $\sqrt{s} = 8$ TeV using the ATLAS detector -2200145 ? Search for new resonances decaying to a $W$ or $Z$ boson and a Higgs boson in the $\ell^+ \ell^- b\bar b$, $\ell \nu b\bar b$, and $\nu\bar{\nu} b\bar b$ channels with $pp$ collisions at $\sqrt s = 13$ TeV with the ATLAS detector -2200174 . Measurement of top quark pair differential cross-sections in the dilepton channel in $pp$ collisions at $\sqrt{s}$ = 7 and 8 TeV with ATLAS -2200242 ? Search for squarks and gluinos in events with hadronically decaying tau leptons, jets and missing transverse momentum in proton-proton collisions at $\sqrt{s}=13$ TeV recorded with the ATLAS detector -2200706 ? Search for heavy resonances decaying to a $Z$ boson and a photon in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2201004 . Measurement of the total cross section from elastic scattering in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2202137 ? Search for new phenomena in different-flavour high-mass dilepton final states in \boldmath{$pp$} collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2202397 . Measurement of the $b\overline{b}$ dijet cross section in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector. -2202682 X A measurement of the calorimeter response to single hadrons and determination of the jet energy scale uncertainty using LHC Run-1 $pp$-collision data with the ATLAS detector -2203593 ? Search for Minimal Supersymmetric Standard Model Higgs bosons $H/A$ and for a $Z^{\prime}$ boson in the $\tau \tau$ final state produced in $pp$ collisions at $\sqrt{s}=13$~TeV with the ATLAS Detector -2203733 ? Dark matter interpretations of ATLAS searches for the electroweak production of supersymmetric particles in $\sqrt{s} = 8$ TeV proton-proton collisions -2205694 . Study of hard double-parton scattering in four-jet events in $pp$ collisions at $\sqrt{s} =7$ TeV with the ATLAS experiment -2206052 ? Search for dark matter produced in association with a hadronically decaying vector boson in pp collisions at $\sqrt(s)$=13 TeV with the ATLAS detector -2206433 . Measurement of $W^+W^-$ production in association with one jet in proton--proton collisions at $\sqrt{s} =8$ TeV with the ATLAS detector -2208146 X Luminosity determination in pp collisions at $\sqrt{s}$ = 8 TeV using the ATLAS detector at the LHC -2213556 . Measurement of the $t\bar{t}Z$ and $t\bar{t}W$ production cross sections in multilepton final states using 3.2 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}$ =13 TeV with the ATLAS detector -2215404 . Measurement of the inclusive cross-sections of single top-quark and top-antiquark $t$-channel production in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2215485 X A measurement of material in the ATLAS tracker using secondary hadronic interactions in 7 TeV pp collisions -2215917 ? Search for dark matter in association with a Higgs boson decaying to $b$-quarks in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2216191 ? Search for anomalous electroweak production of $WW/WZ$ in association with a high-mass dijet system in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2217088 . Measurements of long-range azimuthal anisotropies and associated Fourier coefficients for $pp$ collisions at $\sqrt{s}=5.02$ and $13$ TeV and $p$+Pb collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with the ATLAS detector -2217557 ! Measurement of $W$ boson angular distributions in events with high transverse momentum jets at $\sqrt{s}=$ 8 TeV using the ATLAS detector -2220441 X Performance of algorithms that reconstruct missing transverse momentum in $\sqrt{s}$= 8 TeV proton--proton collisions in the ATLAS detector -2225426 . Search for triboson $W^{\pm}W^{\pm}W^{\mp}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2227023 . Measurement of the $ZZ$ production cross section in proton--proton collisions at $\mathbf{\sqrt{s} = 8 TeV}$ using the $ZZ\to\ell^{-}\ell^{+}\ell^{\prime -}\ell^{\prime +}$ and $ZZ\to\ell^{-}\ell^{+}\nu\bar{\nu}$ decay channels with the ATLAS detector -2227245 . Measurements of charge and CP asymmetries in $b$-hadron decays using top-quark events collected by the ATLAS detector in $pp$ collisions at $\sqrt{s}=8$ TeV -2228300 . Measurement of jet activity produced in top-quark events with an electron, a muon and two $b$-tagged jets in the final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2228304 . Measurements of $\psi(2S)$ and $X(3872) \to J/\psi\pi^+\pi^-$ production in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2230988 . Measurement of $W^{\pm}W^{\pm}$ vector-boson scattering and limits on anomalous quartic gauge couplings with the ATLAS detector -2233726 . High-$E_{\rm T}$ isolated-photon plus jets production in $pp$ collisions at $\sqrt s=$ 8 TeV with the ATLAS detector -2233837 ? Search for new phenomena in events containing a same-flavour opposite-sign dilepton pair, jets, and large missing transverse momentum in $\sqrt{s}=13$ TeV pp collisions with the ATLAS detector -2235584 X Performance of the ATLAS Trigger System in 2015 -2235651 X Reconstruction of primary vertices at the ATLAS experiment in Run 1 proton--proton collisions at the LHC -2237544 X Electron efficiency measurements with the ATLAS detector using 2012 LHC proton-proton collision data -2238498 . Measurement of the $W$ boson polarisation in $t\bar{t}$ events from $pp$ collisions at $\sqrt{s}$ = 8 TeV in the lepton+jets channel with ATLAS -2238505 . Measurement of the prompt $J/\psi$ pair production cross-section in pp collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2238565 . Precision measurement and interpretation of inclusive $W^+$, $W^-$ and $Z/\gamma^*$ production cross sections with the ATLAS detector -2238696 . Measurements of top-quark pair to $Z$-boson cross-section ratios at $\sqrt s = 13, 8, 7$TeV with the ATLAS detector -2239330 . Measurements of top-quark pair differential cross-sections in the $e\mu$ channel in $pp$ collisions at $\sqrt{s} = 13$ TeV using the ATLAS detector -2239808 . Measurements of top quark spin observables in $t\bar{t}$ events using dilepton final states in $\sqrt{s} = 8$ TeV $pp$ collisions with the ATLAS detector -2239810 . Measurement of the cross-section for producing a $W$ boson in association with a single top quark in $pp$ collisions at $\sqrt{s}={13} \text{TeV}$ with ATLAS -2242640 . Measurement of charged-particle distributions sensitive to the underlying event in $\sqrt{s} = 13$ TeV proton-proton collisions with the ATLAS detector at the LHC -2242863 . Measurement of the cross section for inclusive isolated-photon production in $pp$ collisions at $\sqrt s=13$ TeV using the ATLAS detector -2242923 . Measurement of the $W$-boson mass in pp collisions at $\sqrt{s}=7$ TeV with the ATLAS detector -2243758 . Measurement of internal structure of jets in Pb+Pb collisions at $\sqrt{s_\mathrm{NN}} = 2.76$ TeV with the ATLAS detector at the LHC -2244408 . Evidence for light-by-light scattering in heavy-ion collisions with the ATLAS detector at the LHC -2244654 ! Fiducial, total and differential cross-section measurements of $t$-channel single top-quark production in $pp$ collisions at 8 TeV using data collected by the ATLAS detector -2252574 ! Measurement of the $W^+W^-$ production cross section in $pp$ collisions at a centre-of-mass energy of $\sqrt{s}$ = 13 TeV with the ATLAS experiment -2253057 . Measurements of the production cross section of a $Z$ boson in association with jets in pp collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2253059 X Performance of the ATLAS Transition Radiation Tracker in Run 1 of the LHC: tracker properties -2253316 ! Top-quark mass measurement in the all-hadronic $t\bar{t}$ decay channel at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2253372 ? Probing the $Wtb$ vertex structure in $t$-channel single-top-quark production and decay in $pp$ collisions at $\sqrt{\mathrm{s}}=8$ TeV with the ATLAS detector -2253729 . Measurement of the $t\bar{t}$ production cross section in the $\tau$ + jets final state in $pp$ collisions at $\sqrt{s}=8$ TeV using the ATLAS detector -2255384 ! Measurements of electroweak $Wjj$ production and constraints on anomalous gauge couplings with the ATLAS detector -2257101 ? Search for new phenomena in dijet events using 37 fb$^{-1}$ of $pp$ collision data collected at $\sqrt{s}=$13 TeV with the ATLAS detector -2257300 X Jet energy scale measurements and their systematic uncertainties in proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2257597 X Jet reconstruction and performance using particle flow with the ATLAS Detector -2258366 . Femtoscopy with identified charged pions in proton-lead collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with ATLAS -2258390 . Measurement of the $k_\mathrm{t}$ splitting scales in $Z \to \ell\ell$ events in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2259444 . Measurements of integrated and differential cross sections for isolated photon pair production in pp collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2259751 ? Search for dark matter at $\sqrt{s}=13$ TeV in final states containing an energetic photon and large missing transverse momentum with the ATLAS detector -2261156 X Performance of the ATLAS Track Reconstruction Algorithms in Dense Environments in LHC run 2 -2261361 ? Search for new phenomena in a lepton plus high jet multiplicity final state with the ATLAS experiment using $\sqrt{s}$ = 13 TeV proton-proton collision data -2261980 ? Studies of $Z\gamma$ production in association with a high-mass dijet system in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector -2262419 X Identification and rejection of pile-up jets at high pseudorapidity with the ATLAS detector -2263035 . Measurement of $b$-hadron pair production with the ATLAS detector in proton-proton collisions at $\sqrt{s}=8$ TeV -2263609 . Measurement of multi-particle azimuthal correlations in $pp$, $p$+Pb and low-multiplicity Pb+Pb collisions with the ATLAS detector -2263640 ? Search for the dimuon decay of the Higgs boson in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2266574 ? Search for pair production of vector-like top quarks in events with one lepton, jets, and missing transverse momentum in $\sqrt{s} = 13$ TeV pp collisions with the ATLAS detector -2267592 . Measurement of $WW/WZ \to \ell \nu q q^{\prime}$ production with the hadronically decaying boson reconstructed as one or two jets in $pp$ collisions at $\sqrt{s}=8$ TeV with ATLAS, and constraints on anomalous gauge couplings -2268255 . Measurement of jet fragmentation in 5.02 TeV proton--lead and proton--proton collisions with the ATLAS detector -2268389 . Measurement of the $ t\overline{t}\gamma $ production cross section in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector -2268420 ! Measurement of the inclusive jet cross-sections in proton--proton collisions at $\sqrt{s}= $8 TeV with the ATLAS detector -2268733 ? Search for supersymmetry in final states with two same-sign or three leptons and jets using 36 fb$^{-1}$ of $\sqrt{s}=13$ TeV $pp$ collision data with the ATLAS detector -2268735 ? Search for dark matter in association with a Higgs boson decaying to two photons at $\sqrt{s}$= 13 TeV with the ATLAS detector -2268747 ? Search for direct top squark pair production in events with a Higgs or $Z$ boson, and missing transverse momentum in $\sqrt{s}=13$ TeV $pp$ collisions with the ATLAS detector -2269048 ? Search for a new heavy gauge boson resonance decaying into a lepton and missing transverse momentum in 36 fb$^{-1}$ of $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS experiment -2273199 ? Search for Dark Matter Produced in Association with a Higgs Boson Decaying to $b\bar b$ using 36 fb$^{-1}$ of $pp$ collisions at $\sqrt s=13$ TeV with the ATLAS Detector -2273256 ? Search for top quark decays $t \rightarrow qH$, with $H\to\gamma\gamma$, in $\sqrt{s} = 13$ TeV $pp$ collisions using the ATLAS detector -2273892 ? Search for new high-mass phenomena in the dilepton final state using 36 fb$^{−1}$ of proton-proton collision data at $ \sqrt{s}=13 $ TeV with the ATLAS detector -2273893 . Determination of the strong coupling constant $\alpha_s$ from transverse energy-energy correlations in multijet events at $\sqrt{s} = 8$ TeV using the ATLAS detector -2273894 X Study of the material of the ATLAS inner detector for Run 2 of the LHC -2274215 . Measurement of detector-corrected observables sensitive to the anomalous production of events with jets and large missing transverse momentum in $pp$ collisions at $\mathbf {\sqrt{s}=13}$  TeV using the ATLAS detector -2274216 ? Search for pair production of heavy vector-like quarks decaying to high-$p_{mathrm{T}}$ $W$ bosons and $b$ quarks in the lepton-plus-jets final state in $pp$ collisions at $\sqrt{s}$=13 TeV with the ATLAS detector -2274538 ? Search for new phenomena in high-mass diphoton final states using 37 fb$^{-1}$ of proton--proton collisions collected at $\sqrt{s}=13$ TeV with the ATLAS detector -2274911 X Analysis of the $Wtb$ vertex from the measurement of triple-differential angular decay rates of single top quarks produced in the $t$-channel at $\sqrt{s}$ = 8 TeV with the ATLAS detector -2274915 ? Study of $WW\gamma$ and $WZ\gamma$ production in $pp$ collisions at $\sqrt{s} = 8$ TeV and search for anomalous quartic gauge couplings with the ATLAS experiment -2275054 ? Search for heavy Higgs bosons $A/H$ decaying to a top quark pair in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2275252 ? Search for heavy resonances decaying to a $W$ or $Z$ boson and a Higgs boson in the $q\bar{q}^{(\prime)}b\bar{b}$ final state in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2276364 ? Searches for the $Z\gamma$ decay mode of the Higgs boson and for new high-mass resonances in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2276466 . Measurements of top-quark pair differential cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s}=13$ TeV using the ATLAS detector -2277363 . Search for new phenomena with large jet multiplicities and missing transverse momentum using large-radius jets and flavour-tagging at ATLAS in 13 TeV $pp$ collisions -2277731 ! Measurement of inclusive and differential cross sections in the $H \rightarrow ZZ^* \rightarrow 4\ell$ decay channel in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2278172 ? Search for direct top squark pair production in final states with two leptons in $\sqrt{s} = 13$ TeV $pp$ collisions with the ATLAS detector -2278245 X Evidence for the $H \to b\bar{b}$ decay with the ATLAS detector -2278247 . Measurement of multi-particle azimuthal correlations with the subevent cumulant method in $pp$ and $p$+Pb collisions with the ATLAS detector at the LHC -2278608 ? Measurement of the exclusive $\gamma \gamma \rightarrow \mu^+ \mu^-$ process in proton--proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2278615 ? Search for diboson resonances with boson-tagged jets in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2280982 ? Search for squarks and gluinos in events with an isolated lepton, jets, and missing transverse momentum at $\sqrt{s}=13$ TeV with the ATLAS detector -2281105 ? Search for the direct production of charginos and neutralinos in final states with tau leptons in $\sqrt{s} = $ 13 TeV $pp$ collisions with the ATLAS detector -2281451 ? Search for an invisibly decaying Higgs boson or dark matter candidates produced in association with a $Z$ boson in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector -2281499 ? Search for long-lived, massive particles in events with displaced vertices and missing transverse momentum in $\sqrt{s}$ = 13 TeV $pp$ collisions with the ATLAS detector -2281501 ? Searches for heavy $ZZ$ and $ZW$ resonances in the $\ell\ell qq$ and $\nu\nu qq$ final states in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2282669 . Measurement of longitudinal flow decorrelations in Pb+Pb collisions at $\sqrt{s_{\text {NN}}}=2.76$ and 5.02 TeV with the ATLAS detector -2283021 . Measurement of quarkonium production in proton--lead and proton--proton collisions at $5.02$ $\mathrm{TeV}$ with the ATLAS detector -2283028 . Measurement of $\tau$ polarisation in $Z/\gamma^{*}\rightarrow\tau\tau$ decays in proton-proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2283159 ? Search for a scalar partner of the top quark in the jets plus missing transverse momentum final state at $\sqrt{s}$=13 TeV with the ATLAS detector -2283170 ? Search for supersymmetry in events with $b$-tagged jets and missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2284083 X Direct top-quark decay width measurement in the $t\bar{t}$ lepton+jets channel at $\sqrt{s}$=8 TeV with the ATLAS experiment -2285011 ? A search for resonances decaying into a Higgs boson and a new particle $X$ in the $XH \to qqbb$ final state with the ATLAS detector -2285180 . Study of ordered hadron chains with the ATLAS detector -2285183 ? Search for additional heavy neutral Higgs and gauge bosons in the ditau final state produced in 36 fb$^{−1}$ of pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector -2285386 . $ZZ \to \ell^{+}\ell^{-}\ell^{\prime +}\ell^{\prime -}$ cross-section measurements and search for anomalous triple gauge couplings in 13 TeV $pp$ collisions with the ATLAS detector -2285937 ! Measurement of lepton differential distributions and the top quark mass in $t\bar{t}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector -2286337 . Measurement of the cross-section for electroweak production of dijets in association with a $Z$ boson in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2286380 ? Search for new phenomena in high-mass final states with a photon and a jet from $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2286828 ? Search for heavy resonances decaying into $WW$ in the $e\nu\mu\nu$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2288187 . Measurement of the production cross-section of a single top quark in association with a Z boson in proton–proton collisions at 13 TeV with the ATLAS detector -2289255 ! Measurement of the Drell-Yan triple-differential cross section in $pp$ collisions at $\sqrt{s} = 8$ TeV -2289256 ? A search for $B-L$ $R$-parity-violating top squarks in $\sqrt{s} = 13$ TeV $pp$ collisions with the ATLAS experiment -2289931 ? A search for pair-produced resonances in four-jet final states at $\sqrt{s}$=13 TeV with the ATLAS detector -2289945 ? Search for $WW/WZ$ resonance production in $\ell \nu qq$ final states in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector -2290620 . Measurement of differential cross sections of isolated-photon plus heavy-flavour jet production in pp collisions at $\sqrt{s}=8$ TeV using the ATLAS detector -2290634 ? Search for doubly charged Higgs boson production in multi-lepton final states with the ATLAS detector using proton–proton collisions at $\sqrt{s}=13\,\text {TeV}$ -2291047 ? Search for dark matter produced in association with bottom or top quarks in $\sqrt{s}$ = 13 TeV pp collisions with the ATLAS detector -2291692 ? Search for Supersymmetry in final states with missing transverse momentum and multiple $b$-jets in proton--proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2292095 ! Measurement of inclusive jet and dijet cross-sections in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2292164 ! Measurement of differential cross sections and $W^+/W^-$ cross-section ratios for $W$ boson production in association with jets at $\sqrt{s}=8$ TeV with the ATLAS detector -2292318 ? Search for dark matter and other new phenomena in events with an energetic jet and large missing transverse momentum using the ATLAS detector -2293594 ! A measurement of the soft-drop jet mass in pp collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2294807 . Search for top-squark pair production in final states with one lepton, jets, and missing transverse momentum using 36 fb$^{-1}$ of $\sqrt{s}=13$ TeV pp collision data with the ATLAS detector -2295733 ! Measurement of differential cross-sections of a single top quark produced in association with a $W$ boson at $\sqrt{s}=13$ TeV with ATLAS -2296315 . Search for long-lived charginos based on a disappearing-track signature in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2296406 . Measurement of the Higgs boson coupling properties in the $H\rightarrow ZZ^{*} \rightarrow 4\ell$ decay channel at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2296482 . Search for squarks and gluinos in final states with jets and missing transverse momentum using 36 fb$^{-1}$ of $\sqrt{s}$=13 TeV $pp$ collision data with the ATLAS detector -2296587 ? Search for exclusive Higgs and $Z$ boson decays to $\phi\gamma$ and $\rho\gamma$ with the ATLAS detector -2298252 ? Search for heavy resonances decaying into a $W$ or $Z$ boson and a Higgs boson in final states with leptons and $b$-jets in 36 fb$^{-1}$ of $\sqrt s = 13$ TeV $pp$ collisions with the ATLAS detector -2298276 ? Search for heavy $ZZ$ resonances in the $\ell^+\ell^-\ell^+\ell^-$ and $\ell^+\ell^-\nu\bar\nu$ final states using proton proton collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector -2298438 ! Measurement of the inclusive and fiducial $t\bar{t}$ production cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector -2298537 . Measurement of the production cross section of three isolated photons in $pp$ collisions at $\sqrt{s}$ = 8 TeV using the ATLAS detector -2298909 ? Search for electroweak production of supersymmetric states in scenarios with compressed mass spectra at $\sqrt{s}=13$ TeV with the ATLAS detector -2299049 ? Search for the Standard Model Higgs boson produced in association with top quarks and decaying into a $b\bar{b}$ pair in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2299050 ? Evidence for the associated production of the Higgs boson and a top quark pair with the ATLAS detector -2299162 . Measurement of the cross section for isolated-photon plus jet production in $pp$ collisions at $\sqrt s=13$ TeV using the ATLAS detector -2299430 . Measurements of $t\bar{t}$ differential cross-sections of highly boosted top quarks decaying to all-hadronic final states in $pp$ collisions at $\sqrt{s}=13\,$ TeV using the ATLAS detector -2301691 . A search for high-mass resonances decaying to $\tau\nu$ in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector -2302089 . Search for $W' \rightarrow tb$ decays in the hadronic final state using pp collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2302092 . Search for light resonances decaying to boosted quark pairs and produced in association with a photon or a jet in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2302492 . Measurements of Higgs boson properties in the diphoton decay channel with 36 fb$^{-1}$ of $pp$ collision data at $\sqrt{s} = 13$ TeV with the ATLAS detector -2302747 ? Search for a Structure in the $B^0_s \pi^\pm$ Invariant Mass Spectrum with the ATLAS Experiment -2303558 ? Search for photonic signatures of gauge-mediated supersymmetry in 13 TeV $pp$ collisions with the ATLAS detector -2304159 ? Search for Higgs boson decays to beyond-the-Standard-Model light bosons in four-lepton events with the ATLAS detector at $\sqrt{s}=13$ TeV -2304413 ? Search for the Decay of the Higgs Boson to Charm Quarks with the ATLAS Experiment -2304924 ! Measurements of differential cross sections of top quark pair production in association with jets in ${pp}$ collisions at $\sqrt{s}$=13 TeV using the ATLAS detector -2305380 X Performance of missing transverse momentum reconstruction with the ATLAS detector using proton-proton collisions at $\sqrt{s}$ = 13 TeV -2307399 ? Search for electroweak production of supersymmetric particles in final states with two or three leptons at $\sqrt{s}=13$ TeV with the ATLAS detector -2310281 ? Search for flavour-changing neutral current top-quark decays $t\to qZ$ in proton--proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2310460 ? Search for pair production of up-type vector-like quarks and for four-top-quark events in final states with multiple $b$-jets with the ATLAS detector -2310589 ? Search for top squarks decaying to tau sleptons in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector -2310780 ? Search for Higgs boson decays into pairs of light (pseudo)scalar particles in the $\gamma\gamma jj$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2311387 ? Search for a heavy Higgs boson decaying into a $Z$ boson and another heavy Higgs boson in the $\ell\ell bb$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2312374 ? Search for supersymmetry in events with four or more leptons in $\sqrt{s}=13$ TeV $pp$ collisions with ATLAS -2312375 ? Search for R-parity-violating supersymmetric particles in multi-jet final states produced in $p$--$p$ collisions at $\sqrt{s} =$ 13 TeV using the ATLAS detector at the LHC -2312376 ? Search for low-mass dijet resonances using trigger-level jets with the ATLAS detector in $pp$ collisions at $\sqrt{s}=13$ TeV -2313703 ? Search for pair production of Higgs bosons in the $b\bar{b}b\bar{b}$ final state using proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2315063 ? A search for lepton-flavor-violating decays of the $Z$ boson into a $\tau$-lepton and a light lepton with the ATLAS detector -2315706 ? Search for heavy particles decaying into top-quark pairs using lepton-plus-jets events in proton--proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2316225 ? Search for supersymmetry in final states with charm jets and missing transverse momentum in 13 TeV $pp$ collisions with the ATLAS detector -2316379 ? Search for heavy resonances decaying to a photon and a hadronically decaying $Z/W/H$ boson in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2316380 ? Measurements of $b$-jet tagging efficiency with the ATLAS detector using $t\bar{t}$ events at $\sqrt{s}=13$ TeV -2316982 . Measurement of colour flow using jet-pull observables in $t\bar{t}$ events with the ATLAS experiment at $\sqrt{s} = 13$ TeV -2317118 ? Search for flavor-changing neutral currents in top quark decays $t\to Hc$ and $t \to Hu$ in multilepton final states in proton--proton collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector -2317227 ? Angular analysis of $B^0_d \to K^{*}\mu^+\mu^-$ decays in $pp$ collisions at $\sqrt{s}= 8$ TeV with the ATLAS detector -2317228 ? Prompt and non-prompt $J/\psi$ and $\psi(2\mathrm{S})$ suppression at high transverse momentum in 5.02 TeV Pb+Pb collisions with the ATLAS experiment -2318117 ! Measurement of dijet azimuthal decorrelations in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector and determination of the strong coupling -2318279 ? Measurement of jet fragmentation in Pb+Pb and $pp$ collisions at $\sqrt{s_{NN}} = 5.02$ TeV with the ATLAS detector -2318293 ? Measurement of the suppression and azimuthal anisotropy of muons from heavy-flavor decays in Pb+Pb collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$ TeV with the ATLAS detector -2318295 . Measurement of the nuclear modification factor for inclusive jets in Pb+Pb collisions at $\sqrt{s_\mathrm{NN}}=5.02$ TeV with the ATLAS detector -2319920 . Search for resonances in the mass distribution of jet pairs with one or two jets identified as $b$-jets in proton--proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2320499 ! Combined measurement of differential and total cross sections in the $H \rightarrow \gamma \gamma$ and the $H \rightarrow ZZ^\ast \rightarrow 4\ell$ decay channels at $\sqrt{s} = 13$ TeV with the ATLAS detector -2320693 . Search for new phenomena using the invariant mass distribution of same-flavour opposite-sign dilepton pairs in events with missing transverse momentum in $\sqrt{s}=13$ TeV $pp$ collisions with the ATLAS detector -2621113 ? Measurement of the Higgs boson mass in the $H\rightarrow ZZ^* \rightarrow 4\ell$ and $H \rightarrow \gamma\gamma$ channels with $\sqrt{s}=13$ TeV $pp$ collisions using the ATLAS detector -2621167 X Observation of Higgs boson production in association with a top quark pair at the LHC with the ATLAS detector -2621727 . Search for resonant $WZ$ production in the fully leptonic final state in proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2621963 . Search for pair production of heavy vector-like quarks decaying into high-$p_{\rm T}$ $W$ bosons and top quarks in the lepton-plus-jets final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2622093 X Operation and performance of the ATLAS Tile Calorimeter in Run 1 -2622094 ! Search for chargino-neutralino production using recursive jigsaw reconstruction in final states with two or three charged leptons in proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2622693 . Search for pair production of higgsinos in final states with at least three $b$-tagged jets in $\sqrt{s} = 13$ TeV $pp$ collisions using the ATLAS detector -2623971 . Probing the quantum interference between singly and doubly resonant top-quark production in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2624918 . Search for the Higgs boson produced in association with a vector boson and decaying into two spin-zero particles in the $H \rightarrow aa \rightarrow 4b$ channel in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2625324 . Observation of centrality-dependent acoplanarity for muon pairs produced via two-photon scattering in Pb+Pb collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with the ATLAS detector -2626965 . Search for pair- and single-production of vector-like quarks in final states with at least one $Z$ boson decaying into a pair of electrons or muons in $pp$ collision data collected with the ATLAS detector at $\sqrt{s} = 13$ TeV -2628120 . Search for Higgs boson decays into a pair of light bosons in the $bb\mu\mu$ final state in $pp$ collision at $\sqrt{s} = $13 TeV with the ATLAS detector -2628217 . Searches for exclusive Higgs and $Z$ boson decays into $J/\psi\gamma$, $\psi(2S)\gamma$, and $\Upsilon(nS)\gamma$ at $\sqrt{s}=13$ TeV with the ATLAS detector -2628787 ? Correlated long-range mixed-harmonic fluctuations measured in $pp$, $p$+Pb and low-multiplicity Pb+Pb collisions with the ATLAS detector -2630823 . Search for Higgs boson pair production in the $\gamma\gamma b\bar{b}$ final state with 13 TeV $pp$ collision data collected by the ATLAS experiment -2630897 . Prompt and non-prompt $J/\psi$ elliptic flow in Pb+Pb collisions at $\sqrt{s_{_\text{NN}}} = 5.02$ TeV with the ATLAS detector -2631602 . Search for lepton-flavor violation in different-flavor, high-mass final states in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector -2631806 ! A strategy for a general search for new phenomena using data-derived signal regions and its application within the ATLAS experiment -2631950 . Search for charged Higgs bosons decaying via $H^{\pm} \to \tau^{\pm}\nu_{\tau}$ in the $\tau$+jets and $\tau$+lepton final states with 36 fb$^{-1}$ of $pp$ collision data recorded at $\sqrt{s} = 13$ TeV with the ATLAS experiment -2632142 . Search for Higgs boson pair production in the $\gamma\gamma WW^{*}$ channel using $pp$ collision data recorded at $\sqrt{s} = 13$ TeV with the ATLAS detector -2632158 . Search for Higgs bosons produced via vector-boson fusion and decaying into bottom quark pairs in $\sqrt{s} = 13$ $\mathrm{TeV}$ $pp$ collisions with the ATLAS detector -2632341 X In situ calibration of large-$R$ jet energy and mass in 13 TeV proton-proton collisions with the ATLAS detector -2632527 . Search for vector-boson resonances decaying to a top quark and bottom quark in the lepton plus jets final state in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2632806 . Search for dark matter in events with a hadronically decaying vector boson and missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector -2632923 . Search for new phenomena in events with same-charge leptons and $b$-jets in $pp$ collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector -2632994 ? A search for resonant and non-resonant Higgs boson pair production in the $b\bar{b}\tau^+\tau^-$ decay channel in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +846365 X Drift Time Measurement in the ATLAS Liquid Argon Electromagnetic Calorimeter using Cosmic Muons +849050 . Charged-particle multiplicities in $pp$ interactions at $\sqrt{s}=900$ GeV measured with the ATLAS detector at the LHC +853395 X The ATLAS Inner Detector commissioning and calibration +856179 X The ATLAS Simulation Infrastructure +856566 X Performance of the ATLAS Detector using First Collision Data +859286 X Commissioning of the ATLAS Muon Spectrometer with Cosmic Rays +863749 X Readiness of the ATLAS Tile Calorimeter for LHC collisions +865423 ? Search for New Particles in Two-Jet Final States in 7 TeV Proton-Proton Collisions with the ATLAS Detector at the LHC +871366 . Measurement of inclusive jet and dijet cross sections in proton-proton collisions at 7 TeV centre-of-mass energy with the ATLAS detector +871487 ? Search for quark contact interactions in dijet angular distributions in $pp$ collisions at $\sqrt{s}=7$ TeV measured with the ATLAS detector +872570 . Measurement of the $W \to \ell\nu$ and $Z/\gamma^* \to \ell\ell$ production cross sections in proton-proton collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector +874862 . Study of energy response and resolution of the ATLAS barrel calorimeter to hadrons of energies from 20-GeV to 350-GeV +878496 X Studies of the performance of the ATLAS detector using cosmic-ray muons +878733 ? Observation of a Centrality-Dependent Dijet Asymmetry in Lead-Lead Collisions at $\sqrt{s_{NN}}=2.77$ TeV with the ATLAS Detector at the LHC +879407 . Measurement of underlying event characteristics using charged particles in pp collisions at $\sqrt{s} = 900 GeV$ and 7 TeV with the ATLAS detector +880002 . Measurement of the top quark-pair production cross section with ATLAS in pp collisions at $\sqrt{s}=7$ TeV +881812 ? Search for Diphoton Events with Large Missing Transverse Energy in 7 TeV Proton-Proton Collisions with the ATLAS Detector +882098 . Charged-particle multiplicities in pp interactions measured with the ATLAS detector at the LHC +882463 . Measurement of the inclusive isolated prompt photon cross section in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +882519 . Measurement of the centrality dependence of J/ψ yields and observation of Z production in lead–lead collisions with the ATLAS detector at the LHC +882534 . Measurement of the production cross section for W-bosons in association with jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +882984 . Study of Jet Shapes in Inclusive Jet Production in $pp$ Collisions at $\sqrt{s}=7$ TeV using the ATLAS Detector +884120 X Luminosity Determination in $pp$ Collisions at $\sqrt{s}=7$ TeV Using the ATLAS Detector at the LHC +886505 ? Search for Massive Long-lived Highly Ionising Particles with the ATLAS Detector at the LHC +889431 ? Search for supersymmetry using final states with one lepton, jets, and missing transverse momentum with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ +889546 . Measurement of Dijet Azimuthal Decorrelations in $pp$ Collisions at $\sqrt{s}=7$ TeV +890749 . Search for squarks and gluinos using final states with jets and missing transverse momentum with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions +891737 ? Search for high-mass states with one lepton plus missing transverse momentum in proton-proton collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector +891834 . Measurements of underlying-event properties using neutral and charged particles in $pp$ collisions at 900 GeV and 7 TeV with the ATLAS detector at the LHC +892044 ? Search for stable hadronising squarks and gluinos with the ATLAS experiment at the LHC +892704 . Measurement of the $W$ charge asymmetry in the $W \to \mu \nu$ decay mode in $pp$ collisions at $\sqrt s=7$ TeV with the ATLAS detector +893264 ? Search for New Physics in Dijet Mass and Angular Distributions in pp Collisions at $\sqrt{s} = 7$ TeV Measured with the ATLAS Detector +893493 ? Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$TeV in final states with missing transverse momentum and $b$-jets +894358 ? Search for a heavy particle decaying into an electron and a muon with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC +894576 ? Search for high mass dilepton resonances in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS experiment +894578 . Search for supersymmetric particles in events with lepton pairs and large missing transverse momentum in $\sqrt{s}=7$ TeV proton-proton collisions with the ATLAS experiment +894579 ? Search for an excess of events with an identical flavour lepton pair and significant missing transverse momentum in $\sqrt{s}=7$ TeV proton-proton collisions with the ATLAS detector +894867 . Measurement of the Inelastic Proton-Proton Cross-Section at $\sqrt{s}=7$ TeV with the ATLAS Detector +896268 . Measurement of the differential cross-sections of inclusive, prompt and non-prompt $J/\psi$ production in proton-proton collisions at $\sqrt{s}=7$ TeV +897002 . Search for pair production of first or second generation leptoquarks in proton-proton collisions at $\sqrt{s}=7$ TeV using the ATLAS detector at the LHC +897028 ? Search for Contact Interactions in Dimuon Events from $pp$ Collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector +897330 . Measurement of the $W W$ cross section in $\sqrt{s}=7$ TeV $pp$ collisions with ATLAS +913039 ? Measurement of Wgamma and Zgamma production in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector +913576 X Limits on the production of the Standard Model Higgs Boson in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +914491 . Search for heavy long-lived charged particles with the ATLAS detector in $pp$ collisions at $\sqrt{s}=$ 7 TeV +915920 . Search for new phenomena with the monojet and missing transverse momentum signature using the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions +915921 . Measurement of the $\Upsilon$(1S) production cross-section in $pp$ collisions at $\sqrt{s}=$ 7 TeV in ATLAS +916832 . Measurement of the isolated di-photon cross-section in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +916840 ? Search for Diphoton Events with Large Missing Transverse Energy with 36 pb$^{-1}$ of 7 TeV Proton-Proton Collision Data with the {ATLAS} Detector +917526 . Measurement of dijet production with a veto on additional central jet activity in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector +917599 . Measurement of multi-jet cross sections in proton-proton collisions at a 7 TeV center-of-mass energy +917931 . Measurement of the transverse momentum distribution of Z/γ⁎ bosons in proton–proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector +919017 . Properties of jets measured from tracks in proton-proton collisions at center-of-mass energy $\sqrt{s}=7$ TeV with the ATLAS detector +920199 . Search for neutral MSSM Higgs bosons decaying to $\tau^{+}\tau^-$ pairs in proton-proton collisions at $\sqrt{s}=$ 7 TeV with the ATLAS detector +921594 . Measurement of the inclusive isolated prompt photon cross-section in $pp$ collisions at $\sqrt{s}=$ 7 TeV using 35 pb$^{-1}$ of ATLAS data +921596 . Inclusive search for same-sign dilepton signatures in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +922291 ? Search for a heavy gauge boson decaying to a charged lepton and a neutrino in 1 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}=$ 7 TeV using the ATLAS detector +922410 . Search for dilepton resonances in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +922601 . Measurement of the Z to tau tau Cross Section with the ATLAS Detector +924315 . Measurement of the top quark pair production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV in dilepton final states with ATLAS +924669 . Measurement of the $W \to \tau \nu_\tau$ cross section in $pp$ collisions at $\sqrt{s}=$7 TeV with the ATLAS experiment +924848 . A measurement of the ratio of the $W$ and $Z$ cross sections with exactly one associated jet in $pp$ collisions at $\sqrt{s}=$7 TeV with ATLAS +925052 ? Search for a heavy Standard Model Higgs boson in the channel $H \to ZZ \to \ell^+ \ell^− q \bar q$ using the ATLAS detector +925553 X Performance of Missing Transverse Momentum Reconstruction in Proton-Proton Collisions at 7 TeV with ATLAS +925716 . Search for the Standard Model Higgs boson in the two photon decay channel with the ATLAS detector at the LHC +925720 . Measurement of the pseudorapidity and transverse momentum dependence of the elliptic flow of charged particles in lead-lead collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS detector +925723 . Measurement of the centrality dependence of the charged particle pseudorapidity distribution in lead-lead collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS detector +925932 . Measurement of the Transverse Momentum Distribution of $W$ Bosons in $pp$ Collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector +925933 . Search for New Physics in the Dijet Mass Distribution using 1 fb$^{-1}$ of $pp$ Collision Data at $\sqrt{s}=$7 TeV collected by the ATLAS Detector +926145 . Measurements of the electron and muon inclusive cross-sections in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +926641 . Measurement of the cross section for the production of a $W$ boson in association with $b^-$ jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +926666 . Measurement of the cross-section for $b$-jets produced in association with a $Z$ boson at $\sqrt{s}=$ 7 TeV with the ATLAS detector +927046 ? Search for displaced vertices arising from decays of new heavy particles in 7 TeV pp collisions at ATLAS +927405 . Search for a heavy neutral particle decaying into an electron and a muon using 1 fb$^{-1}$ of ATLAS data +927504 . Search for a Standard Model Higgs boson in the $H -> ZZ -> l^+l^-v\nu^-$ decay channel with the ATLAS detector +927667 ? Search for the Higgs boson in the $H -> WW -> lvjj$ decay channel in pp collisions at sqrt{s} = 7 TeV with the ATLAS detector +928224 . Search for New Phenomena in $t\bar{t}$ Events With Large Missing Transverse Momentum in Proton-Proton Collisions at $\sqrt{s}=7$ TeV with the ATLAS Detector +928289 . Measurement of the inclusive $W^\pm$ and Z/gamma cross sections in the electron and muon decay channels in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +929691 . Measurement of the jet fragmentation function and transverse profile in proton-proton collisions at a center-of-mass energy of 7 TeV with the ATLAS detector +929699 . Search for the Standard Model Higgs boson in the decay channel H→ZZ$^{(⁎)}$→4ℓ with the ATLAS detector +930002 . Search for squarks and gluinos using final states with jets and missing transverse momentum with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions +930005 . Search for supersymmetry in final states with jets, missing transverse momentum and one isolated lepton in $\sqrt{s} = 7$ TeV pp collisions using 1 $fb^{-1}$ of ATLAS data +930220 . Measurement of the inclusive and dijet cross-sections of $b^-$ jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +930968 . Performance of the ATLAS Trigger System in 2010 +939504 . Search for new phenomena in final states with large jet multiplicities and missing transverse momentum using $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector +939560 . Search for Massive Colored Scalars in Four-Jet Final States in $\sqrt{s}=7$ TeV proton-proton collisions with the ATLAS Detector +940010 . Electron performance measurements with the ATLAS detector using the 2010 LHC proton-proton collision data +941539 ? Measurement of the $Z Z$ production cross section and limits on anomalous neutral triple gauge couplings in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +943401 . Searches for supersymmetry with the ATLAS detector using final states with two leptons and missing transverse momentum in $\sqrt{s}=7$ TeV proton-proton collisions +943402 . A study of the material in the ATLAS inner detector using secondary hadronic interactions +943969 . Search for strong gravity signatures in same-sign dimuon final states using the ATLAS detector at the LHC +944826 . Kshort and $\Lambda$ production in $pp$ interactions at $\sqrt{s}=0.9$ and 7 TeV measured with the ATLAS detector at the LHC +945498 . Measurement of the production cross section for Z/gamma* in association with jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +946427 . Search for diphoton events with large missing transverse momentum in fb$^{-1}$ of 7 TeV proton–proton collision data with the ATLAS detector +954993 . Measurement of the $W^\pm Z$ production cross section and limits on anomalous triple gauge couplings in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1080740 . Search for extra dimensions using diphoton events in 7 TeV proton–proton collisions with the ATLAS detector +1080891 . Search for the Higgs boson in the $H \to$ WW(*) $\to \ell_\nu\ell_\nu$ decay channel in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1081556 . Search for production of resonant states in the photon-jet mass distribution using $pp$ collisions at $\sqrt{s}=7$ TeV collected by the ATLAS detector +1081778 ? Search for scalar bottom quark pair production with the ATLAS detector in $pp$ Collisions at $\sqrt{s}=7$ TeV +1081998 ? Search for contact interactions in dilepton events from $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1082009 . Measurement of $D^{*+/-}$ meson production in jets from pp collisions at sqrt(s) = 7 TeV with the ATLAS detector +1082275 . Search for first generation scalar leptoquarks in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1082461 . Observation of a new $\chi_b$ state in radiative transitions to $\Upsilon(1S)$ and $\Upsilon(2S)$ at ATLAS +1082928 . Search for heavy vector-like quarks coupling to light quarks in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1082936 . Measurement of inclusive jet and dijet production in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector +1082939 . Jet energy measurement with the ATLAS detector in proton-proton collisions at $\sqrt{s}=7$ TeV +1083313 . Search for anomalous production of prompt like-sign muon pairs and constraints on physics beyond the Standard Model with the ATLAS detector +1083318 . Study of jets produced in association with a $W$ boson in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1083794 . Measurement of the top quark pair production cross-section with ATLAS in the single lepton channel +1084540 . Rapidity gap cross sections measured with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV +1084697 ? Search for excited leptons in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1085980 . Search for decays of stopped, long-lived particles from 7 TeV pp collisions with the ATLAS detector +1088223 X Combined search for the Standard Model Higgs boson using up to 4.9 fb$^{-1}$ of $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS detector at the LHC +1088224 X Search for the Standard Model Higgs boson in the diphoton decay channel with 4.9 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}=7$ TeV with ATLAS +1088225 ? Search for the Standard Model Higgs boson in the decay channel $H \to ZZ^{(*)} \to 4 \ell$ with 4.8 fb$^{-1}$ of $pp$ collision data at $\sqrt{s}=7$ TeV with ATLAS +1089079 . Search for pair production of a heavy up-type quark decaying to a W boson and a b quark in the lepton+jets channel with the ATLAS detector +1089152 . Search for pair-produced heavy quarks decaying to Wq in the two-lepton channel at $\sqrt{s}=7$ TeV with the ATLAS detector +1090055 . Search for anomaly-mediated supersymmetry breaking with the ATLAS detector based on a disappearing-track signature in $pp$ collisions at $\sqrt{s}=7$ TeV +1090057 . Measurement of the cross section for top-quark pair production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector using final states with two high-pt leptons +1090422 . Search for same-sign top-quark production and fourth-generation down-type quarks in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1091070 . Search for down-type fourth generation quarks with the ATLAS detector in events with one lepton and hadronically decaying $W$ bosons +1091481 . Measurement of the azimuthal ordering of charged hadrons with the ATLAS detector +1091527 ? Search for FCNC single top-quark production at $\sqrt{s}=7$ TeV with the ATLAS detector +1092728 . Search for new particles decaying to $Z Z$ using final states with leptons and jets with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions +1092978 . Single hadron response measurement and calorimeter jet energy scale uncertainty with the ATLAS detector at the LHC +1092979 . Search for a light Higgs boson decaying to long-lived weakly-interacting particles in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1093486 . Measurement of the polarisation of $W$ bosons produced with large transverse momentum in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS experiment +1093733 . Measurement of the azimuthal anisotropy for charged particle production in $\sqrt{s_{NN}}=2.76$ TeV lead-lead collisions with the ATLAS detector +1093734 . Forward-backward correlations and charged-particle azimuthal distributions in pp interactions using the ATLAS detector +1093738 . Measurement of the production cross section of an isolated photon associated with jets in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1093739 . Search for second generation scalar leptoquarks in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1094061 . Measurement of inclusive two-particle angular correlations in pp collisions with the ATLAS detector at the LHC +1094167 . Determination of the strange quark density of the proton from ATLAS measurements of the $W \to \ell \nu$ and $Z \to \ell\ell$ cross sections +1094169 . Observation of spin correlation in $t \bar{t}$ events from pp collisions at sqrt(s) = 7 TeV using the ATLAS detector +1094175 . Measurement of the charge asymmetry in top quark pair production in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector +1094564 . Jet mass and substructure of inclusive jets in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS experiment +1094568 . Measurement of $t \bar{t}$ production with a veto on additional central jet activity in pp collisions at sqrt(s) = 7 TeV using the ATLAS detector +1094857 . Search for heavy neutrinos and right-handed $W$ bosons in events with two leptons and jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1094859 . Measurement of the top quark mass with the template method in the $t \bar{t}$ -> lepton + jets channel using ATLAS data +1094860 . Search for gluinos in events with two same-sign leptons, jets and missing transverse momentum with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV +1095236 . Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$ TeV in final states with missing transverse momentum and $b^-$ jets with the ATLAS detector +1095238 . Measurement of the $W W$ cross section in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector and limits on anomalous gauge couplings +1095404 . Search for events with large missing transverse momentum, jets, and at least two tau leptons in 7 TeV proton–proton collision data with the ATLAS detector +1102909 . Search for the decay $B_s^0 \to \mu \mu$ with the ATLAS detector +1104755 . Search for pair production of a new quark that decays to a Z boson and a bottom quark with the ATLAS detector +1107731 . Search for resonant $WZ$ production in the $WZ \to \ell \nu \ell^\prime\ell^\prime$ channel in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector +1110689 . Search for charged Higgs bosons decaying via $H^{+} \to \tau \nu$ in top quark pair events using $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS detector +1111144 . Search for supersymmetry with jets, missing transverse momentum and at least one hadronically decaying $\tau$ lepton in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1111820 . Search for TeV-scale gravity signatures in final states with leptons and jets with the ATLAS detector at $\sqrt{s}=7$ TeV +1112263 . Search for supersymmetry in events with three leptons and missing transverse momentum in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector +1112906 . Measurement of $\tau$ polarization in $W -> \tau \nu$ decays with the ATLAS detector in pp collisions at sqrt(s) = 7 TeV +1112907 ? Search for scalar top quark pair production in natural gauge mediated supersymmetry models with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV +1113444 ? Search for a fermiophobic Higgs boson in the diphoton decay channel with the ATLAS detector +1113445 . Search for lepton flavour violation in the emu continuum with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC +1113597 . Search for tb resonances in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1114034 . Measurement of the top quark pair cross section with ATLAS in $pp$ collisions at $\sqrt{s} =$ 7 TeV using final states with an electron or a muon and a hadronically decaying $\tau$ lepton +1114314 . Measurement of the W boson polarization in top quark decays with the ATLAS detector +1114319 . Measurement of $W \gamma$ and $Z \gamma$ production cross sections in $pp$ collisions at $\sqrt{s}=7$ TeV and limits on anomalous triple gauge couplings with the ATLAS detector +1114487 . Measurement of the $t$-channel single top-quark production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1115822 . A search for $t\bar{t}$ resonances with the ATLAS detector in 2.05 fb$^{-1}$ of proton-proton collisions at $\sqrt{s}=7$ TeV +1116151 . Evidence for the associated production of a $W$ boson and a top quark in ATLAS at $\sqrt{s}=7$ TeV +1116532 . Search for a standard sodel Higgs boson in the H $\to$ ZZ $\to \ell^{+}\ell^{-}\nu \bar{\nu}$ decay channel using 4.7 fb$^{-1}$ of $\sqrt{s} =$ 7 TeV data with the ATLAS detector +1116876 . A search for flavour changing neutral currents in top-quark decays in $pp$ collision data collected with the ATLAS detector at $\sqrt{s}=7$ TeV +1117206 . Search for the Standard Model Higgs boson in the $H \to$ WW(*) $\to \ell \nu \ell \nu$ decay mode with 4.7 /fb of ATLAS data at $\sqrt{s}=7$ TeV +1117704 . Hunt for new phenomena using large jet multiplicities and missing transverse momentum with ATLAS in 4.7 fb$^{-1}$ of $\sqrt{s}=7$ TeV proton-proton collisions +1117887 . Measurement of event shapes at large momentum transfer with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV +1118040 . Search for a standard model Higgs boson in the mass range 200-600 GeV in the $H \to ZZ \to \ell^+ \ell^- q \bar{q}$ decay channel with the ATLAS detector +1118269 . Measurement of the b-hadron production cross section using decays to $D^{*}\mu^-X$ final states in pp collisions at sqrt(s) = 7 TeV with the ATLAS detector +1119557 . ATLAS Measurements of the Properties of Jets for Boosted Particle Searches +1120011 . Search for the Standard Model Higgs boson in the $H$ to $\tau^{+} \tau^{-}$ decay mode in $\sqrt{s}=7$ TeV $pp$ collisions with ATLAS +1120014 . Search for the Higgs boson in the $H \to W W \to$ lnujj decay channel at $\sqrt{s}=7$ TeV with the ATLAS detector +1120736 ? Search for the Standard Model Higgs boson produced in association with a vector boson and decaying to a $b$-quark pair with the ATLAS detector +1120741 X Combined search for the Standard Model Higgs boson in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector +1121875 . Measurement of the $Λ_b^0$ lifetime and mass in the ATLAS experiment +1121877 . A search for $t\bar{t}$ resonances in lepton+jets events with highly boosted top quarks collected in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector +1123116 . Search for top and bottom squarks from gluino pair production in final states with missing transverse energy and at least three b-jets with the ATLAS detector +1123657 . Measurements of top quark pair relative differential cross-sections with ATLAS in $pp$ collisions at $\sqrt{s}=7$ TeV +1124035 ? Search for magnetic monopoles in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector +1124167 . Measurement of charged-particle event shape variables in $\sqrt{s}=7$ TeV proton-proton interactions with the ATLAS detector +1124337 X Observation of a new particle in the search for the Standard Model Higgs boson with the ATLAS detector at the LHC +1125575 . Underlying event characteristics and their dependence on jet size of charged-particle jet events in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1125576 . Time-dependent angular analysis of the decay $B_{s}^{0} \to J/{\psi\phi}$ and extraction of $\Delta\Gamma_{s}$ and the CP-violating weak phase $\phi_s$ by ATLAS +1125961 . Search for squarks and gluinos with the ATLAS detector in final states with jets and missing transverse momentum using 4.7 fb$^{-1}$ of $\sqrt{s}=7$ TeV proton-proton collision data +1126131 . Measurement of $WZ$ production in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1126136 . Search for a supersymmetric partner to the top quark in final states with jets and missing transverse momentum at $\sqrt{s}=7$ TeV with the ATLAS detector +1126965 . Measurement of the jet radius and transverse momentum dependence of inclusive jet suppression in lead-lead collisions at $\sqrt{s_{NN}}$= 2.76 TeV with the ATLAS detector +1127331 . Search for direct top squark pair production in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt{s}=7$ TeV $pp$ collisions using 4.7 $fb^{-1}$ of ATLAS data +1127504 . Search for new phenomena in the $W W$ to $\ell \nu \ell$' $\nu$' final state in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1127505 . Search for direct slepton and gaugino production in final states with two leptons and missing transverse momentum with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV +1127601 . Search for direct production of charginos and neutralinos in events with three leptons and missing transverse momentum in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector +1128464 . Search for light scalar top quark pair production in final states with two leptons with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions +1180197 . Further search for supersymmetry at $\sqrt{s}=7$ TeV in final states with jets, missing transverse momentum and isolated leptons with the ATLAS detector +1183818 . Measurements of the pseudorapidity dependence of the total transverse energy in proton-proton collisions at $\sqrt{s}=7$ TeV with ATLAS +1184351 ? Search for diphoton events with large missing transverse momentum in 7 TeV proton-proton collision data with the ATLAS detector +1184943 . Prototype ATLAS IBL Modules using the FE-I4A Front-End Readout Chip +1184952 . Search for light top squark pair production in final states with leptons and $b^-$ jets with the ATLAS detector in $\sqrt{s}=7$ TeV proton-proton collisions +1185259 . Search for high-mass resonances decaying to dilepton final states in pp collisions at s**(1/2) = 7-TeV with the ATLAS detector +1186556 . Search for a heavy top-quark partner in final states with two leptons with the ATLAS detector at the LHC +1186731 . ATLAS search for a heavy gauge boson decaying to a charged lepton and a neutrino in $pp$ collisions at $\sqrt{s}=7$ TeV +1186740 . Search for dark matter candidates and large extra dimensions in events with a photon and missing transverse momentum in $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS detector +1188681 . Search for resonant top plus jet production in $t\bar{t}$ + jets events with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV +1188890 . Search for displaced muonic lepton jets from light Higgs boson decay in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1188891 . Measurement of the flavour composition of dijet events in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1189432 ? Search for Supersymmetry in Events with Large Missing Transverse Momentum, Jets, and at Least One Tau Lepton in 7 TeV Proton-Proton Collision Data with the ATLAS Detector +1189659 . ATLAS search for new phenomena in dijet mass and angular distributions using $pp$ collisions at $\sqrt{s}=7$ TeV +1190185 ? Search for direct chargino production in anomaly-mediated supersymmetry breaking models based on a disappearing-track signature in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1190187 . Measurement of $W^+W^-$ production in pp collisions at $\sqrt{s}$=7  TeV with the ATLAS detector and limits on anomalous WWZ and WWγ couplings +1190891 . Search for R-parity-violating supersymmetry in events with four or more leptons in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector +1190892 . Search for dark matter candidates and large extra dimensions in events with a jet and missing transverse momentum with the ATLAS detector +1190896 . Search for anomalous production of prompt like-sign lepton pairs at $\sqrt{s}=7$ TeV with the ATLAS detector +1191022 . Search for pair production of massive particles decaying into three quarks with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC +1191023 ? Search for pair-produced massive coloured scalars in four-jet final states with the ATLAS detector in proton-proton collisions at $\sqrt{s}=7$ TeV +1191430 . Search for doubly-charged Higgs bosons in like-sign dilepton final states at $\sqrt{s}=7$ TeV with the ATLAS detector +1191898 . Search for pair production of heavy top-like quarks decaying to a high-pT $W$ boson and a $b$ quark in the lepton plus jets final state at $\sqrt{s}$=7 TeV with the ATLAS detector +1192920 . Jet energy resolution in proton-proton collisions at $\sqrt{s}=7$ TeV recorded in 2010 with the ATLAS detector +1193044 . Measurement of $Z$ boson Production in Pb+Pb Collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS Detector +1193050 . A search for high-mass resonances decaying to $\tau^+\tau^-$ in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1193933 . Search for long-lived, heavy particles in final states with a muon and multi-track displaced vertex in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1194807 . The ATLAS Trigger/DAQ Authorlist, version 4.0 +1196722 . Muon Detection Based on a Hadronic Calorimeter +1197323 ? Search for Extra Dimensions in diphoton events using proton-proton collisions recorded at $\sqrt{s}=7$ TeV with the ATLAS detector at the LHC +1198341 ? Search for contact interactions and large extra dimensions in dilepton events from $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1198427 ? Search for supersymmetry in events with photons, bottom quarks, and missing transverse momentum in proton–proton collisions at a centre-of-mass energy of 7 TeV with the ATLAS detector +1199005 ? Searches for heavy long-lived sleptons and R-Hadrons with the ATLAS detector in $pp$ collisions at $\sqrt{s}=7$ TeV +1199269 . Measurement of isolated-photon pair production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1201945 ? Search for resonances decaying into top-quark pairs using fully hadronic decays in $pp$ collisions with ATLAS at $\sqrt{s}=7$ TeV +1203852 . Measurement of $ZZ$ production in $pp$ collisions at $\sqrt{s}=7$ TeV and limits on anomalous $ZZZ$ and $ZZ\gamma$ couplings with the ATLAS detector +1204447 . Search for new phenomena in events with three charged leptons at $/sqrt{s}$ = 7 TeV with the ATLAS detector +1204784 . Measurement of angular correlations in Drell-Yan lepton pairs to probe Z/gamma* boson transverse momentum at sqrt(s)=7 TeV with the ATLAS detector +1204786 ? Search for the neutral Higgs bosons of the Minimal Supersymmetric Standard Model in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1204991 . Measurement of the ttbar production cross section in the tau+jets channel using the ATLAS detector +1204994 . Measurement of Upsilon production in 7 TeV pp collisions at ATLAS +1205881 ? Search for a heavy narrow resonance decaying to $e \mu$, $e \tau$, or $\mu \tau$ with the ATLAS detector in $\sqrt{s}=7$ TeV $pp$ collisions at the LHC +1207451 ? Search for charged Higgs bosons through the violation of lepton universality in $t\bar{t}$ events using $pp$ collision data at $\sqrt{s}=7$ TeV with the ATLAS experiment +1208304 ? Observation of Associated Near-Side and Away-Side Long-Range Correlations in $\sqrt{s_{NN}}$=5.02  TeV Proton-Lead Collisions with the ATLAS Detector +1208548 ? A search for prompt lepton-jets in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1208701 ? Multi-channel search for squarks and gluinos in $\sqrt{s}=7$ TeV $pp$ collisions with the ATLAS detector +1209719 ? Search for single $b^*$-quark production with the ATLAS detector at $\sqrt{s}=7$ TeV +1210114 . Evaluation of the local hadronic calibration with combined beam-test data for the endcap and forward calorimeters of ATLAS in the pseudorapidity region 2.5 < |eta| < 4.0 +1215605 ? Search for long-lived, multi-charged particles in pp collisions at $\sqrt{s}$=7 TeV using the ATLAS detector +1216670 . Measurement of hard double-parton interactions in $W(\to l\nu)$+ 2 jet events at $\sqrt{s}$=7 TeV with the ATLAS detector +1217863 . Measurements of $W \gamma$ and $Z \gamma$ production in $pp$ collisions at $\sqrt{s}$=7  TeV with the ATLAS detector at the LHC +1217867 . Measurement of kT splitting scales in W->lv events at sqrt(s)=7 TeV with the ATLAS detector +1219109 . Measurement of the cross-section for W boson production in association with b-jets in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector +1219797 ? Search for a light charged Higgs boson in the decay channel $H^+ \to c\bar{s}$ in $t\bar{t}$ events using pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector +1219960 X Improved luminosity determination in pp collisions at sqrt(s) = 7 TeV using the ATLAS detector at the LHC +1219961 ? Search for WH production with a light Higgs boson decaying to prompt electron-jets in proton-proton collisions at $\sqrt{s}$=7 TeV with the ATLAS detector +1222129 X Characterisation and mitigation of beam-induced backgrounds observed in the ATLAS detector during the 2011 proton-proton run +1222326 ? Search for third generation scalar leptoquarks in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector +1223123 . Measurement with the ATLAS detector of multi-particle azimuthal correlations in p+Pb collisions at $\sqrt{s_{NN}}$ =5.02 TeV +1223730 X A particle consistent with the Higgs Boson observed with the ATLAS Detector at the Large Hadron Collider +1228693 . Measurement of the inclusive jet cross section in pp collisions at sqrt(s)=2.76 TeV and comparison to the inclusive jet cross section at sqrt(s)=7 TeV using the ATLAS detector +1229502 ? Search for nonpointing photons in the diphoton and $E^{miss}_T$ final state in $\sqrt{s}$=7  TeV proton-proton collisions using the ATLAS detector +1229507 ? Study of heavy-flavor quarks produced in association with top-quark pairs at $\sqrt{s}=7$  TeV using the ATLAS detector +1230812 . Measurement of the production cross section of jets in association with a Z boson in pp collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector +1231616 ? Search for resonant diboson production in the WW/WZ→ℓνjj decay channels with the ATLAS detector at $\sqrt{s}$ = 7  TeV +1232965 X Triggers for displaced decays of long-lived neutral particles in the ATLAS detector +1233089 ? Search for $t\bar t$ resonances in the lepton plus jets final state with ATLAS using 4.7 fb$^{-1}$ of $pp$ collisions at $\sqrt{s} = 7$ TeV +1233359 . Measurement of the distributions of event-by-event flow harmonics in lead-lead collisions at = 2.76 TeV with the ATLAS detector at the LHC +1234228 . Measurement of the high-mass Drell--Yan differential cross-section in pp collisions at sqrt(s)=7 TeV with the ATLAS detector +1239348 . Performance of jet substructure techniques for large-$R$ jets in proton-proton collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector +1240088 . Measurement of the Azimuthal Angle Dependence of Inclusive Jet Yields in Pb+Pb Collisions at $\sqrt{s_{NN}}=$ 2.76 TeV with the ATLAS detector +1240670 . Measurement of the differential cross-section of $B^{+}$ meson production in pp collisions at $\sqrt{s}$ = 7 TeV at ATLAS +1241574 . Measurements of Higgs boson production and couplings in diboson final states with the ATLAS detector at the LHC +1241575 X Evidence for the spin-0 nature of the Higgs boson using ATLAS data +1243158 . Measurement of the top quark charge in $pp$ collisions at $\sqrt{s} =$ 7 TeV with the ATLAS detector +1243871 . Measurement of jet shapes in top-quark pair events at $\sqrt{s}$ = 7 TeV using the ATLAS detector +1244318 . Measurement of Top Quark Polarization in Top-Antitop Events from Proton-Proton Collisions at $\sqrt{s}$ = 7  TeV Using the ATLAS Detector +1244522 . Dynamics of isolated-photon plus jet production in pp collisions at $\sqrt(s)=7$ TeV with the ATLAS detector +1246787 ? Search for excited electrons and muons in $\sqrt{s}$=8 TeV proton-proton collisions with the ATLAS detector +1247060 ? Search for new phenomena in final states with large jet multiplicities and missing transverse momentum at $\sqrt{s}$=8 TeV proton-proton collisions using the ATLAS experiment +1247462 ? Search for direct third-generation squark pair production in final states with missing transverse momentum and two $b$-jets in $\sqrt{s} =$ 8 TeV $pp$ collisions with the ATLAS detector +1249597 ? Search for microscopic black holes in a like-sign dimuon final state using large track multiplicity with the ATLAS detector +1253852 . Search for new phenomena in photon+jet events collected in proton--proton collisions at sqrt(s) = 8 TeV with the ATLAS detector +1254228 ? Search for dark matter in events with a hadronically decaying W or Z boson and missing transverse momentum in $pp$ collisions at $\sqrt{s} =$ 8 TeV with the ATLAS detector +1258398 ? Search for charginos nearly mass degenerate with the lightest neutralino based on a disappearing-track signature in pp collisions at $\sqrt(s)$=8  TeV with the ATLAS detector +1261966 X Measurement of the mass difference between top and anti-top quarks in pp collisions at $\sqrt(s) = 7$ TeV using the ATLAS detector +1261968 ? Search for long-lived stopped R-hadrons decaying out-of-time with pp collisions using the ATLAS detector +1263495 . Measurement of the inclusive isolated prompt photons cross section in pp collisions at $\sqrt{s}=7$  TeV with the ATLAS detector using 4.6  fb$^{−1}$ +1263563 . Mechanical construction and installation of the ATLAS tile calorimeter +1263762 ? Search for Quantum Black Hole Production in High-Invariant-Mass Lepton$+$Jet Final States Using $pp$ Collisions at $\sqrt{s} =$ 8  TeV and the ATLAS Detector +1266254 . Measurement of the top quark pair production charge asymmetry in proton-proton collisions at $\sqrt{s}$ = 7 TeV using the ATLAS detector +1266438 X Standalone vertex finding in the ATLAS muon spectrometer +1268153 ? Search for a multi-Higgs-boson cascade in $W^+W^−b\bar{b}$ events with the ATLAS detector in pp collisions at $\sqrt{s} = 8$  TeV +1268975 . Measurement of dijet cross sections in $pp$ collisions at 7 TeV centre-of-mass energy using the ATLAS detector +1276825 . Measurement of the production cross section of prompt $J/\psi$ mesons in association with a $W^\pm$ boson in $pp$ collisions at $\sqrt{s} =$ 7 TeV with the ATLAS detector +1279489 . Measurement of the electroweak production of dijets in association with a Z-boson and distributions sensitive to vector boson fusion in proton-proton collisions at $\sqrt{s} =$ 8 TeV using the ATLAS detector +1281233 ? Search for Higgs boson decays to a photon and a Z boson in pp collisions at $\sqrt{s}$=7 and 8 TeV with the ATLAS detector +1281236 ? Search for Invisible Decays of a Higgs Boson Produced in Association with a Z Boson in ATLAS +1282441 . The differential production cross section of the $\phi $ (1020) meson in $\sqrt{s}$ = 7 TeV $pp$ collisions measured with the ATLAS detector +1282447 . Measurement of the production of a $W$ boson in association with a charm quark in $pp$ collisions at $\sqrt{s} =$ 7 TeV with the ATLAS detector +1282905 ? Search for direct production of charginos and neutralinos in events with three leptons and missing transverse momentum in $\sqrt{s} =$ 8TeV $pp$ collisions with the ATLAS detector +1283339 . Measurement of event-plane correlations in $\sqrt{s_{NN}}=2.76$ TeV lead-lead collisions with the ATLAS detector +1286444 ? Search for direct top-squark pair production in final states with two leptons in pp collisions at $\sqrt{s} =$ 8TeV with the ATLAS detector +1286622 ? Search for direct top squark pair production in events with a Z boson, b-jets and missing transverse momentum in sqrt(s)=8 TeV pp collisions with the ATLAS detector +1286761 ? Search for direct production of charginos, neutralinos and sleptons in final states with two leptons and missing transverse momentum in $pp$ collisions at $\sqrt{s} =$ 8 TeV with the ATLAS detector +1286892 . Measurements of Four-Lepton Production at the Z Resonance in pp Collisions at $\sqrt s=$7 and 8 TeV with ATLAS +1287055 ? Search for top quark decays $t \to qH$ with $H \to \gamma\gamma$ using the ATLAS detector +1288061 ? Search for dark matter in events with a Z boson and missing transverse momentum in pp collisions at $\sqrt{s}$=8 TeV with the ATLAS detector +1288490 X Measurement of the parity-violating asymmetry parameter $\alpha_b$ and the helicity amplitudes for the decay $\Lambda_b^0\to J/\psi+\Lambda^0$ with the ATLAS detector +1288706 . Measurement of the low-mass Drell-Yan differential cross section at $\sqrt{s}$ = 7 TeV using the ATLAS detector +1289059 X Electron reconstruction and identification efficiency measurements with the ATLAS detector using the 2011 LHC proton-proton collision data +1289225 ? Search for supersymmetry at $\sqrt{s}$=8 TeV in final states with jets and two same-sign leptons or three leptons with the ATLAS detector +1291133 X Muon reconstruction efficiency and momentum resolution of the ATLAS experiment in proton-proton collisions at $\sqrt{s}$ = 7 TeV in 2010 +1292798 . Measurement of $\chi_{c1}$ and $\chi_{c2}$ production with $\sqrt{s}$ = 7 TeV $pp$ collisions at ATLAS +1292799 . Measurement of the cross section of high transverse momentum $Z\rightarrow b\bar{b}$ production in proton--proton collisions at $\sqrt{s}=8 TeV$ with the ATLAS Detector +1293018 X Operation and performance of the ATLAS semiconductor tracker +1296250 X Monitoring and data quality assessment of the ATLAS liquid argon calorimeter +1296260 . Measurement of the centrality and pseudorapidity dependence of the integrated elliptic flow in lead-lead collisions at $\sqrt{s_{\mathrm {NN}}}=2.76$ TeV with the ATLAS detector +1296830 ? Search for high-mass dilepton resonances in pp collisions at $\sqrt{s}=8$  TeV with the ATLAS detector +1296834 ? Search for microscopic black holes and string balls in final states with leptons and jets with the ATLAS detector at sqrt(s) = 8 TeV +1297226 ? Search for supersymmetry in events with four or more leptons in $\sqrt{s}$ = 8 TeV pp collisions with the ATLAS detector +1298023 . Evidence for Electroweak Production of $W^{\pm}W^{\pm}jj$ in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector +1298030 X Light-quark and gluon jet discrimination in $pp$ collisions at $\sqrt{s}=7\mathrm {\ TeV}$ with the ATLAS detector +1298722 ? Search for squarks and gluinos with the ATLAS detector in final states with jets and missing transverse momentum using $\sqrt{s}=8$ TeV proton--proton collision data +1298805 X Jet energy measurement and its systematic uncertainty in proton-proton collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1298811 . Measurement of the underlying event in jet events from 7 TeV proton-proton collisions with the ATLAS detector +1299143 ? Search for direct pair production of the top squark in all-hadronic final states in proton-proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1300152 . Measurement of inclusive jet charged-particle fragmentation functions in Pb+Pb collisions at $\sqrt{s_{NN}}=2.76$ TeV with the ATLAS detector +1300647 . Measurement of the $Z/\gamma^*$ boson transverse momentum distribution in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector +1300650 X Measurement of the Higgs boson mass from the $H\rightarrow \gamma\gamma$ and $H \rightarrow ZZ^{*} \rightarrow 4\ell$ channels with the ATLAS detector using 25 fb$^{-1}$ of $pp$ collision data +1300821 ? Search for WZ resonances in the fully leptonic channel using pp collisions at sqrt(s) = 8 TeV with the ATLAS detector +1301558 ? Search For Higgs Boson Pair Production in the $\gamma\gamma b\bar{b}$ Final State using $pp$ Collision Data at $\sqrt{s}=8$ TeV from the ATLAS Detector +1301856 . Measurement of the $t\bar{t}$ production cross-section using $e\mu $ events with b-tagged jets in pp collisions at $\sqrt{s}$ = 7 and 8  $\,\mathrm{TeV}$ with the ATLAS detector +1303897 ? Search for the Standard Model Higgs boson decay to $\mu^{+}\mu^{-}$ with the ATLAS detector +1303898 X A neural network clustering algorithm for the ATLAS silicon pixel detector +1303905 . Comprehensive measurements of $t$-channel single top-quark production cross sections at $\sqrt{s} = 7$ TeV with the ATLAS detector +1304288 ? Search for the direct production of charginos, neutralinos and staus in final states with at least two hadronically decaying taus and missing transverse momentum in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1304289 ! Measurements of normalized differential cross sections for $t\bar{t}$ production in pp collisions at $\sqrt{s}=7$  TeV using the ATLAS detector +1304455 ! Simultaneous measurements of the $t\bar{t}$, $W^+W^-$, and $Z/\gamma^{*}\rightarrow\tau\tau$ production cross-sections in $pp$ collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector +1304456 ? Search for top squark pair production in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt s =$8 TeV $pp$ collisions with the ATLAS detector +1304457 ? Search for strong production of supersymmetric particles in final states with missing transverse momentum and at least three $b$-jets at $\sqrt{s}$= 8 TeV proton-proton collisions with the ATLAS detector +1304458 ? Search for supersymmetry in events with large missing transverse momentum, jets, and at least one tau lepton in 20 fb$^{-1}$ of $\sqrt{s}=$ 8 TeV proton-proton collision data with the ATLAS detector +1304459 ? Search for pair-produced third-generation squarks decaying via charm quarks or in compressed supersymmetric scenarios in $pp$ collisions at $\sqrt{s}=8~$TeV with the ATLAS detector +1304687 ! Measurement of the cross-section of high transverse momentum vector bosons reconstructed as single jets and studies of jet substructure in $pp$ collisions at ${\sqrt{s}}$ = 7 TeV with the ATLAS detector +1304688 . Measurement of the $ t\overline{t} $ production cross-section as a function of jet multiplicity and jet transverse momentum in 7 TeV proton-proton collisions with the ATLAS detector +1304691 ? Observation of an Excited $B_c^\pm$ Meson State with the ATLAS Detector +1305096 ? Search for new phenomena in the dijet mass distribution using $p-p$ collision data at $\sqrt{s}=8$ TeV with the ATLAS detector +1305098 . Flavor tagged time-dependent angular analysis of the $B_s \rightarrow J/\psi \phi$ decay and extraction of $\Delta\Gamma$s and the weak phase $\phi_s$ in ATLAS +1305430 ? Search for contact interactions and large extra dimensions in the dilepton channel using proton-proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1306294 . Measurement of differential production cross-sections for a $Z$ boson in association with $b$-jets in 7 TeV proton-proton collisions with the ATLAS detector +1306491 X Measurement of the muon reconstruction performance of the ATLAS detector using 2011 and 2012 LHC proton–proton collision data +1306615 . Measurements of fiducial and differential cross sections for Higgs boson production in the diphoton decay channel at $\sqrt{s}=8$ TeV with ATLAS +1306619 . Measurements of spin correlation in top-antitop quark events from proton-proton collisions at $\sqrt{s}=7$ TeV using the ATLAS detector +1306905 X Electron and photon energy calibration with the ATLAS detector using LHC Run 1 data +1307103 . Measurement of the production cross-section of $\psi(2S) \to J/\psi ( \to \mu^{+} \mu^{-}) \pi^{+} \pi^{-}$ in pp collisions at $ \sqrt{s} $ = 7 TeV at ATLAS +1307243 . Measurements of jet vetoes and azimuthal decorrelations in dijet events produced in $pp$ collisions at $\sqrt{s}=7\,\mathrm{TeV}$ using the ATLAS detector +1307756 . Search for Scalar Diphoton Resonances in the Mass Range $65-600$ GeV with the ATLAS Detector in $pp$ Collision Data at $\sqrt{s}$ = 8 $TeV$ +1308524 ? Search for new particles in events with one lepton and missing transverse momentum in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1308923 ? Search for new resonances in $W\gamma$ and $Z\gamma$ final states in $pp$ collisions at $\sqrt s=8$ TeV with the ATLAS detector +1309877 ? Search for $W' \rightarrow tb \rightarrow qqbb$ decays in $pp$ collisions at $\sqrt{s}$  = 8 TeV with the ATLAS detector +1310834 X Performance of the ATLAS muon trigger in pp collisions at $\sqrt{s}=8$ TeV +1310835 . Fiducial and differential cross sections of Higgs boson production measured in the four-lepton decay channel in $pp$ collisions at $\sqrt{s}$=8 TeV with the ATLAS detector +1311487 . Measurement of flow harmonics with multi-particle cumulants in Pb+Pb collisions at $\sqrt{s_{\mathrm {NN}}}=2.76$  TeV with the ATLAS detector +1311623 . Measurement of the production and lepton charge asymmetry of $W$ bosons in Pb+Pb collisions at $\mathbf {\sqrt{\mathbf {s}_{\mathrm {\mathbf {NN}}}}=2.76\;TeV}$ with the ATLAS detector +1311990 . Measurements of Higgs boson production and couplings in the four-lepton channel in pp collisions at center-of-mass energies of 7 and 8 TeV with the ATLAS detector +1312169 ? Search for the lepton flavor violating decay Z→eμ in pp collisions at $\sqrt{s}$  TeV with the ATLAS detector +1312171 . Measurement of the total cross section from elastic scattering in pp collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1312627 . A measurement of the ratio of the production cross sections for $W$ and $Z$ bosons in association with jets with the ATLAS detector +1312978 . Measurement of Higgs boson production in the diphoton decay channel in pp collisions at center-of-mass energies of 7 and 8 TeV with the ATLAS detector +1313596 ? Search for long-lived neutral particles decaying into lepton jets in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1313597 . Measurement of the top-quark mass in the fully hadronic decay channel from ATLAS data at $\sqrt{s}=7\mathrm{\,TeV}$ +1315325 . Measurement of long-range pseudorapidity correlations and azimuthal harmonics in $\sqrt{s_{NN}}=5.02$ TeV proton-lead collisions with the ATLAS detector +1315819 ? Search for $H \to \gamma\gamma$ produced in association with top quarks and constraints on the Yukawa coupling between the top quark and the Higgs boson using data taken at 7 TeV and 8 TeV with the ATLAS detector +1315949 . Measurement of distributions sensitive to the underlying event in inclusive Z-boson production in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1318334 ? Search for pair and single production of new heavy quarks that decay to a $Z$ boson and a third-generation quark in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1318336 ? Search for nonpointing and delayed photons in the diphoton and missing transverse momentum final state in 8 TeV $pp$ collisions at the LHC using the ATLAS detector +1318481 ? Search for neutral Higgs bosons of the minimal supersymmetric standard model in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1318483 ? Search for resonant diboson production in the $\mathrm {\ell \ell }q\bar{q}$ final state in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1318484 ? Search for the $b\bar{b}$ decay of the Standard Model Higgs boson in associated $(W/Z)H$ production with the ATLAS detector +1319490 . Measurements of the W production cross sections in association with jets with the ATLAS detector +1319760 ? Search for $s$-channel single top-quark production in proton–proton collisions at $\sqrt s=8$ TeV with the ATLAS detector +1322381 ? Search for dark matter in events with heavy quarks and missing transverse momentum in $pp$ collisions with the ATLAS detector +1322383 ? Search for $W' \to t\bar{b}$ in the lepton plus jets final state in proton-proton collisions at a centre-of-mass energy of $\sqrt{s}$ = 8 TeV with the ATLAS detector +1322568 ? Search for the $X_b$ and other hidden-beauty states in the $\pi^+ \pi^- \Upsilon(1 \rm S)$ channel at ATLAS +1322928 ? Search for invisible particles produced in association with single-top-quarks in proton-proton collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1324374 . Measurement of the $WW+WZ$ cross section and limits on anomalous triple gauge couplings using final states with one lepton, missing transverse momentum, and two jets with the ATLAS detector at $\sqrt{\rm{s}} = 7$ TeV +1325553 . Measurement of the inclusive jet cross-section in proton-proton collisions at $ \sqrt{s}=7 $ TeV using 4.5 fb$^{−1}$ of data with the ATLAS detector +1326409 ? Search for new phenomena in events with a photon and missing transverse momentum in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1326641 . Measurement of three-jet production cross-sections in $pp$ collisions at 7 TeV centre-of-mass energy using the ATLAS detector +1326911 . Measurements of the Nuclear Modification Factor for Jets in Pb+Pb Collisions at $\sqrt{s_{\mathrm{NN}}}=2.76$ TeV with the ATLAS Detector +1327229 . Search for new phenomena in events with three or more charged leptons in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1329957 ? Searches for heavy long-lived charged particles with the ATLAS detector in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1331782 ? Search for anomalous production of prompt same-sign lepton pairs and pair-produced doubly charged Higgs bosons with $ \sqrt{s}=8 $ TeV $pp$ collisions using the ATLAS detector +1332748 . Measurement of the transverse polarization of $\Lambda$ and $\bar{\Lambda}$ hyperons produced in proton-proton collisions at $\sqrt{s}=7$ TeV using the ATLAS detector +1333228 . Observation and measurement of Higgs boson decays to WW$^*$ with the ATLAS detector +1334140 . Centrality and rapidity dependence of inclusive jet production in $\sqrt{s_\mathrm{NN}} = 5.02$ TeV proton-lead collisions with the ATLAS detector +1334362 . Measurement of Spin Correlation in Top-Antitop Quark Events and Search for Top Squark Pair Production in pp Collisions at $\sqrt{s}=8$ TeV Using the ATLAS Detector +1335136 . Observation and measurements of the production of prompt and non-prompt $J/\psi$ mesons in association with a $Z$ boson in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1335266 ? Search for charged Higgs bosons decaying via $H^{\pm} \rightarrow \tau^{\pm}\nu$ in fully hadronic final states using $pp$ collision data at $\sqrt{s} = 8$ TeV with the ATLAS detector +1335273 X Identification and energy calibration of hadronically decaying tau leptons with the ATLAS experiment in $pp$ collisions at $\sqrt{s}$=8 TeV +1337472 ? Search for Scalar Charm Quark Pair Production in $pp$ Collisions at $\sqrt{s}=$ 8  TeV with the ATLAS Detector +1339252 ? Search for Higgs and Z Boson Decays to J/ψγ and ϒ(nS)γ with the ATLAS Detector +1339376 ? Search for squarks and gluinos in events with isolated leptons, jets and missing transverse momentum at $\sqrt{s}=8$ TeV with the ATLAS detector +1339624 ? Search for pair-produced long-lived neutral particles decaying in the ATLAS hadronic calorimeter in $pp$ collisions at $\sqrt{s}$ = 8 TeV +1340321 . Evidence for the Higgs-boson Yukawa coupling to tau leptons with the ATLAS detector +1341609 ? Search for direct pair production of a chargino and a neutralino decaying to the 125 GeV Higgs boson in $\sqrt{s} = 8$  TeV ${pp}$ collisions with the ATLAS detector +1341999 . Measurement of the charge asymmetry in dileptonic decays of top quark pairs in $pp$ collisions at $\sqrt{s}=7$ TeV using the ATLAS detector +1342452 ? Observation of top-quark pair production in association with a photon and measurement of the $t\bar{t}\gamma$ production cross section in pp collisions at $\sqrt{s}=7$ TeV using the ATLAS detector +1343107 ? Search for new phenomena in final states with an energetic jet and large missing transverse momentum in pp collisions at $\sqrt{s}=$8 TeV with the ATLAS detector +1345028 ? Search for a CP-odd Higgs boson decaying to Zh in pp collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1345355 ? Search for massive supersymmetric particles decaying to many jets using the ATLAS detector in $pp$ collisions at $\sqrt{s} = 8$ TeV +1345452 . Differential top-antitop cross-section measurements as a function of observables constructed from final-state particles using pp collisions at $\sqrt{s}=7$ TeV in the ATLAS detector +1346398 ? A search for high-mass resonances decaying to $\tau^{+}\tau^{-}$ in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1346844 . Two-particle Bose–Einstein correlations in pp collisions at $\mathbf {\sqrt{s} =}$ 0.9 and 7 TeV measured with the ATLAS detector +1347135 ? Constraints on the off-shell Higgs boson signal strength in the high-mass $ZZ$ and $WW$ final states with the ATLAS detector +1351760 ? Evidence of Wγγ Production in pp Collisions at s=8  TeV and Limits on Anomalous Quartic Gauge Couplings with the ATLAS Detector +1351762 ? Search for supersymmetry in events containing a same-flavour opposite-sign dilepton pair, jets, and large missing transverse momentum in $\sqrt{s}=8$  TeV pp collisions with the ATLAS detector +1351913 X Determination of spin and parity of the Higgs boson in the $WW^*\rightarrow e \nu \mu \nu $ decay channel with the ATLAS detector +1351916 . Measurement of the forward-backward asymmetry of electron and muon pair-production in $pp$ collisions at $\sqrt{s}$ = 7 TeV with the ATLAS detector +1352819 ? Search for a Charged Higgs Boson Produced in the Vector-Boson Fusion Mode with Decay $H^\pm \to W^\pm Z$ using $pp$ Collisions at $\sqrt{s}=8$  TeV with the ATLAS Experiment +1352821 ? Search for a Heavy Neutral Particle Decaying to $e\mu$, $e\tau$, or $\mu\tau$ in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector +1352826 ? Search for production of $WW/WZ$ resonances decaying to a lepton, neutrino and jets in $pp$ collisions at $\sqrt{s}=8$  TeV with the ATLAS detector +1353124 ? Search for the Standard Model Higgs boson produced in association with top quarks and decaying into $b\bar{b}$ in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1353390 ? Search for vector-like $B$ quarks in events with one isolated lepton, missing transverse momentum and jets at $\sqrt{s}=$ 8 TeV with the ATLAS detector +1353391 X Measurement of the top quark mass in the $t\bar{t}\rightarrow \text{ lepton+jets } $ and $t\bar{t}\rightarrow \text{ dilepton } $ channels using $\sqrt{s}=7$   ${\mathrm { TeV}}$ ATLAS data +1356276 X Combined Measurement of the Higgs Boson Mass in $pp$ Collisions at $\sqrt{s}=7$ and 8 TeV with the ATLAS and CMS Experiments +1356730 ? Search for a new resonance decaying to a W or Z boson and a Higgs boson in the $\ell \ell / \ell \nu / \nu \nu + b \bar{b}$ final states with the ATLAS detector +1357199 ? Search for low-scale gravity signatures in multi-jet final states with the ATLAS detector at $ \sqrt{s}=8 $ TeV +1357594 ? Search for New Phenomena in Dijet Angular Distributions in Proton-Proton Collisions at $\sqrt{s} = 8$ TeV Measured with the ATLAS Detector +1357991 . Measurement of the correlation between flow harmonics of different order in lead-lead collisions at $\sqrt{s_{NN}}$=2.76 TeV with the ATLAS detector +1359456 ? Search for long-lived, weakly interacting particles that decay to displaced hadronic jets in proton-proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1360282 ? Search for heavy long-lived multi-charged particles in pp collisions at $\sqrt{s}=\;8$  TeV using the ATLAS detector +1360283 . Measurement of the top pair production cross section in 8 TeV proton-proton collisions using kinematic information in the lepton+jets final state with ATLAS +1360288 ? Search for invisible decays of the Higgs boson produced in association with a hadronically decaying vector boson in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1360290 ! Measurement of charged-particle spectra in Pb+Pb collisions at $\sqrt{{s}_\mathsf{{NN}}} = 2.76$ TeV with the ATLAS detector at the LHC +1361912 ? Analysis of events with $b$-jets and a pair of leptons of the same charge in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1362183 ? Search for massive, long-lived particles using multitrack displaced vertices or displaced lepton pairs in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1362490 ? Search for high-mass diphoton resonances in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1364361 . Measurements of the Total and Differential Higgs Boson Production Cross Sections Combining the H→γγ and H→ZZ*→4ℓ Decay Channels at $\sqrt{s}$=8  TeV with the ATLAS Detector +1367302 ? Search for Higgs bosons decaying to $aa$ in the $\mu\mu\tau\tau$ final state in $pp$ collisions at $\sqrt{s} = $ 8 TeV with the ATLAS experiment +1370678 ? Search for production of vector-like quark pairs and of four top quarks in the lepton-plus-jets final state in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1373299 ? A search for $ t\overline{t} $ resonances using lepton-plus-jets events in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1373520 ? Search for new light gauge bosons in Higgs boson decays to four-lepton final states in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector at the LHC +1373747 . Measurement of differential $J/\psi$ production cross sections and forward-backward ratios in p + Pb collisions with the ATLAS detector +1373912 ? Search for Higgs boson pair production in the $b\bar{b}b\bar{b}$ final state from pp collisions at $\sqrt{s} = 8$ TeVwith the ATLAS detector +1374218 ? Search for high-mass diboson resonances with boson-tagged jets in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1374488 ? Search for Dark Matter in Events with Missing Transverse Momentum and a Higgs Boson Decaying to Two Photons in $pp$ Collisions at $\sqrt{s}=8$ TeV with the ATLAS Detector +1374493 ? Search for heavy lepton resonances decaying to a $Z$ boson and a lepton in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1374908 ? Search for type-III Seesaw heavy leptons in $pp$ collisions at $\sqrt{s}= 8$ TeV with the ATLAS Detector +1376287 X Measurements of the top quark branching ratios into channels with leptons and quarks with the ATLAS detector +1376482 ? Search for metastable heavy charged particles with large ionisation energy loss in pp collisions at $\sqrt{s} = 8$  TeV using the ATLAS experiment +1376944 ? Modelling $Z\rightarrow\tau\tau$ processes in ATLAS with $\tau$-embedded $Z\rightarrow\mu\mu$ data +1376945 . Measurement of colour flow with the jet pull angle in $t\bar{t}$ events using the ATLAS detector at $\sqrt{s}=8$ TeV +1376946 ? Study of the spin and parity of the Higgs boson in diboson decays with the ATLAS detector +1377202 ? Search for the associated production of the Higgs boson with a top quark pair in multilepton final states with the ATLAS detector +1377205 ? Search for heavy Majorana neutrinos with the ATLAS detector in pp collisions at $ \sqrt{s}=8 $ TeV +1377364 ? Study of (W/Z)H production and Higgs boson couplings using $H \rightarrow WW^{\ast}$ decays with the ATLAS detector +1377585 . Measurement of exclusive $\gamma\gamma\rightarrow \ell^+\ell^-$ production in proton-proton collisions at $\sqrt{s} = 7$ TeV with the ATLAS detector +1380180 . Centrality, rapidity and transverse momentum dependence of isolated prompt photon production in lead-lead collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$ TeV measured with the ATLAS detector +1380183 ? ATLAS Run 1 searches for direct pair production of third-generation squarks at the Large Hadron Collider +1380185 . Measurement of the production of neighbouring jets in lead–lead collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$TeV with the ATLAS detector +1381766 X Determination of the top-quark pole mass using $ t\overline{t} $ + 1-jet events collected with the ATLAS experiment in 7 TeV pp collisions +1383128 X Measurements of the Higgs boson production and decay rates and coupling strengths using pp collision data at $\sqrt{s}=7$ and 8 TeV in the ATLAS experiment +1383883 ? Search for photonic signatures of gauge-mediated supersymmetry in 8 TeV pp collisions with the ATLAS detector +1383884 X Summary of the searches for squarks and gluinos using $ \sqrt{s}=8 $ TeV pp collisions with the ATLAS experiment at the LHC +1384120 ? Search for an additional, heavy Higgs boson in the $H\rightarrow ZZ$ decay channel at $\sqrt{s} = 8\;\text{ TeV }$ in $pp$ collision data with the ATLAS detector +1384272 . $Z$ boson production in $p+$Pb collisions at $\sqrt{s_{NN}}=5.02$ TeV measured with the ATLAS detector +1385102 X Study of the $B_c^+ \rightarrow J/\psi D_s^+$ and $B_c^+ \rightarrow J/\psi D_s^{*+}$ decays with the ATLAS detector +1385604 X Measurement of the branching ratio $\Gamma(\Lambda_b^0 \rightarrow \psi(2S)\Lambda^0)/\Gamma(\Lambda_b^0 \rightarrow J/\psi\Lambda^0)$ with the ATLAS detector +1385880 X Determination of the ratio of $b$-quark fragmentation fractions $f_s/f_d$ in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1386475 . Measurement of the centrality dependence of the charged-particle pseudorapidity distribution in proton–lead collisions at $\sqrt{s_{_\text {NN}}} = 5.02$  TeV with the ATLAS detector +1387176 . Measurement of transverse energy-energy correlations in multi-jet events in $pp$ collisions at $\sqrt{s} = 7$ TeV using the ATLAS detector and determination of the strong coupling constant $\alpha_{\mathrm{s}}(m_Z)$ +1387509 X Constraints on non-Standard Model Higgs boson interactions in an effective Lagrangian using differential cross sections measured in the $H \rightarrow \gamma\gamma$ decay channel at $\sqrt{s} = 8$TeV with the ATLAS detector +1388016 ? Search for lepton-flavour-violating H → μτ decays of the Higgs boson with the ATLAS detector +1388506 ? Searches for scalar leptoquarks in pp collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1389174 ? Search for flavour-changing neutral current top-quark decays to $qZ$ in $pp$ collision data collected with the ATLAS detector at $\sqrt s =8$  TeV +1389857 X Summary of the ATLAS experiment’s sensitivity to supersymmetry after LHC Run 1 — interpreted in the phenomenological MSSM +1390114 . Measurements of fiducial cross-sections for $t\bar{t}$ production with one or two additional b-jets in pp collisions at $\sqrt{s}$ =8 TeV using the ATLAS detector +1391149 ? Search for invisible decays of a Higgs boson using vector-boson fusion in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1391318 ? Search for single top-quark production via flavour-changing neutral currents at 8 TeV with the ATLAS detector +1391323 ? Search for a high-mass Higgs boson decaying to a $W$ boson pair in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1391509 ? Constraints on new phenomena via Higgs boson couplings and invisible decays with the ATLAS detector +1392455 . Measurement of the charge asymmetry in top-quark pair production in the lepton-plus-jets final state in pp collision data at $\sqrt{s}=8\,\mathrm TeV{}$ with the ATLAS detector +1393281 ? Search for pair production of a new heavy quark that decays into a $W$ boson and a light quark in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1393493 ? Searches for Higgs boson pair production in the $hh\to bb\tau\tau, \gamma\gamma WW^*, \gamma\gamma bb, bbbb$ channels with the ATLAS detector +1393658 . Observation of Long-Range Elliptic Azimuthal Anisotropies in $\sqrt{s}=$13 and 2.76 TeV $pp$ Collisions with the ATLAS Detector +1393661 X A new method to distinguish hadronically decaying boosted $Z$ bosons from $W$ bosons using the ATLAS detector +1393662 ? Search for direct top squark pair production in final states with two tau leptons in pp collisions at $\sqrt{s}=8$  TeV with the ATLAS detector +1393757 ? Search for new phenomena in events with at least three photons collected in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1393758 . Measurement of jet charge in dijet events from $\sqrt{s}$=8  TeV pp collisions with the ATLAS detector +1393760 . Measurement of the $ t\overline{t}W $ and $ t\overline{t}Z $ production cross sections in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1394161 ? Search for flavour-changing neutral current top quark decays $t\to Hq$ in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1394670 ? Search for the electroweak production of supersymmetric particles in $\sqrt{s}$=8 TeV $pp$ collisions with the ATLAS detector +1394679 . Measurement of four-jet differential cross sections in $\sqrt{s}=8$ TeV proton-proton collisions using the ATLAS detector +1394865 . Measurements of four-lepton production in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector +1395092 ? Search for magnetic monopoles and stable particles with high electric charges in 8 TeV $pp$ collisions with the ATLAS detector +1397001 ? Search for the production of single vector-like and excited quarks in the $Wt$ final state in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1397635 . Measurement of the production cross-section of a single top quark in association with a $W$ boson at 8 TeV with the ATLAS experiment +1397636 ? Search for anomalous couplings in the $Wtb$ vertex from the measurement of double differential angular decay rates of single top quarks produced in the $t$-channel with the ATLAS detector +1397637 . Measurement of the differential cross-section of highly boosted top quarks as a function of their transverse momentum in $\sqrt{s}$ = 8 TeV proton-proton collisions using the ATLAS detector +1397638 X Performance of pile-up mitigation techniques for jets in $pp$ collisions at $\sqrt{s}=8$  TeV using the ATLAS detector +1399051 X Identification of boosted, hadronically decaying W bosons and comparisons with ATLAS data taken at $\sqrt{s} = 8$ TeV +1399193 ? Search for dark matter produced in association with a Higgs boson decaying to two bottom quarks in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1400803 . Measurement of the correlations between the polar angles of leptons from top quark decays in the helicity basis at $\sqrt{s}=7$TeV using the ATLAS detector +1402356 . Dijet production in $\sqrt{s}=$ 7 TeV $pp$ collisions with large rapidity gaps at the ATLAS experiment +1404878 . Measurements of top-quark pair differential cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s}=8$ TeV using the ATLAS detector +1405096 ? A search for prompt lepton-jets in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector +1405430 ? Evidence for single top-quark production in the $s$-channel in proton-proton collisions at $\sqrt{s}=$8 TeV with the ATLAS detector using the Matrix Element Method +1406935 ? Search for the Standard Model Higgs boson produced in association with a vector boson and decaying into a tau pair in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1407478 . Measurement of the dependence of transverse energy production at large pseudorapidity on the hard-scattering kinematics of proton-proton collisions at $\sqrt{s} = 2.76$ TeV with ATLAS +1407952 X Performance of $b$-Jet Identification in the ATLAS Experiment +1408292 ? Search for new phenomena in dijet mass and angular distributions from $pp$ collisions at $\sqrt{s}=$ 13 TeV with the ATLAS detector +1408516 . Measurement of the transverse momentum and $\phi ^*_{\eta }$ distributions of Drell–Yan lepton pairs in proton–proton collisions at $\sqrt{s}=8$  TeV with the ATLAS detector +1408744 ? Search for strong gravity in multijet final states produced in pp collisions at $\sqrt{s} =$ 13 TeV using the ATLAS detector at the LHC +1408878 . Measurement of $D^{*\pm}$, $D^\pm$ and $D_s^\pm$ meson production cross sections in $pp$ collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1409298 . Measurement of the differential cross-sections of prompt and non-prompt production of $J/\psi $ and $\psi (2\mathrm {S})$ in $pp$ collisions at $\sqrt{s} = 7$ and 8 TeV with the ATLAS detector +1409300 ? Search for charged Higgs bosons in the $H^{\pm} \rightarrow tb$ decay channel in $pp$ collisions at $\sqrt{s}=8 $ TeV using the ATLAS detector +1409918 ? Combination of searches for $WW$, $WZ$, and $ZZ$ resonances in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1409923 . Measurement of the $ZZ$ Production Cross Section in $pp$ Collisions at $\sqrt{s}$ = 13 TeV with the ATLAS Detector +1410580 ? Search for new phenomena with photon+jet events in proton-proton collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector +1410581 X Reconstruction of hadronic decay products of tau leptons with the ATLAS experiment +1410588 . Measurement of the charge asymmetry in highly boosted top-quark pair production in $\sqrt{s} =$ 8 TeV $pp$ collision data collected by the ATLAS experiment +1415119 X Measurement of the CP-violating phase $\phi_s$ and the $B^0_s$ meson decay width difference with $B^0_s \to J/\psi\phi$ decays in ATLAS +1415270 ? Probing lepton flavour violation via neutrinoless $\tau\longrightarrow 3\mu$ decays with the ATLAS detector +1416473 ? A search for an excited muon decaying to a muon and two jets in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1417099 ? A search for top squarks with R-parity-violating decays to all-hadronic final states with the ATLAS detector in $\sqrt{s}$ = 8 TeV proton-proton collisions +1419070 . Measurement of the charged-particle multiplicity inside jets from $\sqrt{s}=8$ TeV $pp$ collisions with the ATLAS detector +1419652 . Charged-particle distributions in $\sqrt{s}$ = 13 TeV pp interactions measured with the ATLAS detector at the LHC +1421648 X Test of CP Invariance in vector-boson fusion production of the Higgs boson using the Optimal Observable method in the ditau decay channel with the ATLAS detector +1422202 ? Search for single production of vector-like quarks decaying into Wb in pp collisions at $\sqrt{s} = 8$  TeV with the ATLAS detector +1422612 ? Search for single production of a vector-like quark via a heavy gluon in the $4b$ final state with the ATLAS detector in $pp$ collisions at $\sqrt{s} = 8$ TeV +1422615 ? Search for new phenomena in final states with large jet multiplicities and missing transverse momentum with ATLAS using $\sqrt{s} =$ 13 TeV proton-proton collisions +1424838 . Measurement of event-shape observables in $Z \rightarrow \ell ^{+} \ell ^{-}$ events in $pp$ collisions at $\sqrt{s}=$ 7 TeV with the ATLAS detector at the LHC +1424844 ? Search for supersymmetry at $\sqrt{s}=13$  TeV in final states with jets and two same-sign leptons or three leptons with the ATLAS detector +1426515 . Measurement of total and differential $W^+W^-$ production cross sections in proton-proton collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector and limits on anomalous triple-gauge-boson couplings +1426523 . Measurements of $W^\pm Z$ production cross sections in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector and limits on anomalous gauge boson self-couplings +1426695 . Charged-particle distributions in $pp$ interactions at $\sqrt{s}=$ 8 TeV measured with the ATLAS detector +1426830 X Topological cell clustering in the ATLAS calorimeters and its performance in LHC Run 1 +1427022 X Identification of high transverse momentum top quarks in $pp$ collisions at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1429662 X Muon reconstruction performance of the ATLAS detector in proton–proton collision data at $\sqrt{s}$ =13 TeV +1436362 ? Search for resonances in the mass distribution of jet pairs with one or two jets identified as $b$-jets in proton--proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1436495 X Beam-induced and cosmic-ray backgrounds observed in the ATLAS detector during the LHC 2012 proton-proton running period +1436496 ? Search for charged Higgs bosons produced in association with a top quark and decaying via $H^{\pm} \rightarrow \tau\nu$ using $pp$ collision data recorded at $\sqrt{s} = 13$ TeV by the ATLAS detector +1436497 . Measurement of $W^{\pm}$ and $Z$-boson production cross sections in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1442359 ? Search for new phenomena in events with a photon and missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1444991 . Measurement of fiducial differential cross sections of gluon-fusion production of Higgs bosons decaying to WW$^{∗}$→eνμν with the ATLAS detector at $ \sqrt{s}=8 $ TeV +1446750 ? Search for the Standard Model Higgs boson decaying into $ b\overline{b} $ produced in association with top quarks decaying hadronically in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1446983 . Study of the rare decays of $B^0_s$ and $B^0$ into muon pairs from data collected during the LHC Run 1 with the ATLAS detector +1448101 ? Search for metastable heavy charged particles with large ionization energy loss in pp collisions at $\sqrt{s} = 13$ TeV using the ATLAS experiment +1448301 . Measurements of $Z\gamma$ and $Z\gamma\gamma$ production in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector +1449082 . Measurements of the charge asymmetry in top-quark pair production in the dilepton final state at $\sqrt{s}=8$  TeV with the ATLAS detector +1452557 ? Search for lepton-flavour-violating decays of the Higgs and $Z$ bosons with the ATLAS detector +1452559 . Search for new phenomena in final states with an energetic jet and large missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$  TeV using the ATLAS detector +1455739 . Gas gain stabilisation in the ATLAS TRT detector +1457605 . Measurement of the inclusive isolated prompt photon cross section in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1458270 . Search for squarks and gluinos in final states with jets and missing transverse momentum at $\sqrt{s} =$ 13 TeV with the ATLAS detector +1458952 ? Search for gluinos in events with an isolated lepton, jets and missing transverse momentum at $\sqrt{s}$ = 13 Te V with the ATLAS detector +1462258 ? Search for scalar leptoquarks in pp collisions at $\sqrt{s}$ = 13 TeV with the ATLAS experiment +1463284 . Transverse momentum, rapidity, and centrality dependence of inclusive charged-particle production in $\sqrt{s_{NN}}=5.02$ TeV $p$ + Pb collisions measured by the ATLAS experiment +1465511 X Measurement of the relative width difference of the $B^0$-$\bar B^0$ system with the ATLAS detector +1466302 ? Search for pair production of gluinos decaying via stop and sbottom in events with $b$-jets and large missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1466778 . Measurement of the angular coefficients in $Z$-boson events using electron and muon pairs from data taken at $\sqrt{s}=8$ TeV with the ATLAS detector +1467230 ! Charged-particle distributions at low transverse momentum in $\sqrt{s} = 13$  TeV $pp$ interactions measured with the ATLAS detector at the LHC +1467454 . Measurement of the double-differential high-mass Drell-Yan cross section in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1467455 X Measurement of the photon identification efficiencies with the ATLAS detector using LHC Run-1 data +1468064 X Measurement of the top quark mass in the $t\bar{t}\to$ dilepton channel from $\sqrt{s}=8$ TeV ATLAS data +1468065 ? Search for the Standard Model Higgs boson produced by vector-boson fusion and decaying to bottom quarks in $ \sqrt{s}=8 $ TeV pp collisions with the ATLAS detector +1468067 ? Search for TeV-scale gravity signatures in high-mass final states with leptons and jets with the ATLAS detector at $\sqrt{s}=13$ TeV +1468068 ? Measurements of the Higgs boson production and decay rates and constraints on its couplings from a combined ATLAS and CMS analysis of the LHC pp collision data at $ \sqrt{s}=7 $ and 8 TeV +1468167 . Measurement of the Inelastic Proton-Proton Cross Section at $\sqrt{s} = 13$  TeV with the ATLAS Detector at the LHC +1468168 . Measurement of the $t\bar{t}$ production cross-section using $e\mu$ events with b-tagged jets in pp collisions at $\sqrt{s}$=13 TeV with the ATLAS detector +1469066 ? Search for resonances in diphoton events at $\sqrt{s}$=13 TeV with the ATLAS detector +1469069 ? Search for top squarks in final states with one isolated lepton, jets, and missing transverse momentum in $\sqrt{s}=13$ TeV $pp$ collisions with the ATLAS detector +1469070 ? Search for new resonances in events with one lepton and missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1469071 . Measurement of the $W^{\pm}Z$ boson pair-production cross section in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS Detector +1469452 ? Search for pair production of Higgs bosons in the $b\bar{b}b\bar{b}$ final state using proton--proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1469453 ? Searches for heavy diboson resonances in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1470936 ? Search for heavy long-lived charged $R$-hadrons with the ATLAS detector in 3.2 fb$^{-1}$ of proton--proton collision data at $\sqrt{s} = 13$ TeV +1471458 . The ATLAS Data Acquisition and High Level Trigger system +1472089 X The performance of the jet trigger for the ATLAS detector during 2011 data taking +1472317 . Measurement of forward-backward multiplicity correlations in lead-lead, proton-lead, and proton-proton collisions with the ATLAS detector +1472323 ? Search for the Higgs boson produced in association with a $W$ boson and decaying to four $b$-quarks via two spin-zero particles in $pp$ collisions at 13 TeV with the ATLAS detector +1472822 ? Search for bottom squark pair production in proton–proton collisions at $\sqrt{s}=13$  TeV with the ATLAS detector +1473191 ! Measurement of jet activity in top quark events using the $e\mu$ final state with two $b$-tagged jets in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1473744 ? Search for supersymmetry in a final state containing two photons and missing transverse momentum in $\sqrt{s}$ = 13 TeV $pp$ collisions at the LHC using the ATLAS detector +1475286 ? Search for Higgs and $Z$ Boson Decays to $\phi\,\gamma$ with the ATLAS Detector +1475476 ? Search for high-mass new phenomena in the dilepton final state using proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1475477 . Measurement of exclusive $\gamma\gamma\rightarrow W^+W^-$ production and search for exclusive Higgs boson production in $pp$ collisions at $\sqrt{s} = 8$ TeV using the ATLAS detector +1477027 ? Search for new resonances decaying to a $W$ or $Z$ boson and a Higgs boson in the $\ell^+ \ell^- b\bar b$, $\ell \nu b\bar b$, and $\nu\bar{\nu} b\bar b$ channels with $pp$ collisions at $\sqrt s = 13$ TeV with the ATLAS detector +1477209 ? Search for squarks and gluinos in events with hadronically decaying tau leptons, jets and missing transverse momentum in proton–proton collisions at $\sqrt{s}=13$  TeV recorded with the ATLAS detector +1477403 ? Search for heavy resonances decaying to a $Z$ boson and a photon in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1477585 . Measurement of the total cross section from elastic scattering in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1477814 . Measurement of top quark pair differential cross-sections in the dilepton channel in $pp$ collisions at $\sqrt{s}$ = 7 and 8 TeV with ATLAS +1478190 ? Search for new phenomena in different-flavour high-mass dilepton final states in pp collisions at $\sqrt{s}=13$  Tev with the ATLAS detector +1478355 . Measurement of the $b\overline{b}$ dijet cross section in pp collisions at $\sqrt{s} = 7$  TeV with the ATLAS detector +1478601 X A measurement of the calorimeter response to single hadrons and determination of the jet energy scale uncertainty using LHC Run-1 $pp$-collision data with the ATLAS detector +1478981 ? Dark matter interpretations of ATLAS searches for the electroweak production of supersymmetric particles in $ \sqrt{s}=8 $ TeV proton-proton collisions +1478983 ? Search for Minimal Supersymmetric Standard Model Higgs bosons $H/A$ and for a $Z^{\prime}$ boson in the $\tau \tau$ final state produced in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS Detector +1479760 . Study of hard double-parton scattering in four-jet events in pp collisions at $ \sqrt{s}=7 $ TeV with the ATLAS experiment +1479947 ? Search for dark matter produced in association with a hadronically decaying vector boson in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector +1480190 . The Laser calibration of the Atlas Tile Calorimeter during the LHC run 1 +1480365 . Measurement of $W^+W^-$ production in association with one jet in proton--proton collisions at $\sqrt{s} =8$ TeV with the ATLAS detector +1481187 X Luminosity determination in pp collisions at $\sqrt{s}$ = 8 TeV using the ATLAS detector at the LHC +1485353 . Measurement of the $t\bar{t}Z$ and $t\bar{t}W$ production cross sections in multilepton final states using 3.2 fb$^{-1}$ of $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1486394 . Measurement of the inclusive cross-sections of single top-quark and top-antiquark $t$-channel production in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1486521 X A measurement of material in the ATLAS tracker using secondary hadronic interactions in 7 TeV pp collisions +1486673 ? Search for dark matter in association with a Higgs boson decaying to $b$-quarks in $pp$ collisions at $\sqrt s=13$ TeV with the ATLAS detector +1486878 ? Search for anomalous electroweak production of $WW/WZ$ in association with a high-mass dijet system in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1487472 . Measurements of long-range azimuthal anisotropies and associated Fourier coefficients for $pp$ collisions at $\sqrt{s}=5.02$ and $13$ TeV and $p$+Pb collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with the ATLAS detector +1487726 ! Measurement of $W$ boson angular distributions in events with high transverse momentum jets at $\sqrt{s}=$ 8 TeV using the ATLAS detector +1488580 X Performance of algorithms that reconstruct missing transverse momentum in $\sqrt{s}=$ 8 TeV proton-proton collisions in the ATLAS detector +1492320 . Search for triboson $W^{\pm }W^{\pm }W^{\mp }$ production in $pp$ collisions at $\sqrt{s}=8$   $\text {TeV}$ with the ATLAS detector +1494075 . Measurement of the $ZZ$ production cross section in proton-proton collisions at $\sqrt s =$ 8 TeV using the $ZZ\to\ell^{-}\ell^{+}\ell^{\prime -}\ell^{\prime +}$ and $ZZ\to\ell^{-}\ell^{+}\nu\bar{\nu}$ channels with the ATLAS detector +1494410 . Measurements of charge and CP asymmetries in $b$-hadron decays using top-quark events collected by the ATLAS detector in $pp$ collisions at $\sqrt{s}=8$ TeV +1495026 . Measurements of $\psi(2S)$ and $X(3872) \to J/\psi\pi^+\pi^-$ production in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1495243 . Measurement of jet activity produced in top-quark events with an electron, a muon and two $b$-tagged jets in the final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1496384 . Measurement of $W^{\pm}W^{\pm}$ vector-boson scattering and limits on anomalous quartic gauge couplings with the ATLAS detector +1498566 ? Search for new phenomena in events containing a same-flavour opposite-sign dilepton pair, jets, and large missing transverse momentum in $\sqrt{s}=$ 13 $pp$ collisions with the ATLAS detector +1499475 . High-$E_{\rm T}$ isolated-photon plus jets production in $pp$ collisions at $\sqrt s=$ 8 TeV with the ATLAS detector +1500696 X Performance of the ATLAS Trigger System in 2015 +1500997 X Reconstruction of primary vertices at the ATLAS experiment in Run 1 proton–proton collisions at the LHC +1501691 X Electron efficiency measurements with the ATLAS detector using 2012 LHC proton–proton collision data +1502345 . Measurement of the W boson polarisation in $t\bar{t}$ events from pp collisions at $\sqrt{s}$ = 8 TeV in the lepton + jets channel with ATLAS +1502618 . Measurement of the prompt J/ $\psi $ pair production cross-section in pp collisions at $\sqrt{s} = 8$  TeV with the ATLAS detector +1502620 . Precision measurement and interpretation of inclusive $W^+$ , $W^-$ and $Z/\gamma ^*$ production cross sections with the ATLAS detector +1502921 . Measurements of top-quark pair to $Z$-boson cross-section ratios at $\sqrt s = 13, 8, 7$ TeV with the ATLAS detector +1504059 . Measurements of top-quark pair differential cross-sections in the $e\mu$ channel in $pp$ collisions at $\sqrt{s} = 13$ TeV using the ATLAS detector +1505422 . Measurements of top quark spin observables in $ t\overline{t} $ events using dilepton final states in $ \sqrt{s}=8 $ TeV pp collisions with the ATLAS detector +1505427 . Measurement of the cross-section for producing a W boson in association with a single top quark in pp collisions at $ \sqrt{s}=13 $ TeV with ATLAS +1509919 . Measurement of charged-particle distributions sensitive to the underlying event in $ \sqrt{s}=13 $ TeV proton-proton collisions with the ATLAS detector at the LHC +1510441 . Measurement of the cross section for inclusive isolated-photon production in $pp$ collisions at $\sqrt s=13$ TeV using the ATLAS detector +1510564 . Measurement of the $W$-boson mass in pp collisions at $\sqrt{s}=7$ TeV with the ATLAS detector +1511869 . Measurement of jet fragmentation in Pb+Pb and $pp$ collisions at $\sqrt{{s_\mathrm{NN}}} = 2.76$ TeV with the ATLAS detector at the LHC +1512305 . Evidence for light-by-light scattering in heavy-ion collisions with the ATLAS detector at the LHC +1512776 ! Fiducial, total and differential cross-section measurements of $t$-channel single top-quark production in $pp$ collisions at 8 TeV using data collected by the ATLAS detector +1513473 ! Measurement of the $W^+W^-$ production cross section in $pp$ collisions at a centre-of-mass energy of $\sqrt{s}$ = 13 TeV with the ATLAS experiment +1514251 . Measurements of the production cross section of a $Z$ boson in association with jets in pp collisions at $\sqrt{s} = 13$  TeV with the ATLAS detector +1514548 X Performance of the ATLAS Transition Radiation Tracker in Run 1 of the LHC: tracker properties +1515025 ! Top-quark mass measurement in the all-hadronic $ t\overline{t} $ decay channel at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1515204 ? Probing the W tb vertex structure in t-channel single-top-quark production and decay in pp collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1515374 . Measurement of the $t\bar{t}$ production cross section in the $\tau$ + jets final state in $pp$ collisions at $\sqrt{s}=8$ TeV using the ATLAS detector +1517194 ! Measurements of electroweak $Wjj$ production and constraints on anomalous gauge couplings with the ATLAS detector +1519428 ? Search for new phenomena in dijet events using 37 fb$^{-1}$ of $pp$ collision data collected at $\sqrt{s}=$13 TeV with the ATLAS detector +1519834 X Jet energy scale measurements and their systematic uncertainties in proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1520722 X Jet reconstruction and performance using particle flow with the ATLAS Detector +1589844 . Measurement of the $k_\mathrm{t}$ splitting scales in $Z \to \ell\ell$ events in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1590025 . Femtoscopy with identified charged pions in proton-lead collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with ATLAS +1591327 . Measurements of integrated and differential cross sections for isolated photon pair production in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1591328 ? Search for dark matter at $\sqrt{s}=13$ TeV in final states containing an energetic photon and large missing transverse momentum with the ATLAS detector +1596896 X Performance of the ATLAS Track Reconstruction Algorithms in Dense Environments in LHC Run 2 +1597123 ? Search for new phenomena in a lepton plus high jet multiplicity final state with the ATLAS experiment using $ \sqrt{s}=13 $ TeV proton-proton collision data +1598259 ? Studies of $Z\gamma$ production in association with a high-mass dijet system in $pp$ collisions at $\sqrt{s}=$ 8 TeV with the ATLAS detector +1598265 X Identification and rejection of pile-up jets at high pseudorapidity with the ATLAS detector +1598613 . Measurement of $b$-hadron pair production with the ATLAS detector in proton-proton collisions at $\sqrt{s}=8$ TeV +1599077 . Measurement of multi-particle azimuthal correlations in $pp$, $p+$Pb and low-multiplicity Pb$+$Pb collisions with the ATLAS detector +1599399 ? Search for the dimuon decay of the Higgs boson in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1601647 ? Search for pair production of vector-like top quarks in events with one lepton, jets, and missing transverse momentum in $ \sqrt{s}=13 $ TeV $pp$ collisions with the ATLAS detector +1602949 . Measurement of $WW/WZ \to \ell \nu q q^{\prime}$ production with the hadronically decaying boson reconstructed as one or two jets in $pp$ collisions at $\sqrt{s}=8$ TeV with ATLAS, and constraints on anomalous gauge couplings +1604026 . Measurement of jet fragmentation in 5.02 TeV proton-lead and proton-proton collisions with the ATLAS detector +1604029 . Measurement of the $ t\overline{t}\gamma $ production cross section in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1604271 ! Measurement of the inclusive jet cross-sections in proton-proton collisions at $ \sqrt{s}=8 $ TeV with the ATLAS detector +1604276 ? Search for supersymmetry in final states with two same-sign or three leptons and jets using 36 fb$^{-1}$ of $\sqrt{s}=13$ TeV $pp$ collision data with the ATLAS detector +1604888 ? Search for dark matter in association with a Higgs boson decaying to two photons at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1604889 ? Search for direct top squark pair production in events with a Higgs or $Z$ boson, and missing transverse momentum in $\sqrt{s}=13$ TeV $pp$ collisions with the ATLAS detector +1605396 ? Search for a new heavy gauge boson resonance decaying into a lepton and missing transverse momentum in 36 fb$^{-1}$ of $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS experiment +1607896 . Measurement of jet $p_{\mathrm{T}}$ correlations in Pb+Pb and $pp$ collisions at $\sqrt{s_{\mathrm{NN}}}=$ 2.76 TeV with the ATLAS detector +1608773 ? Search for Dark Matter Produced in Association with a Higgs Boson Decaying to $b\bar b$ using 36 fb$^{-1}$ of $pp$ collisions at $\sqrt s=13$ TeV with the ATLAS Detector +1608777 ? Search for top quark decays $t\rightarrow qH$, with $H\to\gamma\gamma$, in $\sqrt{s}=13$ TeV $pp$ collisions using the ATLAS detector +1609250 ? Search for new high-mass phenomena in the dilepton final state using 36 fb$^{−1}$ of proton-proton collision data at $ \sqrt{s}=13 $ TeV with the ATLAS detector +1609253 . Determination of the strong coupling constant $\alpha _\mathrm {s}$ from transverse energy–energy correlations in multijet events at $\sqrt{s} = 8~\hbox {TeV}$ using the ATLAS detector +1609258 X Study of the material of the ATLAS inner detector for Run 2 of the LHC +1609448 . Measurement of detector-corrected observables sensitive to the anomalous production of events with jets and large missing transverse momentum in $pp$ collisions at $\mathbf {\sqrt{s}=13}$  TeV using the ATLAS detector +1609451 ? Search for pair production of heavy vector-like quarks decaying to high-p$_{T}$ W bosons and b quarks in the lepton-plus-jets final state in pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector +1609773 ? Search for new phenomena in high-mass diphoton final states using 37 fb$^{-1}$ of proton--proton collisions collected at $\sqrt{s}=13$ TeV with the ATLAS detector +1610449 X Analysis of the $Wtb$ vertex from the measurement of triple-differential angular decay rates of single top quarks produced in the $t$-channel at $\sqrt{s}$ = 8 TeV with the ATLAS detector +1610451 ? Study of $WW\gamma$ and $WZ\gamma$ production in $pp$ collisions at $\sqrt{s} = 8$ TeV and search for anomalous quartic gauge couplings with the ATLAS experiment +1610625 ? Search for Heavy Higgs Bosons $A/H$ Decaying to a Top Quark Pair in $pp$ Collisions at $\sqrt{s}=8\text{ }\text{ }\mathrm{TeV}$ with the ATLAS Detector +1611039 ? Search for heavy resonances decaying to a $W$ or $Z$ boson and a Higgs boson in the $q\bar{q}^{(\prime)}b\bar{b}$ final state in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1613896 ? Searches for the $Z\gamma$ decay mode of the Higgs boson and for new high-mass resonances in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1614149 . Measurements of top-quark pair differential cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s}=13$ TeV using the ATLAS detector +1615205 . Search for new phenomena with large jet multiplicities and missing transverse momentum using large-radius jets and flavour-tagging at ATLAS in 13 TeV $pp$ collisions +1615206 ! Measurement of inclusive and differential cross sections in the $H \rightarrow ZZ^* \rightarrow 4\ell$ decay channel in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1615470 ? Search for direct top squark pair production in final states with two leptons in $\sqrt{s} = 13$ TeV $pp$ collisions with the ATLAS detector +1615472 X Evidence for the $ H\to b\overline{b} $ decay with the ATLAS detector +1615757 . Measurement of long-range multiparticle azimuthal correlations with the subevent cumulant method in $pp$ and $p + Pb$ collisions with the ATLAS detector at the CERN Large Hadron Collider +1615866 ? Measurement of the exclusive $\gamma \gamma \rightarrow \mu^+ \mu^-$ process in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1616092 ? Search for diboson resonances with boson-tagged jets in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1620202 ? Search for the direct production of charginos and neutralinos in final states with tau leptons in $\sqrt{s} = $ 13 TeV $pp$ collisions with the ATLAS detector +1620206 ? Search for squarks and gluinos in events with an isolated lepton, jets, and missing transverse momentum at $\sqrt{s}=13$ TeV with the ATLAS detector +1620694 ? Search for supersymmetry in events with $b$-tagged jets and missing transverse momentum in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1620909 ? Search for an invisibly decaying Higgs boson or dark matter candidates produced in association with a $Z$ boson in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector +1620910 ? Searches for heavy $ZZ$ and $ZW$ resonances in the $\ell\ell qq$ and $\nu\nu qq$ final states in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1622266 . Measurement of longitudinal flow decorrelations in Pb+Pb collisions at $\sqrt{s_{\text {NN}}}=2.76$ and 5.02 TeV with the ATLAS detector +1622737 . Measurement of quarkonium production in proton–lead and proton–proton collisions at $5.02~\mathrm {TeV}$ with the ATLAS detector +1622745 . Measurement of $\tau $ polarisation in $Z/\gamma ^{*}\rightarrow \tau \tau $ decays in proton–proton collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1623207 ? Search for a scalar partner of the top quark in the jets plus missing transverse momentum final state at $\sqrt{s}$=13 TeV with the ATLAS detector +1623208 X Direct top-quark decay width measurement in the $t\bar{t}$ lepton+jets channel at $\sqrt{s}$=8 TeV with the ATLAS experiment +1623908 X Combination of inclusive and differential $ \mathrm{t}\overline{\mathrm{t}} $ charge asymmetry measurements using ATLAS and CMS data at $ \sqrt{s}=7 $ and 8 TeV +1624549 ? A search for resonances decaying into a Higgs boson and a new particle $X$ in the $XH \to qqbb$ final state with the ATLAS detector +1624690 ? Search for additional heavy neutral Higgs and gauge bosons in the ditau final state produced in 36 fb$^{−1}$ of pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector +1624693 . Study of ordered hadron chains with the ATLAS detector +1625109 . $ZZ \to \ell^{+}\ell^{-}\ell^{\prime +}\ell^{\prime -}$ cross-section measurements and search for anomalous triple gauge couplings in 13 TeV $pp$ collisions with the ATLAS detector +1626105 . Measurement of lepton differential distributions and the top quark mass in $t\bar{t}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector +1627873 . Measurement of the cross-section for electroweak production of dijets in association with a Z boson in pp collisions at $\sqrt {s}$ = 13 TeV with the ATLAS detector +1627878 ? Search for new phenomena in high-mass final states with a photon and a jet from $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1628411 ? Search for heavy resonances decaying into $WW$ in the $e\nu\mu\nu$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1629567 . Measurement of the production cross-section of a single top quark in association with a Z boson in proton–proton collisions at 13 TeV with the ATLAS detector +1630632 ? Search for long-lived, massive particles in events with displaced vertices and missing transverse momentum in $\sqrt{s}$ = 13 TeV $pp$ collisions with the ATLAS detector +1630886 ! Measurement of the Drell-Yan triple-differential cross section in $pp$ collisions at $\sqrt{s} = 8$ TeV +1630899 ? Search for B-L R -parity-violating top squarks in $\sqrt s$ =13  TeV pp collisions with the ATLAS experiment +1631641 ? A search for pair-produced resonances in four-jet final states at $\sqrt{s} =$ 13 TeV with the ATLAS detector +1631642 ? Search for $WW/WZ$ resonance production in $\ell \nu qq$ final states in $pp$ collisions at $\sqrt{s} =$ 13 TeV with the ATLAS detector +1632756 . Measurement of differential cross sections of isolated-photon plus heavy-flavour jet production in pp collisions at $\sqrt{s}=8$ TeV using the ATLAS detector +1632760 ? Search for doubly charged Higgs boson production in multi-lepton final states with the ATLAS detector using proton–proton collisions at $\sqrt{s}=13\,\text {TeV}$ +1633591 ? Search for dark matter produced in association with bottom or top quarks in $\sqrt{s}=13$ TeV pp collisions with the ATLAS detector +1634607 ? Search for supersymmetry in final states with missing transverse momentum and multiple $b$-jets in proton-proton collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector +1634970 ! Measurement of inclusive jet and dijet cross-sections in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1635273 ! Measurement of differential cross sections and $W^+/W^-$ cross-section ratios for $W$ boson production in association with jets at $\sqrt{s}=8$ TeV with the ATLAS detector +1635274 ? Search for dark matter and other new phenomena in events with an energetic jet and large missing transverse momentum using the ATLAS detector +1637587 ! Measurement of the Soft-Drop Jet Mass in pp Collisions at $\sqrt{s} = 13$  TeV with the ATLAS Detector +1639856 . Search for top-squark pair production in final states with one lepton, jets, and missing transverse momentum using 36 fb$^{−1}$ of $ \sqrt{s}=13 $ TeV pp collision data with the ATLAS detector +1641076 ! Measurement of differential cross-sections of a single top quark produced in association with a $W$ boson at $\sqrt{s}=13$ TeV with ATLAS +1641262 . Search for long-lived charginos based on a disappearing-track signature in pp collisions at $ \sqrt{s}=13 $ TeV with the ATLAS detector +1641268 . Measurement of the Higgs boson coupling properties in the $H\rightarrow ZZ^{*} \rightarrow 4\ell$ decay channel at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1641270 . Search for squarks and gluinos in final states with jets and missing transverse momentum using 36  fb$^{-1}$ of $\sqrt{s}=13$  TeV pp collision data with the ATLAS detector +1641767 ? Search for exclusive Higgs and $Z$ boson decays to $\phi\gamma$ and $\rho\gamma$ with the ATLAS detector +1643838 ? Search for heavy ZZ resonances in the $\ell ^+\ell ^-\ell ^+\ell ^-$ and $\ell ^+\ell ^-\nu \bar{\nu }$ final states using proton–proton collisions at $\sqrt{s}= 13$   $\text {TeV}$ with the ATLAS detector +1643843 ? Search for heavy resonances decaying into a $W$ or $Z$ boson and a Higgs boson in final states with leptons and $b$-jets in 36 fb$^{-1}$ of $\sqrt s = 13$ TeV $pp$ collisions with the ATLAS detector +1644099 ! Measurement of the inclusive and fiducial $t\bar{t}$ production cross-sections in the lepton+jets channel in $pp$ collisions at $\sqrt{s} = 8$ TeV with the ATLAS detector +1644367 . Measurement of the production cross section of three isolated photons in $pp$ collisions at $\sqrt{s}$ = 8 TeV using the ATLAS detector +1644618 ? Search for electroweak production of supersymmetric states in scenarios with compressed mass spectra at $\sqrt{s}=13$ TeV with the ATLAS detector +1644899 ? Evidence for the associated production of the Higgs boson and a top quark pair with the ATLAS detector +1644900 ? Search for the standard model Higgs boson produced in association with top quarks and decaying into a $b\bar{b}$ pair in $pp$ collisions at $\sqrt{s}$ = 13  TeV with the ATLAS detector +1645627 . Measurement of the cross section for isolated-photon plus jet production in $pp$ collisions at $\sqrt s=13$ TeV using the ATLAS detector +1646686 . Measurements of $t\bar{t}$ differential cross-sections of highly boosted top quarks decaying to all-hadronic final states in $pp$ collisions at $\sqrt{s}=13\,$ TeV using the ATLAS detector +1649273 . Search for High-Mass Resonances Decaying to $\tau\nu$ in pp Collisions at $\sqrt{s}$=13  TeV with the ATLAS Detector +1650152 . Search for $W' \rightarrow tb$ decays in the hadronic final state using pp collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1650592 . Search for light resonances decaying to boosted quark pairs and produced in association with a photon or a jet in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1653453 ? Search for a Structure in the $B^0_s \pi^\pm$ Invariant Mass Spectrum with the ATLAS Experiment +1654357 ? Search for photonic signatures of gauge-mediated supersymmetry in 13 TeV $pp$ collisions with the ATLAS detector +1654372 ? Search for Higgs boson decays to beyond-the-Standard-Model light bosons in four-lepton events with the ATLAS detector at $\sqrt{s}=13$ TeV +1654582 . Measurements of Higgs boson properties in the diphoton decay channel with 36 fb$^{-1}$ of $pp$ collision data at $\sqrt{s} = 13$ TeV with the ATLAS detector +1654814 ? Search for the Decay of the Higgs Boson to Charm Quarks with the ATLAS Experiment +1656578 ! Measurements of differential cross sections of top quark pair production in association with jets in ${pp}$ collisions at $\sqrt{s}=13$ TeV using the ATLAS detector +1656834 X Performance of missing transverse momentum reconstruction with the ATLAS detector using proton-proton collisions at $\sqrt{s}$ = 13 TeV +1658490 . Production and Integration of the ATLAS Insertable B-Layer +1658902 ? Search for electroweak production of supersymmetric particles in final states with two or three leptons at $\sqrt{s}=13\,$TeV with the ATLAS detector +1664317 ? Search for pair production of up-type vector-like quarks and for four-top-quark events in final states with multiple $b$-jets with the ATLAS detector +1664332 ? Search for flavour-changing neutral current top-quark decays $t\to qZ$ in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1664486 ? Search for top squarks decaying to tau sleptons in $pp$ collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector +1665234 ? Search for Higgs boson decays into pairs of light (pseudo)scalar particles in the $\gamma\gamma jj$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1665828 ? Search for a heavy Higgs boson decaying into a $Z$ boson and another heavy Higgs boson in the $\ell\ell bb$ final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1667040 ? Search for low-mass dijet resonances using trigger-level jets with the ATLAS detector in $pp$ collisions at $\sqrt{s}=13$ TeV +1667045 ? Search for supersymmetry in events with four or more leptons in $\sqrt{s}=13$ TeV $pp$ collisions with ATLAS +1667046 ? Search for R-parity-violating supersymmetric particles in multi-jet final states produced in $p$-$p$ collisions at $\sqrt{s} =13$ TeV using the ATLAS detector at the LHC +1668124 ? Search for pair production of Higgs bosons in the $b\bar{b}b\bar{b}$ final state using proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1670020 ? A search for lepton-flavor-violating decays of the $Z$ boson into a $\tau$-lepton and a light lepton with the ATLAS detector +1670803 ? Search for heavy particles decaying into top-quark pairs using lepton-plus-jets events in proton–proton collisions at $\sqrt{s} = 13$   $\text {TeV}$ with the ATLAS detector +1671810 ? Measurements of b-jet tagging efficiency with the ATLAS detector using $ t\overline{t} $ events at $ \sqrt{s}=13 $ TeV +1672010 ? Search for heavy resonances decaying to a photon and a hadronically decaying $Z/W/H$ boson in $pp$ collisions at $\sqrt{s}=13$ $\mathrm{TeV}$ with the ATLAS detector +1672099 ? Search for supersymmetry in final states with charm jets and missing transverse momentum in 13 TeV $pp$ collisions with the ATLAS detector +1672147 . Measurement of colour flow using jet-pull observables in $t\bar{t}$ events with the ATLAS experiment at $\sqrt{s} = 13$ TeV +1672469 ? Prompt and non-prompt $J/\psi $ and $\psi (2\mathrm {S})$ suppression at high transverse momentum in $5.02~\mathrm {TeV}$ Pb+Pb collisions with the ATLAS experiment +1672475 ? Angular analysis of $B^0_d \rightarrow K^{*}\mu^+\mu^-$ decays in $pp$ collisions at $\sqrt{s}= 8$ TeV with the ATLAS detector +1672883 ? Search for flavor-changing neutral currents in top quark decays $t\to Hc$ and $t \to Hu$ in multilepton final states in proton-proton collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector +1672957 ? Measurement of the suppression and azimuthal anisotropy of muons from heavy-flavor decays in Pb+Pb collisions at $\sqrt{s_{\mathrm{NN}}} = 2.76$ TeV with the ATLAS detector +1672961 ! Measurement of dijet azimuthal decorrelations in $pp$ collisions at $\sqrt{s}=8$ TeV with the ATLAS detector and determination of the strong coupling +1673177 ? Measurement of jet fragmentation in Pb+Pb and $pp$ collisions at $\sqrt{s_{NN}} = 5.02$ TeV with the ATLAS detector +1673184 . Measurement of the nuclear modification factor for inclusive jets in Pb+Pb collisions at $\sqrt{s_\mathrm{NN}}=5.02$ TeV with the ATLAS detector +1674532 . Search for resonances in the mass distribution of jet pairs with one or two jets identified as $b$-jets in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1674946 ! Combined measurement of differential and total cross sections in the $H \rightarrow \gamma \gamma$ and the $H \rightarrow ZZ^* \rightarrow 4\ell$ decay channels at $\sqrt{s} = 13$ TeV with the ATLAS detector +1675352 . Search for new phenomena using the invariant mass distribution of same-flavour opposite-sign dilepton pairs in events with missing transverse momentum in $\sqrt{s}=13$   $\text {Te}\text {V}$ pp collisions with the ATLAS detector +1676078 ? Measurement of the Higgs boson mass in the $H\rightarrow ZZ^* \rightarrow 4\ell$ and $H \rightarrow \gamma\gamma$ channels with $\sqrt{s}=13$ TeV $pp$ collisions using the ATLAS detector +1676179 X Observation of Higgs boson production in association with a top quark pair at the LHC with the ATLAS detector +1676472 . Search for resonant $WZ$ production in the fully leptonic final state in proton-proton collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1676481 . Search for pair production of heavy vector-like quarks decaying into high-$p_T$ $W$ bosons and top quarks in the lepton-plus-jets final state in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1676551 ! Search for chargino-neutralino production using recursive jigsaw reconstruction in final states with two or three charged leptons in proton-proton collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1676554 X Operation and performance of the ATLAS Tile Calorimeter in Run 1 +1677389 . Search for pair production of higgsinos in final states with at least three $b$-tagged jets in $\sqrt{s} = 13$ TeV $pp$ collisions using the ATLAS detector +1677498 . Probing the quantum interference between singly and doubly resonant top-quark production in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1678484 . Search for the Higgs boson produced in association with a vector boson and decaying into two spin-zero particles in the $H \rightarrow aa \rightarrow 4b$ channel in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1679217 . Observation of centrality-dependent acoplanarity for muon pairs produced via two-photon scattering in Pb+Pb collisions at $\sqrt{s_{\mathrm{NN}}}=5.02$ TeV with the ATLAS detector +1679959 . Search for pair- and single-production of vector-like quarks in final states with at least one $Z$ boson decaying into a pair of electrons or muons in $pp$ collision data collected with the ATLAS detector at $\sqrt{s} = 13$ TeV +1680457 . Search for Higgs boson decays into a pair of light bosons in the $bb\mu\mu$ final state in $pp$ collision at $\sqrt{s} = $13 TeV with the ATLAS detector +1680462 . Searches for exclusive Higgs and $Z$ boson decays into $J/\psi\gamma$, $\psi(2S)\gamma$, and $\Upsilon(nS)\gamma$ at $\sqrt{s}=13$ TeV with the ATLAS detector +1681154 ? Correlated long-range mixed-harmonic fluctuations measured in $pp$, $p$+Pb and low-multiplicity Pb+Pb collisions with the ATLAS detector +1682295 . Prompt and non-prompt $J/\psi$ elliptic flow in Pb+Pb collisions at $\sqrt{s_{_\text{NN}}} = 5.02$ TeV with the ATLAS detector +1682345 . Search for Higgs boson pair production in the $\gamma\gamma b\bar{b}$ final state with 13 TeV $pp$ collision data collected by the ATLAS experiment +1682785 . Search for lepton-flavor violation in different-flavor, high-mass final states in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1683114 ! A strategy for a general search for new phenomena using data-derived signal regions and its application within the ATLAS experiment +1683331 . Search for charged Higgs bosons decaying via $H^{\pm} \to \tau^{\pm}\nu_{\tau}$ in the $\tau$+jets and $\tau$+lepton final states with 36 fb$^{-1}$ of $pp$ collision data recorded at $\sqrt{s} = 13$ TeV with the ATLAS experiment +1683431 . Search for Higgs boson pair production in the $\gamma\gamma WW^{*}$ channel using $pp$ collision data recorded at $\sqrt{s} = 13$ TeV with the ATLAS detector +1683434 . Search for Higgs bosons produced via vector-boson fusion and decaying into bottom quark pairs in $\sqrt{s} = 13$ $\mathrm{TeV}$ $pp$ collisions with the ATLAS detector +1683827 X In situ calibration of large-$R$ jet energy and mass in 13 TeV proton-proton collisions with the ATLAS detector +1684216 . Search for vector-boson resonances decaying to a top quark and bottom quark in the lepton plus jets final state in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1684341 . Search for dark matter in events with a hadronically decaying vector boson and missing transverse momentum in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1684489 . Search for new phenomena in events with same-charge leptons and $b$-jets in $pp$ collisions at $\sqrt{s}= 13$ TeV with the ATLAS detector +1684645 ? A search for resonant and non-resonant Higgs boson pair production in the ${b\bar{b}\tau^+\tau^-}$ decay channel in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1685058 . Constraints on off-shell Higgs boson production and the Higgs boson total width in $ZZ\to4\ell$ and $ZZ\to2\ell2\nu$ final states with the ATLAS detector +1685207 . Search for pair production of heavy vector-like quarks decaying into hadronic final states in $pp$ collisions at $\sqrt{s} = 13$ TeV with the ATLAS detector +1685418 . Search for doubly charged scalar bosons decaying into same-sign $W$ boson pairs with the ATLAS detector +1685420 . Combination of searches for heavy resonances decaying into bosonic and leptonic final states using 36 fb$^{-1}$ of proton-proton collision data at $\sqrt{s} = 13$ TeV with the ATLAS detector +1685421 . Combination of the searches for pair-produced vector-like partners of the third-generation quarks at $\sqrt{s} =$ 13 TeV with the ATLAS detector +1685997 . Search for long-lived particles in final states with displaced dimuon vertices in $pp$ collisions at $\sqrt{s}=$ 13 TeV with the ATLAS detector +1686365 . Search for charged Higgs bosons decaying into top and bottom quarks at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1686832 . Search for heavy charged long-lived particles in proton-proton collisions at $\sqrt{s} = 13$ TeV using an ionisation measurement with the ATLAS detector +1686834 . Measurement of the azimuthal anisotropy of charged particles produced in $\sqrt{s_\mathrm{NN}} = 5.02$ TeV Pb+Pb collisions with the ATLAS detector +1688943 . Search for squarks and gluinos in final states with hadronically decaying $\tau$-leptons, jets, and missing transverse momentum using $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1690929 . Performance of top-quark and $W$-boson tagging with ATLAS in Run 2 of the LHC +1691634 . Observation of $H \rightarrow b\bar{b}$ decays and $VH$ production with the ATLAS detector +1691822 . Measurements of gluon-gluon fusion and vector-boson fusion Higgs boson production cross-sections in the $H \to WW^{\ast} \to e\nu\mu\nu$ decay channel in $pp$ collisions at $\sqrt{s}=13$ TeV with the ATLAS detector +1692387 . A search for pairs of highly collimated photon-jets in $pp$ collisions at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1694476 . Search for invisible Higgs boson decays in vector boson fusion at $\sqrt{s} = 13$ TeV with the ATLAS detector +1694678 . Measurement of photon-jet transverse momentum correlations in 5.02 TeV Pb+Pb and $pp$ collisions with ATLAS +1696330 . Search for heavy Majorana or Dirac neutrinos and right-handed $W$ gauge bosons in final states with two charged leptons and two jets at $\sqrt{s}$ = 13 TeV with the ATLAS detector +1696805 . Measurement of the top quark mass in the $t\bar{t}\to$ lepton+jets channel from $\sqrt{s}=8$ TeV ATLAS data and combination with previous results diff --git a/doc/rivet-coverage-cms.rank b/doc/rivet-coverage-cms.rank --- a/doc/rivet-coverage-cms.rank +++ b/doc/rivet-coverage-cms.rank @@ -1,802 +1,820 @@ -1211825 X Alignment of the CMS Silicon Tracker during Commissioning with Cosmic Rays -1213246 X Performance and Operation of the CMS Electromagnetic Calorimeter -1215500 X Precise Mapping of the Magnetic Field in the CMS Barrel Yoke using Cosmic Rays -1223866 X Time Reconstruction and Performance of the CMS Electromagnetic Calorimeter -1223867 X Performance Study of the CMS Barrel Resistive Plate Chambers with Cosmic Rays -1223868 X Alignment of the CMS Muon System with Cosmic-Ray and Beam-Halo Muons -1223869 X Performance of CMS hadron calorimeter timing and synchronization using test beam, cosmic ray, and LHC beam data -1223870 X Fine Synchronization of the CMS Muon Drift-Tube Local Trigger using Cosmic Rays -1223871 X Performance of the CMS drift-tube chamber local trigger with cosmic rays -1223872 X Aligning the CMS Muon Chambers with the Muon Alignment System during an Extended Cosmic Ray Run -1223876 X Commissioning of the CMS High-Level Trigger with Cosmic Rays -1223941 X Identification and Filtering of Uncharacteristic Noise in the CMS Hadron Calorimeter -1223942 X Commissioning of the CMS Experiment and the Cosmic Run at Four Tesla -1223943 X Calibration of the CMS Drift Tube Chambers and Measurement of the Drift Velocity with Cosmic Rays -1223944 X Performance of the CMS Drift Tube Chambers with Cosmic Rays -1223945 X CMS Data Processing Workflows during an Extended Cosmic Ray Run -1223950 X Performance of the CMS Hadron Calorimeter with Cosmic Ray Muons and LHC Beam Data -1223951 X Performance of the CMS Cathode Strip Chambers with Cosmic Rays -1224836 X Commissioning and Performance of the CMS Silicon Strip Tracker with Cosmic Ray Muons -1224837 X Performance of CMS Muon Reconstruction in Cosmic-Ray Events -1225373 X Performance of the CMS Level-1 Trigger during Commissioning with Cosmic Ray Muons and LHC beams -1225374 X Measurement of the Muon Stopping Power in Lead Tungstate -1225466 X Commissioning and Performance of the CMS Pixel Tracker with Cosmic Ray Muons -1237408 . Transverse momentum and pseudorapidity distributions of charged hadrons in pp collisions at $\sqrt{s}$ = 0.9 and 2.36 TeV -1266261 . First Measurement of Bose-Einstein Correlations in proton-proton Collisions at $\sqrt{s}$ =0.9 and 2.36 TeV at the LHC -1266262 . Transverse-momentum and pseudorapidity distributions of charged hadrons in $pp$ collisions at $\sqrt{s}$ = 7 TeV -1268688 . Measurement of the charge ratio of atmospheric muons with the CMS detector -1271104 . First Measurement of the Underlying Event Activity at the LHC with $\sqrt{s}$ = 0.9 TeV -1277738 X CMS Tracking Performance Results from Early LHC Operation -1293115 ! Observation of Long-Range, Near-Side Angular Correlations in Proton-Proton Collisions at the LHC -1296251 ? Search for Dijet Resonances in 7 TeV pp Collisions at CMS -1301518 ? Search for Quark Compositeness with the Dijet Centrality Ratio in pp Collisions at $\sqrt{s}$ = 7 TeV -1303021 ? First Measurement of the Cross Section for Top-Quark Pair Production in Proton-Proton Collisions at $\sqrt{s}$ = 7 TeV -1308135 . Prompt and non-prompt J/$\psi$ production in pp collisions at $\sqrt{s}$ = 7 TeV -1309522 . Charged particle multiplicities in pp interactions at $\sqrt{s}$ = 0.9, 2.36, and 7 TeV -1309910 ? Search for Stopped Gluinos in pp collisions at $\sqrt{s}$ = 7 TeV -1311554 . Measurement of the Isolated Prompt Photon Production Cross Section in $pp$ Collisions at $\sqrt{s}$ = 7 TeV -1313495 . Measurements of Inclusive W and Z Cross Sections in pp Collisions at $\sqrt{s}$ = 7 TeV -1314757 ? Search for Microscopic Black Hole Signatures at the Large Hadron Collider -1316192 ? Search for Pair Production of First-Generation Scalar Leptoquarks in pp Collisions at $\sqrt{s}$= 7 TeV -1316193 ? Search for Pair Production of Second-Generation Scalar Leptoquarks in pp Collisions at $\sqrt{s}$ = 7 TeV -1317914 . Upsilon production cross section in pp collisions at $\sqrt{s}$ = 7 TeV -1317930 ? Search for a heavy gauge boson W' in the final state with an electron and large missing transverse energy in pp collisions at $\sqrt{s}$ = 7 TeV -1318453 . Measurement of the $B^+$ Production Cross Section in pp Collisions at $\sqrt{s}$ = 7 TeV -1320934 ? Search for Supersymmetry in pp Collisions at 7 TeV in Events with Jets and Missing Transverse Energy -1320944 ? Search for Heavy Stable Charged Particles in pp collisions at $\sqrt{s}$ = 7 TeV -1323060 . Inclusive b-hadron production cross section with muons in pp collisions at $\sqrt{s}$ = 7 TeV -1323062 . Measurement of Bose–Einstein Correlations in pp Collisions at $\sqrt{s}$ = 0.9 and 7 TeV -1324819 . Dijet Azimuthal Decorrelations in pp Collisions at $\sqrt{s}$ = 7 TeV -1325624 . First Measurement of Hadronic Event Shapes in pp Collisions at $\sqrt{s}$=7 TeV -1327643 ! Observation and studies of jet quenching in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1327689 . Measurement of Dijet Angular Distributions and Search for Quark Compositeness in pp Collisions at $\sqrt{s}$ = 7 TeV -1329400 . Measurement of $B\overline{B}$ angular correlations based on secondary vertex reconstruction at $\sqrt{s}$=7 TeV -1330706 . Strange Particle Production in pp collisions at $\sqrt{s}$ = 0.9 and 7 TeV -1331575 ? Search for a Heavy Bottom-like Quark in pp Collisions at $\sqrt{s}$ = 7 TeV -1332217 ? Measurement of $W^+W^-$ Production and Search for the Higgs Boson in pp Collisions at $\sqrt{s}$ = 7 TeV -1332232 ? Study of Z boson production in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1332588 ? Search for a W' boson decaying to a muon and a neutrino in pp collisions at $\sqrt{s}$ = 7 TeV -1333965 ? Search for Supersymmetry in pp Collisions at $\sqrt{s}$ = 7 TeV in Events with Two Photons and Missing Transverse Energy -1333970 ? Search for Resonances in the Dilepton Mass Distribution in pp Collisions at $\sqrt{s}$ = 7 TeV -1333985 ? Search for Physics Beyond the Standard Model in Opposite-sign Dilepton Events in pp Collisions at $\sqrt{s}$ = 7 TeV -1336774 . Measurement of the lepton charge asymmetry in inclusive W production in pp collisions at $\sqrt{s}$ = 7 TeV -1337288 ? Search for Large Extra Dimensions in the Diphoton Final State at the Large Hadron Collider -1343465 . Measurement of the Inclusive Z Cross Section via Decays to Tau Pairs in pp Collisions at $\sqrt{s}$ = 7 TeV -1343466 ? Search for Neutral Minimal Supersymmetric Standard Model Higgs Bosons Decaying to Tau Pairs in pp Collisions at $\sqrt{s}$=7 TeV -1343467 ! Measurement of the differential dijet production cross section in proton-proton collisions at $\sqrt{s}$=7 TeV -1344785 . Measurement of the B$^{0}$ Production Cross Section in pp Collisions at $\sqrt{s}$ = 7 TeV -1345080 ? Search for new physics with same-sign isolated dilepton events with jets and missing transverse energy at the LHC -1345345 X Charged particle transverse momentum spectra in pp collisions at $\sqrt{s}$ = 0.9 and 7 TeV -1345777 . Measurement of the Polarization of W Bosons with Large Transverse Momenta in W+Jets Events at the LHC -1350667 . Long-range and short-range dihadron angular correlations in central PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1351022 . Measurement of W$\gamma$ and Z$\gamma$ production in pp collisions at $\sqrt{s}$ = 7 TeV -1351424 ? Search for supersymmetry in events with a lepton, a photon, and large missing transverse energy in pp collisions at $\sqrt{s}$ = 7 TeV -1353610 X Indications of Suppression of Excited $\Upsilon$ States in Pb-Pb Collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1354050 ? Search for First Generation Scalar Leptoquarks in the e$\nu$jj Channel in pp Collisions at $\sqrt{s}$ = 7 TeV -1354581 . Measurement of the $t\bar{t}$ production cross section and the top quark mass in the dilepton channel in pp collisions at $\sqrt{s}$ =7 TeV -1355883 . Measurement of the Inclusive Jet Cross Section in pp Collisions at $\sqrt{s}$ = 7 TeV -1356370 . Measurement of the Ratio of the 3-jet to 2-jet Cross Sections in pp Collisions at $\sqrt{s}$ = 7 TeV -1356775 . Measurement of the $t\overline{t}$ Production Cross Section in pp Collisions at $\sqrt{s}$=7 TeV using the Kinematic Properties of Events with Leptons and Jets -1356804 ? Search for Physics Beyond the Standard Model Using Multilepton Signatures in pp Collisions at $\sqrt{s}$ =7 TeV -1357916 ? Search for Light Resonances Decaying into Pairs of Muons as a Signal of New Physics -1358131 ? Search for Same-Sign Top-Quark Pair Production at $\sqrt{s}$ = 7 TeV and Limits on Flavour Changing Neutral Currents in the Top Sector -1359601 ? Measurement of the t-channel single top quark production cross section in pp collisions at $\sqrt{s}$ = 7 TeV -1359837 ? Search for Supersymmetry in Events with b Jets and Missing Transverse Momentum at the LHC -1360758 . Measurement of the $B_{s}^{0}$ Production Cross Section with $B_{s}^{0} \to J/\psi\phi$ Decays in pp Collisions at $\sqrt{s}$ = 7 TeV -1361250 ? Search for New Physics with Jets and Missing Transverse Momentum in pp collisions at $\sqrt{s}$ = 7 TeV -1361586 ? Search for New Physics with a Monojet and Missing Transverse Energy in pp Collisions at $\sqrt{s}$ = 7 TeV -1361973 X Missing transverse energy performance of the CMS detector -1363299 . Measurement of the Underlying Event Activity at the LHC with $\sqrt{s}$ = 7 TeV and Comparison with $\sqrt{s}$ = 0.9 TeV -1365689 ? Inclusive search for squarks and gluinos in pp collisions at $\sqrt{s}$ = 7 TeV -1366774 ? A search for excited leptons in pp Collisions at $\sqrt{s}$ = 7 TeV -1366856 ? Search for supersymmetry in pp collisions at $\sqrt{s}$=7 TeV in events with a single lepton, jets, and missing transverse momentum -1368401 ? Search for Three-Jet Resonances in pp Collisions at $\sqrt{s}$ = 7 TeV -1369992 X Determination of Jet Energy Calibration and Transverse Momentum Resolution in CMS -1370079 ? Measurement of the Inclusive W and Z Production Cross Sections in pp Collisions at $\sqrt{s}$ = 7 TeV with the CMS experiment -1370086 ? Search for Resonances in the Dijet Mass Spectrum from 7 TeV pp Collisions at CMS -1370087 . Dependence on pseudorapidity and on centrality of charged hadron production in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1371756 ? Search for $B^{0}_{s} \to \mu^{+}\mu^{-}$ and $B^{0} \to \mu^{+}\mu^{-}$ decays in pp collisions at $\sqrt{s}$ = 7 TeV -1372196 . Measurement of the Drell-Yan Cross Section in pp Collisions at $\sqrt{s}$ = 7 TeV -1374176 ! Measurement of the Differential Cross Section for Isolated Prompt Photon Production in pp Collisions at 7 TeV -1376068 . Measurement of the $t\bar{t}$ Production Cross Section in pp Collisions at 7 TeV in Lepton + Jets Events Using b-quark Jet Identification -1381201 ? Search for Supersymmetry at the LHC in Events with Jets and Missing Transverse Energy -1384847 ? Search for a Vectorlike Quark with Charge 2/3 in t + Z Events from pp Collisions at $\sqrt{s}$ = 7 TeV -1385560 X Performance of $\tau$-lepton reconstruction and identification in CMS -1387233 . Forward Energy Flow, Central Charged-Particle Multiplicities, and Pseudorapidity Gaps in W and Z Boson Events from pp Collisions at $\sqrt{s}$ = 7 TeV -1387261 . Measurement of energy flow at large pseudorapidities in pp collisions at $\sqrt{s}$ = 0.9 and 7 TeV -1390089 ? Measurement of the weak mixing angle with the Drell-Yan process in proton-proton collisions at the LHC -1390474 X Jet Production Rates in Association with W and Z Bosons in pp Collisions at $\sqrt{s}$ = 7 TeV -1392675 . Measurement of the Rapidity and Transverse Momentum Distributions of Z Bosons in pp Collisions at $\sqrt{s}$=7 TeV -1394648 ? Measurement of the Production Cross Section for Pairs of Isolated Photons in pp collisions at $\sqrt{s}$ = 7 TeV -1396238 . J/$\psi$ and $\psi$(2S) production in pp collisions at $\sqrt{s}$ = 7 TeV -1401238 . Exclusive $\gamma\gamma \to \mu^{+}\mu^{-}$ production in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1404168 ? Search for signatures of extra dimensions in the diphoton mass spectrum at the Large Hadron Collider -1409400 . Measurement of the charge asymmetry in top-quark pair production in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1416526 ? Measurement of isolated photon production in pp and PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1416581 . Centrality dependence of dihadron correlations and azimuthal anisotropy harmonics in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1419483 ? Suppression of non-prompt J$\psi$, prompt J$\psi$, and $\Upsilon$(1S) in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1421821 . Measurement of the inclusive production cross sections for forward jets and for dijet events with one forward and one central jet in pp collisions at $\sqrt{s}$ = 7 TeV -1422556 X Search for a Higgs boson in the decay channel $H \to ZZ^{(*)} \to q\bar{q}l^-l^+$ in pp collisions at $\sqrt{s}$ = 7 TeV -1422613 X Search for the standard model Higgs boson decaying into two photons in pp collisions at $\sqrt{s}$=7 TeV -1422614 X Combined results of searches for the standard model Higgs boson in pp collisions at $\sqrt{s}$ = 7 TeV -1422615 X Search for the standard model Higgs boson decaying to $W^+ W^-$ in the fully leptonic final state in pp collisions at $\sqrt{s}$ = 7 TeV -1423188 X Search for the standard model Higgs boson in the decay channel $H \to ZZ \to 4 l$ in pp collisions at $\sqrt{s}$ = 7 TeV -1423827 ? Study of high-$p_T$ charged particle suppression in PbPb compared to pp collisions at $\sqrt{s_{NN}}$=2.76 TeV -1424785 X Search for the standard model Higgs boson in the $H \to ZZ \to 2l 2\nu$ channel in pp collisions at $\sqrt{s}$ = 7 TeV -1424911 X Search for the standard model Higgs boson in the $H \to ZZ \to l^+l^- \tau^+ \tau^-$ decay channel in pp collisions at $\sqrt{s}$=7 TeV -1425242 ? Search for large extra dimensions in dimuon and dielectron events in pp collisions at $\sqrt{s}$ = 7 TeV -1425572 X Search for neutral Higgs bosons decaying to tau pairs in pp collisions at $\sqrt{s}$=7 TeV -1425668 X Search for the standard model Higgs boson decaying to bottom quarks in pp collisions at $\sqrt{s}$=7 TeV -1426116 . Inclusive b-jet production in pp collisions at $\sqrt{s}$=7 TeV -1426547 X Jet momentum dependence of jet quenching in PbPb collisions at $\sqrt{s_{NN}}$=2.76 TeV -1427203 . Search for quark compositeness in dijet angular distributions from pp collisions at $\sqrt{s}$ = 7 TeV -1428186 ? Search for microscopic black holes in pp collisions at $\sqrt{s}$ = 7 TeV -1432467 . Measurement of the cross section for production of b b-bar X, decaying to muons in pp collisions at $\sqrt{s}$=7 TeV -1433136 X Search for $B_s^0 \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$ decays -1434372 ? Search for heavy, top-like quark pair production in the dilepton final state in pp collisions at $\sqrt{s}$ = 7 TeV -1436295 . Measurement of the top quark pair production cross section in pp collisions at $\sqrt{s}$ = 7 TeV in dilepton final states containing a $\tau$ -1437178 . Ratios of dijet production cross sections as a function of the absolute difference in rapidity between jets in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1438808 ? Search for Dark Matter and Large Extra Dimensions in pp Collisions Yielding a Photon and Missing Transverse Energy -1439084 ? Search for heavy bottom-like quarks in 4.9 inverse femtobarns of pp collisions at $\sqrt{s}$ = 7 TeV -1439302 . Measurement of the underlying event in the Drell-Yan process in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1439401 . Measurement of the elliptic anisotropy of charged particles produced in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1439646 . Measurement of the Z/$\gamma^*$+b-jet cross section in pp collisions at $\sqrt{s}$ = 7 TeV -1439833 ? Azimuthal anisotropy of charged particles at high transverse momenta in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1440474 ? Search for anomalous $t \bar{t}$ production in the highly-boosted all-hadronic final state -1440820 X Measurement of the mass difference between top and antitop quarks -1441266 . Shape, transverse size, and charged hadron multiplicity of jets in pp collisions at $\sqrt{s}$ = 7 TeV -1441827 ? Search for physics beyond the standard model in events with a Z boson, jets, and missing transverse energy in pp collisions at $\sqrt{s}$ = 7 TeV -1443087 ? Search for leptonic decays of W' bosons in pp collisions at $\sqrt{s}$=7 TeV -1443708 ? Search for anomalous production of multilepton events in pp collisions at $\sqrt{s}$=7 TeV -1444434 X Observation of a New $\Xi_{b}$ Baryon -1445498 ? Studies of jet quenching using isolated-photon+jet correlations in PbPb and pp collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1445648 ? Search for heavy long-lived charged particles in pp collisions at $\sqrt{s}$=7 TeV -1445989 . Measurement of the $\Lambda_b$ cross section and the $\overline{\Lambda}_b$ to $\Lambda_b$ ratio with J/$\psi\Lambda$ decays in pp collisions at $\sqrt{s}$ = 7 TeV -1448398 . Measurement of the pseudorapidity and centrality dependence of the transverse energy density in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1449469 ? Search for new physics in events with same-sign dileptons and b-tagged jets in pp collisions at $\sqrt{s}$ = 7 TeV -1452092 . Search for a light charged Higgs boson in top quark decays in pp collisions at $\sqrt{s}$ = 7 TeV -1452205 . Study of W boson production in PbPb and pp collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1452300 . Measurement of jet fragmentation into charged particles in pp and PbPb collisions at $\sqrt{s_{NN}}$= 2.76 TeV -1453087 ? Search for new physics with same-sign isolated dilepton events with jets and missing transverse energy -1454392 ? Search for a W′ or Techni-$\rho$ Decaying into WZ in pp Collisions at $\sqrt{s}$=7  TeV -1455384 ? Search for high mass resonances decaying into $\tau$-lepton pairs in pp collisions at $\sqrt{s}$ = 7 TeV -1455388 ? Search for narrow resonances in dilepton mass spectra in pp collisions at $\sqrt{s}$ = 7 TeV -1455804 ? Measurement of the electron charge asymmetry in inclusive W production in pp collisions at $\sqrt{s}$ = 7 TeV -1456699 ? Search for charge-asymmetric production of W' bosons in top pair + jet events from pp collisions at $\sqrt{s}$ = 7 TeV -1456700 ? Search for new physics in events with opposite-sign leptons, jets, and missing transverse energy in pp collisions at $\sqrt{s}$ = 7 TeV -1456917 X Performance of CMS muon reconstruction in pp collision events at $\sqrt{s}$ = 7 TeV -1458244 ? Search for dark matter and large extra dimensions in monojet events in pp collisions at $\sqrt{s}$= 7 TeV -1458718 X Search for a light pseudoscalar Higgs boson in the dimuon decay channel in pp collisions at $\sqrt{s}$ = 7 TeV -1458954 ? Search for stopped long-lived particles produced in pp collisions at $\sqrt{s}$ =7 TeV -1458955 ! Inclusive and differential measurements of the $t\bar{t}$ charge asymmetry in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1459726 ? Search for new physics with long-lived particles decaying to photons and missing energy in pp collisions at $\sqrt{s}$ = 7 TeV -1460320 X Search for a fermiophobic Higgs boson in pp collisions at $\sqrt{s}$=7 TeV -1461133 ? Search for supersymmetry in hadronic final states using $M_{T2}$ in pp collisions at $\sqrt{s}$ = 7 TeV -1461136 ? Search for new physics in the multijet and missing transverse momentum final state in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1461454 . Measurement of the underlying event activity in pp collisions at $\sqrt{s}$ = 0.9 and 7 TeV with the novel jet-area/median approach -1461666 X A search for a doubly-charged Higgs boson in pp collisions at $\sqrt{s}$ = 7 TeV -1462689 . Forward-backward asymmetry of Drell-Yan lepton pairs in pp collisions at $\sqrt{s}$ = 7 TeV -1463141 . Study of the inclusive production of charged pions, kaons, and protons in pp collisions at $\sqrt{s}$ = 0.9, 2.76, and 7 TeV -1463730 X Search for pair production of first- and second-generation scalar leptoquarks in pp collisions at $\sqrt{s}$= 7 TeV -1470233 X Search for heavy Majorana neutrinos in $\mu^{\pm}\mu^{\pm}$ + jets and $e^{\pm}e^{\pm}$ + jets events in pp collisions at $\sqrt{s}$ = 7 TeV -1471016 X Observation of a new boson at a mass of 125 GeV with the CMS experiment at the LHC -1471907 X Search for a W' boson decaying to a bottom quark and a top quark in pp collisions at $\sqrt{s}$ = 7 TeV -1471908 X Search for flavor changing neutral currents in top quark decays in pp collisions at 7 TeV -1472812 . Measurement of the azimuthal anisotropy of neutral pions in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1472818 . Measurement of the $t\bar{t}$ production cross section in the dilepton channel in pp collisions at $\sqrt{s}$=7 TeV -1473033 . Observation of sequential Upsilon suppression in PbPb collisions -1473042 X Search for three-jet resonances in pp collisions at $\sqrt{s}$ = 7 TeV -1473586 . Study of the dijet mass spectrum in pp $\to$ W + jets events at $\sqrt{s}$=7 TeV -1474536 X Search for supersymmetry in events with b-quark jets and missing transverse energy in pp collisions at 7 TeV -1476184 X Search for pair produced fourth-generation up-type quarks in pp collisions at $\sqrt{s}$=7 TeV with a lepton in the final state -1476446 X Combined search for the quarks of a sequential fourth generation -1477009 X Search for exclusive or semi-exclusive $\gamma\gamma$ production and observation of exclusive and semi-exclusive $e^+e^−$ production in pp collisions at $\sqrt{s}$=7 TeV -1477012 . Observation of a diffractive contribution to dijet production in proton-proton collisions at $\sqrt{s}$=7 TeV -1477638 X Measurement of the top-quark mass in $t\bar{t}$ events with lepton+jets final states in pp collisions at $\sqrt{s}$=7 TeV -1477641 X Measurement of the top-quark mass in $t\bar{t}$ events with dilepton final states in pp collisions at $\sqrt{s}$=7 TeV -1478055 ? Measurement of the $\Upsilon$(1S), $\Upsilon$(2S) and $\Upsilon$(3S) polarizations in pp collisions at $\sqrt{s}$ = 7 TeV -1478523 X Evidence for associated production of a single top quark and W boson in pp collisions at $\sqrt{s}$ = 7 TeV -1478836 X Search for a narrow, spin-2 resonance decaying to a pair of Z bosons in the $q\bar{q}^{l^+ l^-}$ final state -1478840 X Search for the standard model Higgs boson produced in association with W and Z bosons in pp collisions at $\sqrt{s}$=7 TeV -1479236 X Search for resonant $t\bar{t}$ production in lepton+jets events in pp collisions at $\sqrt{s}$=7 TeV -1479240 ? Measurement of the single-top-quark t-channel cross section in pp collisions at $\sqrt{s}$ = 7 TeV -1482262 X Search for electroweak production of charginos and neutralinos using leptonic final states in pp collisions at $\sqrt{s}$ = 7 TeV -1482833 X Search for anomalous production of highly boosted Z bosons decaying to μ+μ− in proton–proton collisions at $\sqrt{s}$ = 7 TeV -1482834 ? Measurement of the relative prompt production rate of $\chi_{c2}$ and $\chi_{c1}$ in pp collisions at $\sqrt{s}$ = 7 TeV -1483525 X Search for supersymmetry in events with photons and low missing transverse energy in pp collisions at $\sqrt{s}$ = 7 TeV -1483614 X Search for heavy lepton partners of neutrinos in proton-proton collisions in the context of the type III seesaw mechanism -1483729 X Search for narrow resonances and quantum black holes in inclusive and b-tagged dijet mass spectra from pp collisions at $\sqrt{s}$ = 7 TeV -1483732 X Search for fractionally charged particles in pp collisions at $\sqrt{s}$ = 7 TeV -1484093 X Search for heavy neutrinos and W$_R$ bosons with right-handed couplings in a left-right symmetric model in pp collisions at 7 TeV -1484094 X Search for excited leptons in pp collisions at $\sqrt{s}$ = 7 TeV -1485249 X Observation of Z decays to four leptons with the CMS detector at the LHC -1489349 ? Observation of long-range, near-side angular correlations in pPb collisions at the LHC -1489352 X Search for third-generation leptoquarks and scalar bottom quarks in pp collisions at $\sqrt{s}$ = 7 TeV -1489353 X Search for pair production of third-generation leptoquarks and top squarks in pp collisions at $\sqrt{s}$ = 7 TeV -1490185 . Measurement of the inelastic proton-proton cross section at $\sqrt{s}$ = 7 TeV -1490896 X Search for heavy quarks decaying into a top quark and a W or Z boson using lepton + jets events in pp collisions at $\sqrt{s}$ = 7 TeV -1490897 ? Measurement of the sum of WW and WZ production with W+dijet events in pp collisions at $\sqrt{s}$ = 7 TeV -1490899 X Search for a non-standard-model Higgs boson decaying to a pair of new light bosons in four-muon final states -1490908 X Search for supersymmetry in final states with missing transverse energy and 0, 1, 2, or at least 3 b-quark jets in 7 TeV pp collisions using the variable $\alpha_T$ -1493228 ! Measurement of differential top-quark pair production cross sections in pp colisions at $\sqrt{s}$ = 7 TeV -1493239 X Search in leptonic channels for heavy resonances decaying to long-lived neutral particles -1493600 X Search for supersymmetry in final states with a single lepton, b-quark jets, and missing transverse energy in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1494069 X Search for Z' resonances decaying to $t\bar{t}$ in dilepton+jets final states in pp collisions at $\sqrt{s}$ = 7 TeV -1494669 X Identification of b-quark jets with the CMS experiment -1495103 X Search for new physics in events with photons, jets, and missing transverse energy in pp collisions at $\sqrt{s}$ = 7 TeV -1495152 ? Measurement of the ZZ production cross section and search for anomalous couplings in 2l2l' final states in pp collisions at $\sqrt{s}$=7 TeV -1495801 X Search for exotic resonances decaying into WZ/ZZ in pp collisions at $\sqrt{s}$ = 7 TeV -1498906 X Search for long-lived particles in events with photons and missing energy in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1498909 X Search for heavy resonances in the W/Z-tagged dijet mass spectrum in pp collisions at 7 TeV -1501122 X Search for contact interactions in $\mu^+ \mu^-$ events in pp collisions at $\sqrt{s}$ = 7 TeV -1502387 X Search for heavy narrow dilepton resonances in pp collisions at $\sqrt{s}$ = 7 TeV and $\sqrt{s}$ = 8 TeV -1502391 X Search for new physics in events with same-sign dileptons and b jets in pp collisions at $\sqrt{s}$ = 8 TeV -1502655 X Search for supersymmetry in pp collisions at $\sqrt{s}$ = 7 TeV in events with a single lepton, jets, and missing transverse momentum -1502670 X Study of the Mass and Spin-Parity of the Higgs Boson Candidate via Its Decays to Z Boson Pairs -1502672 . Measurements of differential jet cross sections in proton-proton collisions at $\sqrt{s}$=7 TeV with the CMS detector -1502676 . Measurement of the $t\bar{t}$ production cross section in pp collisions at $\sqrt{s}$ = 7 TeV with lepton + jets final states -1503231 X Search for supersymmetry in events with opposite-sign dileptons and missing transverse energy using an artificial neural network -1503578 . Event shapes and azimuthal correlations in Z + jets events in pp collisions at $\sqrt{s}$ =7 TeV -1503581 X Inclusive search for supersymmetry using the razor variables in pp collisions at $\sqrt{s}$ = 7 TeV -1504348 X Interpretation of searches for supersymmetry with simplified models -1505375 X Search for physics beyond the standard model in events with $\tau$ leptons, jets, and large transverse momentum imbalance in pp collisions at $\sqrt{s}$= 7 TeV -1507410 . Measurement of $W^+W^-$ and ZZ production cross sections in pp collisions at $\sqrt{s}$=8 TeV -1507584 X Search for contact interactions using the inclusive jet $p_T$ spectrum in pp collisions at $\sqrt{s}$=7 TeV -1509515 . Measurement of the $t\bar{t}$ production cross section in the $\tau$+jets channel in pp collisions at $\sqrt{s}$ = 7 TeV -1513155 X Search for pair-produced dijet resonances in four-jet final states in pp collisions at $\sqrt{s}$ = 7 TeV -1513156 . Measurement of the $t\bar{t}$ production cross section in the all-jet final state in pp collisions at $\sqrt{s}$ = 7 TeV -1514059 X Searches for Higgs bosons in pp collisions at $\sqrt{s}$ = 7 and 8 TeV in the context of four-generation and fermiophobic models -1514526 . Study of the underlying event at forward rapidity in pp collisions at $\sqrt{s}$ = 0.9, 2.76, and 7 TeV -1514623 X Search for new physics in final states with a lepton and missing transverse energy in pp collisions at the LHC -1514641 X Search for a Higgs boson decaying into a b-quark pair and produced in association with b quarks in proton-proton collisions at 7 TeV -1516940 X Measurement of the X(3872) production cross section via decays to $J/\psi \pi^+ \pi^-$ in pp collisions at $\sqrt{s}$ = 7 TeV -1517534 X Search for narrow resonances using the dijet mass spectrum in pp collisions at $\sqrt{s}$ = 8 TeV -1523439 X Search for the standard model Higgs boson produced in association with a top-quark pair in pp collisions at the LHC -1527115 . Search for supersymmetry in hadronic final states with missing transverse energy using the variables $\alpha_T$ and b-quark multiplicity in pp collisions at $\sqrt{s}$ = 8 TeV -1528157 ? Measurement of associated production of vector bosons and $t\bar{t}$ at $\sqrt{s}$= 7 TeV -1529865 X Observation of a new boson with mass near 125 GeV in pp collisions at $\sqrt{s}$ = 7 and 8 TeV -1529875 . Studies of jet mass in dijet and W/Z+jet events -1529911 X A New Boson with a Mass of 125 GeV Observed with the CMS Experiment at the Large Hadron Collider -1530528 X Search for microscopic black holes in pp collisions at $\sqrt{s}$ = 8 TeV -1532068 ? Measurement of the $\Upsilon$(1S), $\Upsilon$(2S), and $\Upsilon$(3S) cross sections in pp collisions at $\sqrt{s}$ = 7 TeV -1536966 X Search for a standard-model-like Higgs boson with a mass in the range 145 to 1000 GeV at the LHC -1543219 . Measurement of masses in the $t\bar{t}$ system by kinematic endpoints in pp collisions at $\sqrt{s}$=7 TeV -1544427 X Measurement of the $\Lambda_b^0$ lifetime in pp collisions at $\sqrt{s}$ = 7 TeV -1544428 ! Measurement of the ratio of the inclusive 3-jet cross section to the inclusive 2-jet cross section in pp collisions at $\sqrt{s}$ = 7 TeV and first determination of the strong coupling constant in the TeV range -1545325 X Searches for long-lived charged particles in pp collisions at $\sqrt{s}$=7 and 8 TeV -1545429 . Multiplicity and transverse momentum dependence of two- and four-particle correlations in pPb and PbPb collisions -1546693 X Search for gluino mediated bottom- and top-squark production in multijet final states in pp collisions at 8 TeV -1550912 X Study of exclusive two-photon production of $W^{+}W^{-}$ in pp collisions at $\sqrt{s}$ =7 TeV and constraints on anomalous quartic gauge couplings -1551364 . Measurement of neutral strange particle production in the underlying event in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1552320 . Measurement of the hadronic activity in events with a Z and two jets and extraction of the cross section for the electroweak production of a Z with two jets in pp collisions at $\sqrt{s}$ = 7 TeV -1553554 ? Measurement of the $W^+W^-$ cross section in pp collisions at $\sqrt{s}$ = 7 TeV and limits on anomalous $WW_\gamma$ and WWZ couplings -1554142 X Energy calibration and resolution of the CMS electromagnetic calorimeter in pp collisions at $\sqrt{s}$ = 7 TeV -1558437 X Search for top squarks in R-parity-violating supersymmetry using three or more leptons and b-tagged jets -1558674 X The performance of the CMS muon detector in proton-proton collisions at $\sqrt{s}$ = 7 TeV at the LHC -1560190 X Determination of the top-quark pole mass and strong coupling constant from the $t\bar{t}$ production cross section in pp collisions at $\sqrt{s}$ = 7 TeV -1561691 . Study of the production of charged pions, kaons, and protons in pPb collisions at $\sqrt{s_{NN}}$ = 5.02 TeV -1562755 X Measurement of the top-quark mass in all-jets $t\bar{t}$ events in pp collisions at $\sqrt{s}$=7 TeV -1562983 X Measurement of the $B_s^0 \to \mu^+ \mu^-$ branching fraction and search for $B^0 \to \mu^+ \mu^-$ with the CMS Experiment -1563290 X Search for a Higgs boson decaying into a Z and a photon in pp collisions at $\sqrt{s}$ = 7 and 8 TeV -1563851 ? Measurement of the prompt J/$\psi$ and $\psi$(2S) polarizations in pp collisions at $\sqrt{s}$ = 7 TeV -1569057 X Search for top-squark pair production in the single-lepton final state in pp collisions at $\sqrt{s}$ = 8 TeV -1579600 X Angular analysis and branching fraction measurement of the decay $B^0 \to K^{*0} \mu^+\mu^-$ -1581688 . Measurement of the W-boson helicity in top-quark decays from $t\bar{t}$ production in lepton+jets events in pp collisions at $\sqrt{s}$=7 TeV -1596322 ? Measurement of the $W\gamma$ and $Z\gamma$ inclusive cross sections in pp collisions at $\sqrt{s}$ = 7 TeV and limits on anomalous triple gauge boson couplings -1596330 X Search for a new bottomonium state decaying to $\Upsilon(1S)\pi^+ \pi^-$ in pp collisions at $\sqrt{s}$ = 8 TeV -1597445 ? Measurement of the production cross section for $Z\gamma \to \nu\bar{\nu}\gamma$ in pp collisions at $\sqrt{s}$ = 7 TeV and limits on $ZZ\gamma$ and $Z\gamma\gamma$ triple gauge boson couplings -1599045 X Searches for new physics using the $t\bar{t}$ invariant mass distribution in pp collisions at √s=8  TeV -1603481 X Observation of a peaking structure in the J/$\psi\phi$ mass spectrum from $B^\pm \to J/\psi \phi K^\pm$ decays -1605718 ! Modification of jet shapes in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1605854 . Measurement of the cross section and angular correlations for associated production of a Z boson with b hadrons in pp collisions at $\sqrt{s}$ = 7 TeV -1605940 . Measurement of associated W + charm production in pp collisions at $\sqrt{s}$ = 7 TeV -1605941 X Search for baryon number violation in top quark decays -1609586 . Rapidity distributions in exclusive Z + jet and photon + jet events in pp collisions at $\sqrt{s}$=7 TeV -1610290 X Search for the standard model Higgs boson produced in association with a W or a Z boson and decaying to bottom quarks -1611200 . Jet and underlying event properties as a function of charged-particle multiplicity in proton–proton collisions at $\sqrt{s}$ = 7 TeV -1620433 ! Measurement of the differential and double-differential Drell-Yan cross sections in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1623290 . Measurement of higher-order harmonic azimuthal anisotropy in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1626270 X Searches for light- and heavy-flavour three-jet resonances in pp collisions at $\sqrt{s}$ = 8 TeV -1629314 . Measurements of $t\bar{t}$ spin correlations and top-quark polarization using dilepton final states in pp collisions at $\sqrt{s}$ = 7 TeV -1630049 X Search for supersymmetry in pp collisions at $\sqrt{s}$ = 8 TeV in events with a single lepton, large jet multiplicity, and multiple b jets -1630423 X Search for pair production of excited top quarks in the lepton+jets final state -1630833 . Probing color coherence effects in pp collisions at $\sqrt{s}$ = 7 TeV -1630884 . Measurement of the triple-differential cross section for photon+jets production in proton-proton collisions at $\sqrt{s}$=7 TeV -1631561 X Search for new physics in events with same-sign dileptons and jets in pp collisions at $\sqrt{s}$=8 TeV -1632410 X Inclusive search for a vector-like T quark with charge 2/3 in pp collisions at $\sqrt{s}$=8 TeV -1633401 X Measurement of Higgs boson production and properties in the WW decay channel with leptonic final states -1634115 X Studies of azimuthal dihadron correlations in ultra-central PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1635433 X Search for top-quark partners with charge 5/3 in the same-sign dilepton final state -1636043 X Search for stop and higgsino production using diphoton Higgs boson decays -1636893 X Search for flavor-changing neutral currents in top-quark decays $t \to Zq$ in pp collisions at $\sqrt{s}$=8 TeV -1636894 X Evidence of b-jet quenching in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1637951 X Measurement of the properties of a Higgs boson in the four-lepton final state -1638381 . Study of double parton scattering using W + 2-jet events in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1639604 X Event activity dependence of Y(nS) production in $\sqrt{s_{NN}}$=5.02 TeV pPb and $\sqrt{s}$=2.76 TeV pp collisions -1639605 ? Measurement of the muon charge asymmetry in inclusive pp $\to$ W + X production at $\sqrt{s}$=7 TeV and an improved determination of light parton -1639619 . Measurement of four-jet production in proton-proton collisions at $\sqrt{s}$=7 TeV -1639945 ! Measurement of the production cross section for a W boson and two b jets in pp collisions at $\sqrt{s}$ = 7 TeV -1640470 . Measurement of the $t\bar{t}$ production cross section in the dilepton channel in pp collisions at $\sqrt{s}$=8 TeV -1642680 X Observation of the associated production of a single top quark and a W boson in pp collisions at $\sqrt{s}$ = 8 TeV -1643571 . Studies of dijet pseudorapidity distributions and transverse momentum balance in pPb collisions at $\sqrt{s_{NN}}$=5.02 TeV -1643937 X Evidence for the 125 GeV Higgs boson decaying to a pair of $\tau$ leptons -1644807 X Evidence for the direct decay of the 125 GeV Higgs boson to fermions -1646590 ? Measurement of inclusive W and Z boson production cross sections in pp collisions at $\sqrt{s}$ =8 TeV -1646977 ! Measurement of the production cross sections for a Z boson and one or more b jets in pp collisions at $\sqrt{s}$ = 7 TeV -1647398 X Search for W' $\to$ tb decays in the lepton + jets final state in pp collisions at $\sqrt{s}$ = 8 TeV -1648316 . Measurements of the $t\bar{t}$ charge asymmetry using the dilepton decay channel in pp collisions at $\sqrt{s}$=7 TeV -1662652 X Search for new physics in the multijet and missing transverse momentum final state in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1667597 X Alignment of the CMS tracker with LHC and cosmic ray data -1668410 . Measurement of WZ and ZZ production in pp collisions at $\sqrt{s}$ = 8 TeV in final states with b-tagged jets -1690567 ? Measurement of the t-channel single-top-quark production cross section and of the |$V_{tb}$| CKM matrix element in pp collisions at $\sqrt{s}$ = 8 TeV -1693506 X Search for invisible decays of Higgs bosons in the vector boson fusion and associated ZH production modes -1694147 ? Measurement of the ratio $B(t \to Wb)/B(t \to Wq)$ in pp collisions at $\sqrt{s}$ = 8 TeV -1694767 ! Measurement of jet multiplicity distributions in $t\bar{t}$ production in pp collisions at $\sqrt{s}$ = 7 TeV -1696396 X A search for WW$\gamma$ and WZ$\gamma$ production and constraints on anomalous quartic gauge couplings in pp collisions at $\sqrt{s}$ = 8 TeV -1696925 X Search for anomalous production of events with three or more leptons in pp collisions at $\sqrt{s}$=8 TeV -1699728 . Measurement of pseudorapidity distributions of charged particles in proton-proton collisions at $\sqrt{s}$ = 8 TeV by the CMS and TOTEM experiments -1700394 X Search for massive resonances in dijet systems containing jets tagged as W or Z boson decays in pp collisions at $\sqrt{s}$= 8 TeV -1701344 X Constraints on the Higgs boson width from off-shell production and decay to Z-boson pairs -1701345 X Search for massive resonances decaying into pairs of boosted bosons in semi-leptonic final states at $\sqrt{s}$ = 8 TeV -1702029 X Search for top-squark pairs decaying into Higgs or Z bosons in pp collisions at $\sqrt{s}$ = 8 TeV -1702051 X Search for supersymmetry with razor variables in pp collisions at $\sqrt{s}$ = 7 TeV -1704291 X Description and performance of track and primary-vertex reconstruction with the CMS tracker -1704545 ! Measurement of differential cross sections for the production of a pair of isolated photons in pp collisions at $\sqrt{s}$ = 7 TeV -1704963 X Searches for electroweak production of charginos, neutralinos, and sleptons decaying to leptons and W, Z, and Higgs bosons in pp collisions at 8 TeV -1704979 X Search for jet extinction in the inclusive jet-$p_T$ spectrum from proton-proton collisions at $\sqrt{s}$ = 8 TeV -1706050 . Measurement of the pp $\to$ ZZ production cross section and constraints on anomalous triple gauge couplings in four-lepton final states at $\sqrt{s}$ = 8 TeV -1706110 ! Measurement of the ratio of inclusive jet cross sections using the anti-$k_T$ algorithm with radius parameters R=0.5 and 0.7 in pp collisions at $\sqrt{s}$ = 7 TeV -1706177 . Measurement of prompt J/$\psi$ pair production in pp collisions at $\sqrt{s}$ = 7 TeV -1706263 . Measurement of jet fragmentation in PbPb and pp collisions at $\sqrt{s_{NN}}$ = 2.76 TeV -1710495 X Search for excited quarks in the $\gamma$+jet final state in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1712497 . Differential cross section measurements for the production of a W boson in association with jets in proton-proton collisions at $\sqrt{s}$ = 7 TeV -1712680 . Measurement of top quark-antiquark pair production in association with a W or Z boson in pp collisions at $\sqrt{s}$ = 8 TeV -1728107 X Observation of the diphoton decay of the Higgs boson and measurement of its properties -1742276 . Study of hadronic event-shape variables in multijet final states in pp collisions at $\sqrt{s}$ = 7 TeV -1742694 X Search for new resonances decaying via WZ to leptons in proton-proton collisions at $\sqrt{s}$=8 TeV -1743001 X Search for heavy neutrinos and W bosons with right-handed couplings in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1745684 . Measurement of the $t\bar{t}$ production cross section in pp collisions at $\sqrt{s}$ =8 TeV in dilepton final states containing one $\tau$ lepton -1747562 X Search for pair production of third-generation scalar leptoquarks and top squarks in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1748396 X Search for the associated production of the Higgs boson with a top-quark pair -1749307 X Search for physics beyond the standard model in final states with a lepton and missing transverse energy in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1749688 . Measurements of jet multiplicity and differential production cross sections of Z+jets events in proton-proton collisions at $\sqrt{s}$ =7 TeV -1749925 X Search for neutral MSSM Higgs bosons decaying to a pair of tau leptons in pp collisions -1750264 X Search for dark matter, extra dimensions, and unparticles in monojet events in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1755061 X Searches for electroweak neutralino and chargino production in channels with Higgs, Z, and W bosons in pp collisions at 8 TeV -1755169 . Long-range two-particle correlations of strange hadrons with charged particles in pPb and PbPb collisions at LHC energies -1756204 ? Search for Displaced Supersymmetry in events with an electron and a muon with large impact parameters -1757046 ? Measurement of the production cross section ratio $\sigma(\chi_{b2}(1\mathrm{P}))/ \sigma(\chi_{b1}(1\mathrm{P}))$ in pp collisions at $\sqrt{s}$ = 8 TeV -1950387 X Search for standard model production of four top quarks in the lepton + jets channel in pp collisions at $\sqrt{s}$ = 8 TeV -1952621 X Search for monotop signatures in proton-proton collisions at $\sqrt{s}$ =8 TeV -1952624 ? Measurement of the W boson helicity in events with a single reconstructed top quark in pp collisions at $\sqrt{s}$ = 8 TeV -1953626 ? Measurement of prompt $\psi(2\mathrm{S})$ to $\mathrm{J}/\psi$ yield ratios in $\mathrm{Pb}\mathrm{Pb}$ and $\mathrm{p}\mathrm{p}$ collisions at $\sqrt{s_\mathrm{NN}} = 2.76~\mathrm{TeV}$ -1954296 X Searches for heavy Higgs bosons in two-Higgs-doublet models and for $t→ch$ decay using multilepton and diphoton final states in $pp$ collisions at 8 TeV -1954737 . Measurement of electroweak production of two jets in association with a Z boson in proton-proton collisions at $\sqrt{s}=8~\mathrm{TeV}$ -1955546 X Identification techniques for highly boosted W bosons that decay into hadrons -1955926 ? Study of Z production in PbPb and pp collisions at $\sqrt{s_{NN}}$ = 2.76 TeV in the dimuon and dielectron decay channels -1956712 X Measurement of the ratio $\mathcal{B}( \mathrm{B_c^+} \rightarrow \mathrm{J}/\psi\, \pi^+ \pi^+ \pi^-)/\mathcal{B}( \mathrm{B_c^+} \rightarrow \mathrm{J}/\psi\, \pi^+)$ and the production cross sections times branching fractions of $\mathrm{ B_c^+} \rightarrow \mathrm{J}/\psi\, \pi^+$ and $\mathrm{ B^+} \rightarrow \mathrm{J}/\psi\, \mathrm{K}^+$ in pp collisions at $\sqrt{s}$ = 7 TeV -1957133 X Study of vector boson scattering and search for new physics in events with two same-sign leptons and two jets -1957177 X Search for a standard model-like Higgs boson in the $\mu^+\mu^-$ and $\mathrm{e^+e^-}$ decay channels at the LHC -1957365 X Constraints on parton distribution functions and extraction of the strong coupling constant from the inclusive jet cross section in pp collisions at $\sqrt{s}$ = 7 TeV -1966201 X Search for new phenomena in monophoton final states in proton-proton collisions at $\sqrt{s}$=8 TeV -1966665 X Performance of the CMS missing transverse momentum reconstruction in pp data at $\sqrt{s}$ = 8 TeV -1968531 . Search for quark contact interactions and extra spatial dimensions using dijet angular distributions in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1969386 X Constraints on the spin-parity and anomalous $\mathrm{HVV}$ couplings of the Higgs boson in proton collisions at 7 and 8 TeV -1970675 X Observation of the rare $B^0_s\to\mu^+\mu^-$ decay from the combined analysis of CMS and LHCb data -1971142 . Measurement of the cross section ratio $\sigma_\mathrm{t \bar{t} b \bar{b}} / \sigma_\mathrm{t \bar{t} jj }$ in pp collisions at $\sqrt{s}$ = 8 TeV -1971247 ? Search for disappearing tracks in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1971439 ? Search for long-lived neutral particles decaying to quark-antiquark pairs in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1971992 ? Search for long-lived particles that decay into final states containing two electrons or two muons in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1972063 ? Search for stealth supersymmetry in events with jets, either photons or leptons, and low missing transverse momentum in pp collisions at 8 TeV -1973604 ! Measurements of differential and double-differential Drell-Yan cross sections in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1974165 ! Measurement of the inclusive 3-jet production differential cross section in proton-proton collisions at 7 TeV and determination of the strong coupling constant in the TeV range -1976453 ? Searches for supersymmetry based on events with b jets and four W bosons in pp collisions at 8 TeV -1977929 ? Search for physics beyond the standard model in dilepton mass spectra in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1978685 ? Search for pair-produced resonances decaying to jet pairs in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1979247 X Precise determination of the mass of the Higgs boson and tests of compatibility of its couplings with the standard model predictions using proton collisions at 7 and 8 TeV -1981756 ? Search for resonances and quantum black holes using dijet mass spectra in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1982650 ? Search for heavy Majorana neutrinos in $\mu^\pm \mu^\pm$+jets events in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1982653 ? Search for decays of stopped long-lived particles produced in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1982875 X Measurement of the ratio $\mathcal{B}( \mathrm{B}^0_{s} \to \mathrm{J}/\psi\, \mathrm{f}_0(980))/\mathcal{B}(\mathrm{B}^0_{s} \to \mathrm{J}/\psi\, \phi(1020))$ in pp collisions at $\sqrt{s}$ = 7 TeV -1984068 ? Measurements of the $\Upsilon(1\mathrm{S})$, $\Upsilon(2\mathrm{S})$, and $\Upsilon(3\mathrm{S})$ differential cross sections in pp collisions at $\sqrt{s}$ = 7 TeV -1984165 ? Search for supersymmetry using razor variables in events with b-tagged jets in pp collisions at $\sqrt{s}$ = 8 TeV -1987629 X Search for a standard model Higgs boson produced in association with a top-quark pair and decaying to bottom quarks using a matrix element method -1987723 X Constraints on the pMSSM, AMSB model and on other models from the search for long-lived charged particles in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1988091 X Performance of electron reconstruction and selection with the CMS detector in proton-proton collisions at $\sqrt{s}$ = 8 TeV -1988093 X Performance of photon reconstruction and identification with the CMS detector in proton-proton collisions at $\sqrt{s}$ =8 TeV -1989748 ? Measurement of $\mathrm{J}/\psi$ and $\psi(2S)$ prompt double-differential cross sections in pp collisions at $\sqrt{s}$ = 7 TeV -1989788 X Searches for supersymmetry using the $M_\mathrm{T2}$ variable in hadronic events produced in pp collisions at 8 TeV -1992634 . Distributions of topological observables in inclusive three- and four-jet events in pp collisions at $\sqrt{s}$ = 7 TeV -1992697 X Search for narrow high-mass resonances in proton-proton collisions at $\sqrt{s}$ = 8 TeV decaying to Z and Higgs bosons -1992910 X Evidence for collective multi-particle correlations in pPb collisions -1992911 ? Nuclear effects on the transverse momentum spectra of charged particles in pPb collisions at $\sqrt{s_{\mathrm{NN}}}$ = 5.02 TeV -1993234 ? Measurement of the Z$\gamma$ production cross section in pp collisions at 8 TeV and search for anomalous triple gauge boson couplings -1993681 ? Search for physics beyond the standard model in events with two leptons, jets, and missing transverse momentum in pp collisions at $\sqrt{s}$ = 8 TeV -1994783 ? Search for lepton-flavour-violating decays of the Higgs boson -1995043 . Study of final-state radiation in decays of Z bosons produced in pp collisions at 7 TeV -1997811 . Evidence for transverse-momentum- and pseudorapidity-dependent event-plane fluctuations in PbPb and p Pb collisions -1999279 X Search for vector-like T quarks decaying to top quarks and Higgs bosons in the all-hadronic channel using jet substructure -2001626 X Search for resonant pair production of Higgs bosons decaying to two bottom quark-antiquark pairs in proton-proton collisions at 8 TeV -2002326 X Measurements of the ZZ production cross sections in the $2\ell2\nu$ channel in proton-proton collisions at $\sqrt{s}$ = 7 and 8 TeV and combined constraints on triple gauge couplings -2002490 ? Study of W boson production in pPb collisions at $\sqrt{s_{\mathrm{NN}}}$ =5.02 TeV -2004846 ? Searches for third-generation squark production in fully hadronic final states in proton-proton collisions at $\sqrt{s}$ = 8 TeV -2005230 . Measurement of diffractive dissociation cross sections in pp collisions at $\sqrt{s}$ =7 TeV -2005308 ? Search for third-generation scalar leptoquarks in the t$\tau$ channel in proton-proton collisions at $\sqrt{s}$ = 8 TeV -2006717 X Search for a Higgs boson in the mass range from 145 to 1000 GeV decaying to a pair of W or Z bosons -2008743 ? Search for the production of dark matter in association with top-quark pairs in the single-lepton final state in proton-proton collisions at $\sqrt{s}$ = 8 TeV -2008779 ! Measurement of the Z boson differential cross section in transverse momentum and rapidity in proton-proton collisions at 8 TeV -2008784 . Angular coefficients of Z bosons produced in pp collisions at $\sqrt{s}$ = 8 TeV and decaying to $\mu^{+}\mu^{-}$ as a function of transverse momentum and rapidity -2010469 X Search for a pseudoscalar boson decaying into a Z boson and the 125 GeV Higgs boson in $\mathrm{\ell^+ \ell^- b \bar{b}}$ final states -2016641 . Measurement of the differential cross section for top quark pair production in pp collisions at $\sqrt{s} =$ 8 TeV -2018180 ? Comparison of the Z$/\gamma^{*}$+jets to $\gamma$+jets cross sections in pp collisions at $\sqrt{s} =$ 8 TeV -2019870 X Search for neutral color-octet weak-triplet scalar particles in proton-proton collisions at $\sqrt{s}$ = 8 TeV -2020603 X A search for pair production of new light bosons decaying into muons -2021104 X Search for the standard model Higgs boson produced through vector boson fusion and decaying to $\mathrm{b\bar{b}}$ -2021722 X Search for a massive resonance decaying into a Higgs boson and a W or Z boson in hadronic final states in proton-proton collisions at $\sqrt{s}$ = 8 TeV -2022620 X Search for diphoton resonances in the mass range from 150 to 850 GeV in pp collisions at $\sqrt{s}$ = 8 TeV -2023105 X Search for resonant $\mathrm{t\bar{t}}$ production in proton-proton collisions at $\sqrt{s}$ = 8 TeV -2029348 X Search for neutral MSSM Higgs bosons decaying into a pair of bottom quarks -2030183 . Production of leading charged particles and leading charged-particle jets at small transverse momenta in pp collisions at $\sqrt{s}$ = 8 TeV -2030279 X Search for exotic decays of a Higgs boson into undetectable particles and one or more photons -2033174 ? Search for supersymmetry with photons in pp collisions at $\sqrt{s}$ = 8 TeV -2033215 ? Search for a Higgs boson decaying into $\gamma^*\gamma\to\ell\ell\gamma$ with low dilepton mass in pp collisions at $\sqrt{s} =$ 8 TeV -2033253 ! Inclusive and differential measurements of the $\mathrm{ t \bar{t} }$ charge asymmetry in pp collisions at $\sqrt{s} =$ 8 TeV -2033478 ? Measurement of the $W^+W^-$ cross section in pp collisions at $\sqrt{s} =$ 8 TeV and limits on anomalous gauge couplings -2036310 . Pseudorapidity distribution of charged hadrons in proton-proton collisions at $\sqrt{s} =$ 13 TeV -2037207 X Limits on the Higgs boson lifetime and width from its decay to four charged leptons -2037709 ? Search for pair-produced vector-like B quarks in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2037726 . Measurement of the underlying event activity using charged-particle jets in proton-proton collisions at $\sqrt{s}=$ 2.76 TeV -2038159 X Measurement of the CP-violating weak phase $\mathrm{ \phi_s }$ and the decay width difference $ \Delta \Gamma_{ \mathrm{s} }$ using the $ \mathrm{B^0_s} \to \mathrm{J} / \psi \phi(1020) $ decay channel in pp collisions at $\sqrt{s} =$ 8 TeV -2038750 X Angular analysis of the decay $ \mathrm{ B^0 \to K^{*0} \mu^{+} \mu^{-} }$ from pp collisions at $\sqrt{s}= $ 8 TeV -2040683 ? Search for supersymmetry in events with a photon, a lepton, and missing transverse momentum in pp collisions at $\sqrt{s} =$ 8 TeV -2040915 ? Search for neutral MSSM Higgs bosons decaying to $\mu^{+} \mu^{-}$ in pp collisions at $ \sqrt{s} =$ 7 and 8 TeV -2045138 . Measurement of the charge asymmetry in top quark pair production in pp collisions at $\sqrt{s}$ = 8 TeV using a template method -2045375 ? Search for W' decaying to tau lepton and neutrino in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2047397 ? Study of B meson production in pPb collisions at $\sqrt{s_{ \rm{NN}}} =$ 5.02 TeV using exclusive hadronic decays -2047828 ! Measurement of differential cross sections for Higgs boson production in the diphoton decay channel in pp collisions at $\sqrt{s}= $ 8 TeV -2047865 ? Search for supersymmetry in the vector-boson fusion topology in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2048090 ? Search for a charged Higgs boson in pp collisions at $\sqrt{s} =$ 8 TeV -2052014 ? Search for pair production of first and second generation leptoquarks in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2052016 ? Search for single production of scalar leptoquarks in proton-proton collisions at $ \sqrt{s} =$ 8 TeV -2052029 . Measurement of the inelastic cross section in proton-lead collisions at $\sqrt{s_{_\mathrm{NN}}}=$ 5.02 TeV -2052828 X Measurement of the top quark mass using proton-proton data at $\sqrt{s} =$ 7 and 8 TeV -2052835 ? Search for vector-like charge 2/3 T quarks in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2053798 ? Search for W' $\to$ tb in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2053952 ? Measurement of the $ \mathrm{ t \bar{t} } $ production cross section in the all-jets final state in pp collisions at $\sqrt{s} =$ 8 TeV -2055294 X Search for the production of an excited bottom quark decaying to tW in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2055495 X Search for the associated production of a Higgs boson with a single top quark in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2056247 . Measurement of transverse momentum relative to dijet systems in PbPb and pp collisions at $\sqrt{s_{\mathrm{NN}}} = $ 2.76 TeV -2057196 X Observation of top quark pairs produced in association with a vector boson in pp collisions at $\sqrt{s} =$ 8 TeV -2057238 X Searches for a heavy scalar boson $ \mathrm{H} $ decaying to a pair of 125 GeV Higgs bosons $ \mathrm{ hh } $ or for a heavy pseudoscalar boson $ \mathrm{A} $ decaying to $ \mathrm{Zh} $, in the final states with $\mathrm{h} \to \tau \tau$ -2058474 ! Measurement of long-range near-side two-particle angular correlations in pp collisions at $\sqrt{s} =$ 13 TeV -2058475 . Measurement of $\mathrm{ t \bar{t} } $ production with additional jet activity, including b quark jets, in the dilepton decay channel using pp collisions at $\sqrt{s} =$ 8 TeV -2058921 . Transverse momentum spectra of inclusive b jets in pPb collisions at $\sqrt{ s_{\mathrm{NN}} } =$ 5.02 TeV -2059396 X Search for a light charged Higgs boson decaying to $ \mathrm{ c \bar{s} } $ in pp collisions at $ \sqrt{s} =$ 8 TeV -2060392 ? Measurement of the top quark pair production cross section in proton-proton collisions at $\sqrt{s} =$ 13 TeV -2061557 X Search for a very light NMSSM Higgs boson produced in decays of the 125 GeV scalar boson and decaying into $\tau$ leptons in pp collisions at $\sqrt{s} =$ 8 TeV -2062435 X Reconstruction and identification of $\tau$ lepton decays to hadrons and $\nu_\tau$ at CMS -2064699 ? Search for excited leptons in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2065201 . Measurement of top quark polarisation in $t$-channel single top quark production -2066995 X Search for a low-mass pseudoscalar Higgs boson produced in association with a $\mathrm{ b \bar{b} }$ pair in pp collisions at $\sqrt{s} =$ 8 TeV -2069169 X Search for anomalous single top quark production in association with a photon in pp collisions at $\sqrt{s}=$ 8 TeV -2104006 ? Measurement of spin correlations in $ \mathrm{t \overline{t} } $ production using the matrix element method in the muon+jets final state in pp collisions at $\sqrt{s} =$ 8 TeV -2109708 ? Search for dark matter and unparticles produced in association with a Z boson in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2110213 X Event generator tunes obtained from underlying event and multiparton scattering measurements -2110669 ? Search for narrow resonances decaying to dijets in proton-proton collisions at $\sqrt{s}= $ 13 TeV -2117066 ! Measurement of the inclusive jet cross section in pp collisions at $ \sqrt{s} = $ 2.76 TeV -2117087 . Study of Z boson production in pPb collisions at $\sqrt{{s_{NN}}}= $ 5.02 TeV -2117955 ? Search for supersymmetry in events with soft leptons, low jet multiplicity, and missing transverse energy in proton-proton collisions at $\sqrt{s}= $ 8 TeV -2118088 ! Measurement of differential and integrated fiducial cross sections for Higgs boson production in the four-lepton decay channel in pp collisions at $\sqrt{s} =$ 7 and 8 TeV -2118696 . Correlations between jets and charged particles in PbPb and pp collisions at $\sqrt{s_{\mathrm{NN}}} =$ 2.76 TeV -2119396 . Measurements of $\mathrm{ t \bar{t} }$ spin correlations and top quark polarization using dilepton final states in pp collisions at $\sqrt{s}=$ 8 TeV -2119961 . Measurement of inclusive jet production and nuclear modifications in pPb collisions at $\sqrt{ s_{ \mathrm{NN} } }=$ 5.02 TeV -2125470 ? Forward-backward asymmetry of Drell-Yan lepton pairs in pp collisions at $\sqrt{s} =$ 8 TeV -2126639 ! Azimuthal decorrelation of jets widely separated in rapidity in pp collisions at $\sqrt{s} =$ 7 TeV -2126736 ? Search for massive WH resonances decaying into the $\ell \nu\mathrm{ b \bar{b} }$ final state at $\sqrt{s}= $ 8 TeV -2130985 ? Search for supersymmetry in pp collisions at $\sqrt{s}$ = 8 TeV in final states with boosted W bosons and b jets using razor variables -2130989 ? Search for direct pair production of scalar top quarks in the single- and dilepton channels in proton-proton collisions at $\sqrt{s}=$ 8 TeV -2131656 X Combined search for anomalous pseudoscalar HVV couplings in VH production and H $\rightarrow$ VV decay -2132112 ? Search for R-parity violating decays of a top squark in proton-proton collisions at $\sqrt{s}$ = 8 TeV -2132113 ! Measurement of dijet azimuthal decorrelation in pp collisions at $\sqrt{s}$ = 8 TeV -2133129 ? Search for supersymmetry in the multijet and missing transverse momentum final state in pp collisions at 13 TeV -2133803 ? Measurement of the $ \mathrm{ Z } \gamma \rightarrow \nu \bar{\nu} \gamma$ production cross section in pp collisions at $\sqrt{s}=$ 8 TeV and limits on anomalous $ \mathrm{ ZZ } \gamma$ and $ \mathrm{Z} \gamma \gamma$ trilinear gauge boson couplings -2134960 ! Search for supersymmetry in electroweak production with photons and large missing transverse energy in pp collisions at $\sqrt{s} = $ 8 TeV -2134962 ? Search for heavy resonances decaying to two Higgs bosons in final states containing four b quarks -2135205 ? Measurements of the $\mathrm{ t \bar{t} }$ production cross section in lepton+jets final states in pp collisions at 8 TeV and ratio of 8 to 7 TeV cross sections -2135885 ? Search for direct pair production of supersymmetric top quarks decaying to all-hadronic final states in pp collisions at $\sqrt{s} =$ 8 TeV -2136910 ! Measurement of the differential cross section and charge asymmetry for inclusive $\mathrm{ pp \to W^{\pm}+X }$ production at $\sqrt{s} =$ 8 TeV -2137227 X Search for heavy Majorana neutrinos in $\mathrm{ e^\pm e^\pm }$+ jets and $\mathrm{ e^\pm \mu^\pm }$+ jets events in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2137231 ? Measurement of the $\mathrm{ t \bar{t} }$ production cross section in the $\mathrm{ e \mu }$ channel in proton-proton collisions at $\sqrt{s} =$ 7 and 8 TeV -2137611 X Search for $s$ channel single top quark production in pp collisions at $\sqrt{s} =$ 7 and 8 TeV -2138016 . $\Upsilon(\mathrm{nS})$ polarizations versus particle multiplicity in pp collisions at $\sqrt{s} =$ 7 TeV -2138019 ? Search for neutral resonances decaying into a Z boson and a pair of b jets or $\tau$ leptons -2138962 ? Search for new physics with the $M_{\mathrm{T2}}$ variable in all-jets final states produced in pp collisions at $\sqrt{s} =$ 13 TeV -2140299 . Measurements of $ \mathrm{ t \bar{t} } $ charge asymmetry using dilepton final states in pp collisions at $\sqrt{s}=$ 8 TeV -2140642 X Measurement of the top quark mass using charged particles in $pp$ in collisions at $\sqrt{s}= $ 8 TeV -2140996 ? Search for two Higgs bosons in final states containing two photons and two bottom quarks in proton-proton collisions at 8 TeV -2143312 ? Search for dark matter particles in proton-proton collisions at $\sqrt{s} =$ 8 TeV using the razor variables -2146658 X Evidence for exclusive $\gamma\gamma \to \mathrm{ W }^+ \mathrm{ W }^-$ production and constraints on anomalous quartic gauge couplings in pp collisions at $\sqrt{s}=$ 7 and 8 TeV -2146673 ? Search for lepton flavour violating decays of heavy resonances and quantum black holes to an $\mathrm{ e }\mu$ pair in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2147354 . Pseudorapidity dependence of long-range two-particle correlations in pPb collisions at $\sqrt{s_{\mathrm{NN}}}=$ 5.02 TeV -2149620 . Measurement of the integrated and differential $\mathrm{t \bar{t}}$ production cross sections for high-$p_{\mathrm{T}}$ top quarks in pp collisions at $ \sqrt{s} = $ 8 TeV -2149625 ? Search for narrow resonances in dijet final states at $\sqrt{s}= $ 8 TeV with the novel CMS technique of data scouting -2151097 X Search for Higgs boson off-shell production in proton-proton collisions at 7 and 8 TeV and derivation of constraints on its total decay width -2151851 . Search for new physics in same-sign dilepton events in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2153148 ! Measurement of the double-differential inclusive jet cross section in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2153174 ? Search for supersymmetry in pp collisions at $\sqrt s = $ 13 TeV in the single-lepton final state using the sum of masses of large-radius jets -2154628 . Multiplicity and rapidity dependence of strange hadron production in pp, pPb, and PbPb collisions at the LHC -2154908 ? Coherent $J/\psi$ photoproduction in ultra-peripheral PbPb collisions at $\sqrt {s_{NN}} =$ 2.76 TeV with the CMS experiment -2156413 . Measurement of the W boson helicity fractions in the decays of top quark pairs to lepton+jets final states produced in pp collisions at $ \sqrt{s} = $ 8 TeV -2156414 ? Search for top squark pair production in compressed-mass-spectrum scenarios in proton-proton collisions at $ \sqrt{s} = $ 8 TeV using the ${\alpha_\mathrm{T}}$ variable -2156688 ? Search for dark matter and supersymmetry with a compressed mass spectrum in the vector boson fusion topology in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2158105 . Measurement of the transverse momentum spectrum of the Higgs boson produced in pp collisions at $ \sqrt{s} = $ 8 TeV using $\mathrm{ H }\to\mathrm{ W }\mathrm{ W }$ decays -2160221 X Phenomenological MSSM interpretation of CMS searches in pp collisions at $\sqrt{s}= $ 7 and 8 TeV -2160409 ? Search for resonant production of high-mass photon pairs in proton-proton collisions at $\sqrt{s} = $ 8 and 13 TeV -2162036 ! Measurement of the transverse momentum spectra of weak vector bosons produced in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2162424 ? Evidence for collectivity in pp collisions at the LHC -2194552 ? Searches for $R$-parity-violating supersymmetry in pp collisions at $\sqrt{s}= $ 8 TeV in final states with 0-4 leptons -2196094 ? Search for new physics in final states with two opposite-sign, same-flavor leptons, jets, and missing transverse momentum in pp collisions at $\sqrt{s}= $ 13 TeV -2196286 . Measurement of the differential cross sections for top quark pair production as a function of kinematic event variables in pp collisions at $\sqrt{s}$ = 7 and 8 TeV -2198005 X Observation of the decay $ \mathrm{B}^{+} \to \psi ( 2 \mathrm{S} ) \phi ( 1020 ) \mathrm{ K }^{+} $ in pp collisions at $\sqrt{s} = $ 8 TeV -2198719 X Jet energy scale and resolution in the CMS experiment in pp collisions at 8 TeV -2198724 X Search for lepton flavour violating decays of the Higgs boson to $\mathrm{ e }\tau$ and $\mathrm{ e }\mu$ in proton-proton collisions at $\sqrt{s}= $ 8 TeV -2200356 ? Search for dark matter in proton-proton collisions at 8 TeV with missing transverse momentum and vector boson tagged jets -2201221 X Measurement of the WZ production cross section in pp collisions at $\sqrt{s} = $ 13 TeV -2201233 . Measurement of electroweak production of a W boson and two forward jets in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2202723 X Measurement of the ZZ production cross section and $\mathrm{ Z } \to {\ell^+\ell^-\ell^{\prime+}\ell^{\prime-}} $ branching fraction in pp collisions at $ \sqrt{s} = $ 13 TeV -2204905 ? Search for new phenomena in events with high jet multiplicity and low missing transverse momentum in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2207289 X Measurement of the mass of the top quark in decays with a $ \mathrm{ J } / \psi $ meson in pp collisions at 8 TeV -2210676 ! Measurement of the production cross section of a W boson in association with two b jets in pp collisions at $ \sqrt{s} = $ 8 TeV -2212909 ! Measurement of the total and differential inclusive $\mathrm{B}^{+}$ hadron cross sections in pp collisions at $\sqrt{s} = $ 13 TeV -2212926 X The CMS trigger system -2214171 ? Search for high-mass diphoton resonances in proton-proton collisions at 13 TeV and combination with 8 TeV search -2214174 . Decomposing transverse momentum balance contributions for quenched jets in PbPb collisions at $\sqrt{s_\mathrm{NN}} = $ 2.76 TeV -2215079 . Studies of inclusive four-jet production with two b-tagged jets in proton-proton collisions at 7 TeV -2216310 . Measurement and QCD analysis of double-differential inclusive jet cross-sections in pp collisions at $\sqrt{s} = $ 8 TeV and ratios to 2.76 and 7 TeV -2216315 . Measurement of inclusive jet cross sections in pp and PbPb collisions at $ \sqrt{s_{\mathrm{NN}}} = $ 2.76 TeV -2216321 ? Search for narrow resonances in dilepton mass spectra in proton-proton collisions at $\sqrt{s} = $ 13 TeV and combination with 8 TeV data -2216557 X Measurement of the WZ production cross section in pp collisions at $\sqrt{s} = $ 7 and 8 TeV and search for anomalous triple gauge couplings at $ \sqrt{s} = $ 8 TeV -2218072 ? Inclusive search for supersymmetry using razor variables in pp collisions at $ \sqrt{s} = $ 13 TeV -2219676 ? Search for long-lived charged particles in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2220481 ? Search for supersymmetry in events with one lepton and multiple jets in proton-proton collisions at $\sqrt{s}= $ 13 TeV -2220897 ? Observation of charge-dependent azimuthal correlations in pPb collisions and its implication for the search for the chiral magnetic effect -2221184 ? Cross section measurement of t-channel single top quark production in pp collisions at sqrt(s) = 13 TeV -2221185 . Suppression and azimuthal anisotropy of prompt and nonprompt $\mathrm{J}/\psi$ production in PbPb collisions at $\sqrt{s_{\mathrm{NN}}} = $ 2.76 TeV -2223514 ? Search for high-mass Z$\gamma$ resonances in $ \mathrm{ e }^{+}\mathrm{ e }^{-}\gamma $ and $ \mu^{+}\mu^{-}\gamma $ final states in proton-proton collisions at $\sqrt{s}= $ 8 and 13 TeV -2223855 X Search for anomalous Wtb couplings and flavour-changing neutral currents in $t$-channel single top quark production in pp collisions at $\sqrt{s}= $ 7 and 8 TeV -2224321 ! Measurement of differential cross sections for top quark pair production using the lepton+jets final state in proton-proton collisions at 13 TeV -2224398 . Measurements of differential cross sections for associated production of a W boson and jets in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2225240 X Search for top quark decays via Higgs-boson-mediated flavor-changing neutral currents in pp collisions at $ \sqrt{s}=8 $ TeV -2225241 ? Search for electroweak production of charginos in final states with two $\tau$ leptons in pp collisions at $ \sqrt{s} = $ 8 TeV -2225594 ? Search for $R$-parity violating supersymmetry with displaced vertices in proton-proton collisions at $\sqrt{s}= $ 8 TeV -2226819 X Observation of $\Upsilon(\mathrm{1S})$ pair production in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2227285 ? Search for heavy resonances decaying into a vector boson and a Higgs boson in final states with charged leptons, neutrinos, and b quarks -2228305 ? Searches for invisible decays of the Higgs boson in pp collisions at $\sqrt{s}= $ 7, 8, and 13 TeV -2228337 X Measurement of the mass difference between top quark and antiquark in pp collisions at $\sqrt{s} = 8$ TeV -2228997 ? A search for new phenomena in pp collisions at $ \sqrt{s} = $ 13 TeV in final states with missing transverse momentum and at least one jet using the ${\alpha_{\mathrm{T}}} $ variable -2230024 . Charged-particle nuclear modification factors in PbPb and pPb collisions at $\sqrt{s_{\mathrm{NN}}}= $ 5.02 TeV -2230651 . Relative modification of prompt $ {\psi\mathrm{(2S)}} $ and $\mathrm{J}/\psi $ yields from pp to PbPb collisions at ${\sqrt{s_{\mathrm{NN}}}} = $ 5.02 TeV -2230706 ! Suppression of $\Upsilon(1S), \Upsilon(2S)$ and $\Upsilon(3S)$ production in PbPb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV -2232269 ? Search for dijet resonances in proton-proton collisions at $\sqrt{s}=$ 13 TeV and constraints on dark matter and other models -2232270 ! Measurements of differential production cross sections for a Z boson in association with jets in pp collisions at $\sqrt{s} = $ 8 TeV -2232274 . Measurement of the $\mathrm{t \bar{t}}$ production cross section using events in the $\mathrm{e} \mu$ final state in pp collisions at $\sqrt{s} = $ 13 TeV -2233940 ! Measurements of the associated production of a Z boson and b jets in pp collisions at ${\sqrt{s}} = 8\,\text {TeV} $ -2233960 ? Search for heavy resonances decaying to tau lepton pairs in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2234120 ? Search for supersymmetry in events with photons and missing transverse energy in pp collisions at 13 TeV -2235527 X Search for CP violation in $\mathrm{ t \bar{t} }$ production and decay in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2237477 ? Search for single production of a heavy vector-like T quark decaying to a Higgs boson and a top quark with a lepton and jets in the final state -2237517 ? Search for heavy neutrinos or third-generation leptoquarks in final states with two hadronically decaying $\tau$ leptons and two jets in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2238896 ? Searches for pair production of third-generation squarks in $\sqrt{s}=$13 TeV pp collisions -2239298 ? Search for electroweak production of a vector-like quark decaying to a top quark and a Higgs boson using boosted topologies in fully hadronic final states -2239948 . Measurements of the charm jet cross section and nuclear modification factor in pPb collisions at $\sqrt{s{NN}}$ = 5.02 TeV -2239951 X Search for massive resonances decaying into WW, WZ or ZZ bosons in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2239955 ? Search for heavy gauge W' bosons in events with an energetic lepton and large missing transverse momentum at $ \sqrt{s} = $ 13 TeV -2239956 ? Measurement of electroweak-induced production of $\mathrm{ W }\gamma$ with two jets in pp collisions at $\sqrt{s} = $ 8 TeV and constraints on anomalous quartic gauge couplings -2239967 ? Search for high-mass $\mathrm{ Z }\gamma$ resonances in proton-proton collisions at $\sqrt{s}=$ 8 and 13 TeV using jet substructure techniques -2240207 ? Search for leptophobic Z' bosons decaying into four-lepton final states in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2240708 ? Search for supersymmetry in the all-hadronic final state using top quark tagging in pp collisions at $\sqrt{s}$ = 13 TeV -2240709 ? Search for light bosons in decays of the 125 GeV Higgs boson in proton-proton collisions at $ \sqrt{s} = $ 8 TeV -2240711 X Mechanical stability of the CMS strip tracker measured with a laser alignment system -2240713 ? Search for dark matter and unparticles in events with a Z boson and missing transverse momentum in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2242828 ! Measurement of the $t \bar t$ production cross section using events with one lepton and at least one jet in pp collisions at $\sqrt{s}$ = 13 TeV -2242915 ? Search for supersymmetry with multiple charged leptons in proton-proton collisions at $\sqrt{s}= $ 13 TeV -2243017 ? Search for single production of vector-like quarks decaying to a Z boson and a top or a bottom quark in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2243273 ? Search for single production of vector-like quarks decaying into a b quark and a W boson in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2243454 . Measurement of the inclusive energy spectrum in the very forward direction in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2243924 . Azimuthal anisotropy of charged particles with transverse momentum up to 100 GeV/$c$ in PbPb collisions at $\sqrt{ s_{\mathrm{NN}} } = $ 5.02 TeV -2244354 ! Study of jet quenching with Z+jet correlations in PbPb and pp collisions at $\sqrt{ s_{\mathrm{NN}} } = $ 5.02 TeV -2244396 . Search for associated production of a Z boson with a single top quark and for tZ flavour-changing interactions in pp collisions at $ \sqrt{s} = $ 8 TeV -2244431 ? Measurement of prompt and nonprompt $ \mathrm{J} / \psi $ production in pp and pPb collisions at $\sqrt{s_{\mathrm{NN}}} = $ 5.02 TeV -2245557 ? Measurement of the cross section for electroweak production of Z$\gamma$ in association with two jets and constraints on anomalous quartic gauge couplings in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2253045 X Search for standard model production of four top quarks in proton-proton collisions at $\sqrt{s}$ = 13 TeV -2254644 ? Search for dark matter produced with an energetic jet or a hadronically decaying W or Z boson at $ \sqrt{s} = $ 13 TeV -2254647 ! Measurement of double-differential cross sections for top quark pair production in pp collisions at $\sqrt{s} = $ 8 TeV and impact on parton distribution functions -2254954 X Measurement of the top quark mass using single top quark events in proton-proton collisions at $\sqrt{s}= $ 8 TeV -2255347 ? Search for third-generation scalar leptoquarks and heavy right-handed neutrinos in final states with two tau leptons and two jets in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2255523 ? Search for associated production of dark matter with a Higgs boson decaying to $ \mathrm{b}\overline{\mathrm{b}} $ or $\gamma \gamma$ at $ \sqrt{s}=13$ TeV -2256069 ! Measurement of the jet mass in highly boosted $\mathrm{ t \bar{t} }$ events from pp collisions at $\sqrt{s}=$ 8 TeV -2256070 X Search for anomalous couplings in boosted $\mathrm{ WW/WZ }\to\ell\nu\mathrm{ q \bar{q} }$ production in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2256071 ? Search for a heavy resonance decaying to a top quark and a vector-like top quark at $ \sqrt{s}=13 $ TeV -2257493 . Search for new physics with dijet angular distributions in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2257972 ? Measurements of the pp $\to W\gamma\gamma$ and pp $\to Z\gamma\gamma$ cross sections and limits on anomalous quartic gauge couplings at $ \sqrt{s}=8 $ TeV -2259455 ? Search for t t-bar resonances in highly boosted lepton+jets and fully hadronic final states in proton-proton collisions at sqrt(s) = 13 TeV -2260600 X Measurement of the top quark mass in the dileptonic $\mathrm{ t \bar{t} }$ decay channel using the mass observables $M_{\mathrm{ b }\ell}$, $M_{\mathrm{T}2}$, and $M_{\mathrm{ b }\ell\nu}$ in pp collisions at $\sqrt{s} = $ 8 TeV -2260986 ? Search for physics beyond the standard model in events with two leptons of same sign, missing transverse momentum, and jets in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $ -2261105 . Search for supersymmetry in multijet events with missing transverse momentum in proton-proton collisions at 13 TeV -2262044 ? Search for black holes in high-multiplicity final states in proton-proton collisions at $ \sqrt{s}=$13 TeV -2262829 ! Measurement of the triple-differential dijet cross section in proton-proton collisions at $\sqrt{s}=8\,\text {TeV} $ and constraints on parton distribution functions -2262834 X Search for charged Higgs bosons produced via vector boson fusion and decaying into a pair of W and Z bosons using proton-proton collisions at $\sqrt{s} = $ 13 TeV -2264381 ? Search for new phenomena with the $ \mathrm{ M_{\rm T2} } $ variable in the all-hadronic final state produced in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2264382 ? Search for supersymmetry in pp collisions at sqrt(s) = 13 TeV in the single-lepton final state using the sum of masses of large-radius jets -2264429 ? Measurement of $\mathrm{B}^{\pm}$ mesons differential production cross sections in pp and PbPb collisions at ${\sqrt{{s_{_{\mathrm{NN}}}}}} = $ 5.02 TeV -2265922 X Combination of searches for heavy resonances decaying to WW, WZ, ZZ, WH, and ZH boson pairs in proton–proton collisions at $\sqrt{s}=8$ and 13 TeV -2266363 ! Measurements of $\mathrm{ t \bar{t} }$ cross sections in association with b jets and inclusive jets and their ratio using dilepton final states in pp collisions at $\sqrt{s} = $ 13 TeV -2266573 ? Search for low mass vector resonances decaying to quark-antiquark pairs in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2266637 X Search for top quark partners with charge 5/3 in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2268212 ? Search for dark matter produced in association with heavy-flavor quark pairs in proton-proton collisions at $\sqrt{s}=13$ TeV -2268507 ? Search for pair production of vector-like T and B quarks in single-lepton final states using boosted jet substructure techniques at $\sqrt{s} = $ 13 TeV -2268672 ? Search for new physics in the monophoton final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2268946 ? Searches for W' bosons decaying to a top quark and a bottom quark in proton-proton collisions at 13 TeV -2269047 ? Search for top squark pair production in pp collisions at $ \sqrt{s} = $ 13 TeV using single lepton events -2270046 X Particle-flow reconstruction and global event description with the CMS detector -2270416 ! Measurements of jet charge with dijet events in pp collisions at $\sqrt{s}=8$ TeV -2270558 ? Suppression of Excited $\Upsilon$ States Relative to the Ground State in Pb-Pb Collisions at $\sqrt{s_\mathrm{NN}}$=5.02 TeV -2271500 ? Measurement of the semileptonic $\mathrm{ t \bar{t} }$+$\gamma$ production cross section in pp collisions at $\sqrt{s}=$ 8 TeV -2271563 . Exclusive and semi-exclusive $\pi^{+}\pi^{-}$ production in proton-proton collisions at $\sqrt{s} = $ 7 TeV -2271762 ? Search for a heavy composite Majorana neutrino in the final state with two leptons and two quarks at $\sqrt{s}=13$ TeV -2272260 X Measurements of properties of the Higgs boson decaying into the four-lepton final state in pp collisions at sqrt(s) = 13 TeV -2272346 ? Search for electroweak production of charginos and neutralinos in WH events in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2272349 . Measurement of charged pion, kaon, and proton production in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2272705 X A search for Higgs boson pair production in the $\mathrm{ b }\mathrm{ b }\tau\tau$ final state in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2272930 X Constraints on anomalous Higgs boson couplings using production and decay information in the four-lepton final state -2273283 ? Search for heavy resonances that decay into a vector boson and a Higgs boson in hadronic final states at $\sqrt{s} = 13$ $\,\text {TeV}$ -2273798 ? Search for Higgs boson pair production in events with two bottom quarks and two tau leptons in proton–proton collisions at $\sqrt s$ =13TeV -2274031 ? Search for direct production of supersymmetric partners of the top quark in the all-jets final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2274032 ? Search for natural supersymmetry in events with top quark pairs and photons in pp collisions at $\sqrt{s} =$ 8 TeV -2275059 ! Measurement of the differential cross sections for the associated production of a W boson and jets in proton-proton collisions at sqrt(s) = 13 TeV -2275103 ? Search for supersymmetry in events with at least one photon, missing transverse momentum, and large transverse event activity in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2275490 ? Search for the pair production of third-generation squarks with two-body decays to a bottom or charm quark and a neutralino in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2275491 X Search for a light pseudoscalar Higgs boson produced in association with bottom quarks in pp collisions at $ \sqrt{s}=8 $ TeV -2276465 X Observation of the Higgs boson decay to a pair of $\tau$ leptons with the CMS detector -2276782 ? Search for single production of a vector-like T quark decaying to a Z boson and a top quark in proton-proton collisions at sqrt(s) = 13 TeV -2277341 . Constraints on the chiral magnetic effect using charge-dependent azimuthal correlations in pPb and PbPb collisions at the LHC -2277617 ? Search for vector-like light-flavor quark partners in proton-proton collisions at $\sqrt{s} = $8 TeV -2278242 ? Measurement of vector boson scattering and constraints on anomalous quartic couplings from events with four leptons and two jets in proton-proton collisions at sqrt(s) = 13 TeV -2278310 . Measurement of prompt $D^0$ meson azimuthal anisotropy in PbPb collisions at $\sqrt{{s}_{NN}}$ = 5.02 TeV -2278570 ? Search for resonant and nonresonant Higgs boson pair production in the bblnulnu final state in proton-proton collisions at sqrt(s) = 13 TeV -2279969 . Nuclear modification factor of D0 mesons in PbPb collisions at sqrt(s[NN]) = 5.02 TeV -2280069 ? Search for massive resonances decaying into WW, WZ, ZZ, qW, and qZ with dijet final states at $\sqrt{s} =$ 13 TeV -2280746 . Principal-component analysis of two-particle azimuthal correlations in PbPb and pPb collisions at CMS -2280888 ! Measurement of normalized differential $\mathrm{t}\overline{\mathrm{t}}$ cross sections in the dilepton channel from pp collisions at $\sqrt{s} =$ 13 TeV -2281061 X Search for evidence of the type-III seesaw mechanism in multilepton final states in proton-proton collisions at $ \sqrt{s} = $ 13 TeV -2281436 ? Search for heavy resonances decaying to a top quark and a bottom quark in the lepton+jets final state in proton-proton collisions at 13 TeV -2281542 ! Measurement of the splitting function in pp and PbPb collisions at $\sqrt{s_{_{\mathrm{NN}}}} =$ 5.02 TeV -2282000 ? Search for supersymmetry with Higgs boson to diphoton decays using the razor variables at $\sqrt{s} = $ 13 TeV -2284215 ? Search for higgsino pair production in pp collisions at sqrt(s) = 13 TeV in final states with large missing transverse momentum and two Higgs bosons decaying via H to bb-bar -2284428 X Combination of inclusive and differential $\mathrm{t}\overline{\mathrm{t}}$ charge asymmetry measurements using ATLAS and CMS data at $\sqrt{s} =$ 7 and 8 TeV -2284431 ! Search for electroweak production of charginos and neutralinos in multilepton final states in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2284496 ? Inclusive search for a highly boosted Higgs boson decaying to a bottom quark-antiquark pair -2284582 X Observation of electroweak production of same-sign W boson pairs in the two jet and two same-sign lepton final state in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2285286 X Evidence for the Higgs boson decay to a bottom quark-antiquark pair -2285287 X Observation of top quark production in proton-nucleus collisions -2285803 ? Measurements of the $\mathrm {p}\mathrm {p}\rightarrow \mathrm{Z}\mathrm{Z}$ production cross section and the $\mathrm{Z}\rightarrow 4\ell $ branching fraction, and constraints on anomalous triple gauge couplings at $\sqrt{s} = 13\,\text {TeV} $ -2285878 ! Search for new phenomena in final states with two opposite-charge, same-flavor leptons, jets, and missing transverse momentum in pp collisions at $\sqrt{s} = $ 13 TeV -2285943 ? Observation of Correlated Azimuthal Anisotropy Fourier Harmonics in $pp$ and $p+Pb$ Collisions at the LHC -2286124 ? Search for supersymmetry in events with one lepton and multiple jets exploiting the angular correlation between the lepton and the missing transverse momentum in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2286412 ? Search for low mass vector resonances decaying into quark-antiquark pairs in proton-proton collisions at sqrt(s) = 13 TeV -2287089 ? Search for pair production of vector-like quarks in the bW$\overline{\mathrm{b}}$W channel from proton-proton collisions at $\sqrt{s} =$ 13 TeV -2287570 ! Study of dijet events with a large rapidity gap between the two leading jets in pp collisions at $\sqrt{s}$ = 7 TeV -2287571 ? Measurement of angular parameters from the decay $\mathrm{B}^0 \to \mathrm{K}^{*0} \mu^+ \mu^-$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2289202 ? Search for a massive resonance decaying to a pair of Higgs bosons in the four b quark final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2290161 ! Pseudorapidity and transverse momentum dependence of flow harmonics in pPb and PbPb collisionsDifferential flow harmonics v_n in pPb and PbPb collisions -2290167 ! Measurement of differential cross sections in the kinematic angular variable $\phi^*$ for inclusive Z boson production in pp collisions at $\sqrt{s}=$ 8 TeV -2290511 ? Search for supersymmetry in events with at least three electrons or muons, jets, and missing transverse momentum in proton-proton collisions at $ \sqrt{s}=13 $ TeV -2290522 X Measurement of b hadron lifetimes in pp collisions at $\sqrt{s} =$ 8 TeV -2290697 ! Pseudorapidity distributions of charged hadrons in proton-lead collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 and 8.16 TeV -2291020 ? Measurement of quarkonium production cross sections in pp collisions at $\sqrt{s}=$ 13 TeV -2291126 X Search for standard model production of four top quarks with same-sign and multilepton final states in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $ -2291191 ! Search for new physics in events with a leptonically decaying Z boson and a large transverse momentum imbalance in proton-proton collisions at $\sqrt{s} $ = 13 TeV -2291344 ? Search for supersymmetry in proton-proton collisions at 13 TeV using identified top quarks -2291416 ? Search for top squarks and dark matter particles in opposite-charge dilepton final states at $\sqrt{s}=$ 13 TeV -2291833 . Measurement of associated Z + charm production in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2292059 . Measurement of the cross section for top quark pair production in association with a W or Z boson in proton-proton collisions at $\sqrt {s} = $ 13 TeV -2292376 ? Measurement of the inclusive $\mathrm{t}\overline{\mathrm{t}}$ cross section in pp collisions at $\sqrt{s} =$ 5.02 TeV using final states with at least one charged lepton -2292613 . Measurement of the underlying event activity in inclusive Z boson production in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2292708 X Search for ZZ resonances in the $ 2 \ell 2 \nu $ final state in proton-proton collisions at 13 TeV -2292727 ? Search for excited quarks of light and heavy flavor in $\gamma +$ jet final states in proton–proton collisions at $\sqrt{s} =$ 13TeV -2292964 . Non-Gaussian elliptic-flow fluctuations in PbPb collisions at $\sqrt{\smash[b]{s_{_\text{NN}}}} = $ 5.02 TeV -2293644 ? SSearch for gauge-mediated supersymmetry in events with at least one photon and missing transverse momentum in pp collisions at $\sqrt{s} = $ 13 TeV -2294240 ? Search for new long-lived particles at $\sqrt{s} =$ 13 TeV -2294480 . Study of jet quenching with isolated-photon+jet correlations in PbPb and pp collisions at $\sqrt{\smash[b]{s_{_{\mathrm{NN}}}}} = $ 5.02 TeV -2294721 ? Search for pair production of excited top quarks in the lepton+jets final state -2296414 ? Constraints on the double-parton scattering cross section from same-sign W boson pair production in proton-proton collisions at $ \sqrt{s}=8 $ TeV -2296416 ? Search for the flavor-changing neutral current interactions of the top quark and the Higgs boson which decays into a pair of b quarks at $\sqrt{s}=$ 13 TeV -2296689 ? Search for new physics in final states with an energetic jet or a hadronically decaying W or Z boson and transverse momentum imbalance at $\sqrt{s} = $ 13 TeV -2296725 ? Measurement of the associated production of a single top quark and a Z boson in pp collisions at $\sqrt{s} =$ TeV -2296809 ? Search for Z$\gamma$ resonances using leptonic and hadronic final states in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2297402 . Azimuthal correlations for inclusive 2-jet, 3-jet, and 4-jet events in pp collisions at $\sqrt{s}= $ 13 TeV -2298234 X Search for the X(5568) state decaying into $\mathrm{B}^{0}_{\mathrm{s}}\pi^{\pm}$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2298594 X Identification of heavy-flavour jets with the CMS detector in pp collisions at 13 TeV -2298663 ? Search for lepton flavour violating decays of the Higgs boson to $\mu\tau$ and $\mathrm{e}\tau$ in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2298715 . Bose-Einstein correlations in $pp, p\mathrm{Pb}$, and PbPb collisions at $\sqrt{{s}_{NN}}=0.9-7$ TeV -2298959 ? Search for Physics Beyond the Standard Model in Events with High-Momentum Higgs Bosons and Missing Transverse Momentum in Proton-Proton Collisions at 13 TeV -2299052 ! Search for $R$-parity violating supersymmetry in pp collisions at $\sqrt{s} = $ 13 TeV using b jets in a final state with a single lepton, many jets, and high sum of large-radius jet masses -2299062 . Measurement of prompt and nonprompt charmonium suppression in PbPb collisions at 5.02 TeV -2299141 ? Electroweak production of two jets in association with a Z boson in proton-proton collisions at $\sqrt{s}= $ 13 TeV -2299254 ? Search for decays of stopped exotic long-lived particles produced in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2299392 . Search for new physics in events with two soft oppositely charged leptons and missing transverse momentum in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2299793 . Measurement of the $\mathrm{Z}\gamma^{*} \to \tau\tau$ cross section in pp collisions at $\sqrt{s} = $ 13 TeV and validation of $\tau$ lepton analysis techniques -2299904 ! Combined search for electroweak production of charginos and neutralinos in proton-proton collisions at $\sqrt{s} =$ 13 TeV -2300265 ! Observation of medium induced modifications of jet fragmentation in PbPb collisions using isolated-photon-tagged jets -2301957 . Search for dark matter in events with energetic, hadronically decaying top quarks and missing transverse momentum at $\sqrt{s}=$ 13 TeV -2302786 . Comparing transverse momentum balance of b jet pairs in pp and PbPb collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV -2302916 . Search for lepton-flavor violating decays of heavy resonances and quantum black holes to e$\mu$ final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2303125 . Search for single production of vector-like quarks decaying to a b quark and a Higgs boson -2303202 . Search for natural and split supersymmetry in proton-proton collisions at $\sqrt{s} =$ 13 TeV in final states with jets and missing transverse momentum -2303548 ! Measurement of the inelastic proton-proton cross section at $\sqrt{s}=$ 13 TeV -2303643 . Search for heavy neutral leptons in events with three charged leptons in proton-proton collisions at $\sqrt{s} =$ 13 TeV -2304543 ? Measurement of the $\Lambda_b$ polarization and angular parameters in $\Lambda_b\to J/\psi\, \Lambda$ decays from pp collisions at $\sqrt{s}=$ 7 and 8 TeV -2304884 . Search for narrow resonances in the b-tagged dijet mass spectrum in proton-proton collisions at $\sqrt{s} =$ 8 TeV -2305936 . Search for a heavy resonance decaying to a pair of vector bosons in the lepton plus merged jet final state at $\sqrt{s} =$ 13 TeV -2306333 . Jet properties in PbPb and pp collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV -2307701 . Search for third-generation scalar leptoquarks decaying to a top quark and a $\tau$ lepton at $\sqrt{s} = $ 13 TeV -2308045 . Search for a heavy resonance decaying into a Z boson and a vector boson in the $\nu\overline{\nu}\mathrm{q}\mathrm{\bar{q}}$ final state -2308090 . Measurements of differential cross sections of top quark pair production as a function of kinematic event variables in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2308386 . Observation of proton-tagged, central (semi)exclusive production of high-mass lepton pairs in pp collisions at 13 TeV with the CMS-TOTEM precision proton spectrometer -2308650 X Evidence for associated production of a Higgs boson with a top quark pair in final states with electrons, muons, and hadronically decaying $\tau$ leptons at $\sqrt{s} = $ 13 TeV -2309470 ! Search for high-mass resonances in dilepton final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2309503 ? Search for additional neutral MSSM Higgs bosons in the $\tau\tau$ final state in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2309712 X Search for $\mathrm{t}\overline{\mathrm{t}}$H production in the all-jet final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2309935 . Search for new physics in dijet angular distributions using proton-proton collisions at $\sqrt{s} = $ 13 TeV and constraints on dark matter and other models -2310235 ! Measurement of differential cross sections for the production of top quark pairs and of additional jets in lepton+jets events from pp collisions at $\sqrt{s} = $ 13 TeV -2310641 . Search for a new heavy resonance decaying into a Z boson and a Z or W boson in 2$\ell$2q final states at $\sqrt{s}=$ 13 TeV -2310971 . Search for a heavy right-handed W boson and a heavy neutrino in events with two same-flavor leptons and two jets at $\sqrt{s} = $ 13 TeV -2310972 ! Search for high-mass resonances in final states with a lepton and missing transverse momentum at $\sqrt{s}=$ 13 TeV -2311898 . Search for a new scalar resonance decaying to a pair of Z bosons in proton-proton collisions at $\sqrt{s} =$ 13 TeV -2312113 X Observation of $\mathrm{t\overline{t}}$H production -2312121 X Measurements of Higgs boson properties in the diphoton decay channel in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2312382 X Search for $ {\mathrm{t\bar{t}}\mathrm{H}} $ production in the $ {\mathrm{H}\to\mathrm{b\bar{b}}} $ decay channel with leptonic $ \mathrm{t\bar{t}} $ decays in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2313130 X Performance of the CMS muon detector and muon reconstruction with proton-proton collisions at $\sqrt{s}=$ 13 TeV -2313393 ! Measurement of differential cross sections for Z boson production in association with jets in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2314315 . Search for disappearing tracks as a signature of new long-lived particles in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2315189 ! Elliptic flow of charm and strange hadrons in high-multiplicity pPb collisions at $ {\sqrt {\smash [b]{s_{_{\mathrm {NN}}}}}} = $ 8.16 TeV -2316130 X Measurement of the top quark mass with lepton+jets final states using pp collisions at $\sqrt{s}=$ 13 TeV -2316388 . Measurement of prompt $ \psi (\text{2S}) $ production cross sections in proton-lead and proton-proton collisions at ${\sqrt {\smash [b]{s_{_{\mathrm {NN}}}}}} = $ 5.02 TeV -2317382 X Constraining gluon distributions in nuclei using dijets in proton-proton and proton-lead collisions at ${\sqrt {\smash [b]{s_{_{\mathrm {NN}}}}}} = $ 5.02 TeV -2317384 . Search for vector-like T and B quark pairs in final states with leptons at $\sqrt{s} = $ 13 TeV -2317389 . Search for an exotic decay of the Higgs boson to a pair of light pseudoscalars in the final state of two muons and two $\tau$ leptons in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2317415 ! Measurement of the groomed jet mass in PbPb and pp collisions at ${\sqrt {\smash [b]{s_{_{\mathrm {NN}}}}}} = $ 5.02 TeV -2318332 . Search for top squarks decaying via four-body or chargino-mediated modes in single-lepton final states in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2318378 . Search for black holes and sphalerons in high-multiplicity final states in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2318905 ? Measurement of the production cross section for single top quarks in association with W bosons in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2319759 . Measurement of nuclear modification factors of $ \Upsilon(\text{1S})$, $ \Upsilon(\text{2S})$, and $ \Upsilon(\text{3S})$ mesons in PbPb collisions at $ {\sqrt {\smash [b]{s_{_{\mathrm {NN}}}}}} = $ 5.02 TeV -2320232 . Search for an exotic decay of the Higgs boson to a pair of light pseudoscalars in the final state with two b quarks and two $\tau$ leptons in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2320235 . Constraints on models of scalar and vector leptoquarks decaying to a quark and a neutrino at $\sqrt{s} = $ 13 TeV -2320660 X Observation of the $ \chi_{\mathrm{b}1}(\text{3P}) $ and $ \chi_{\mathrm{b}2}(\text{3P}) $ and measurement of their masses -2320899 ? Search for beyond the standard model Higgs bosons decaying into a $ \mathrm{b\bar{b}} $ pair in pp collisions at $\sqrt{s} = $ 13 TeV -2621190 ? Search for Higgs boson pair production in the $\gamma\gamma\mathrm{b\bar{b}}$ final state in pp collisions at $\sqrt{s} = $ 13 TeV -2621370 ? Angular analysis of the decay ${\mathrm{B^{+}} \to \mathrm{K^{+}} \mu^{+} \mu^{-}}$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV -2621423 . Search for narrow and broad dijet resonances in proton-proton collisions at $\sqrt{s} = $ 13 TeV and constraints on dark matter mediators and other new particles -2621428 ? Measurement of the weak mixing angle using the forward-backward asymmetry of Drell-Yan events in pp collisions at 8 TeV -2621538 . Search for pair-produced resonances each decaying into at least four quarks in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2622479 ? Search for a singly produced third-generation scalar leptoquark decaying to a $\tau$ lepton and a bottom quark in proton-proton collisions at $\sqrt{s} =$ 13 TeV -2622558 . Search for resonant pair production of Higgs bosons decaying to bottom quark-antiquark pairs in proton-proton collisions at 13 TeV -2623687 ? Observation of the $\mathrm{Z} \to \psi \ell^{+} \ell^{-}$ decay in pp collisions at $\sqrt{s} = $ 13 TeV -2623974 . Search for dark matter produced in association with a Higgs boson decaying to $\gamma\gamma$ or $\tau^{+}\tau^{-}$ at $\sqrt{s} = $ 13 TeV -2624194 ? Measurements of properties of the Higgs boson decaying to a W boson pair in pp collisions at $\sqrt{s} = $ 13 TeV -2624195 . Search for supersymmetric partners of electrons and muons in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2624385 . Search for the decay of a Higgs boson in the $\ell\ell\gamma$ channel in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2627097 . Search for heavy Majorana neutrinos in same-sign dilepton channels in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2627479 ! Measurement of differential cross sections for Z boson pair production in association with jets at $\sqrt{s}= $ 8 and 13 TeV -2627556 ! Measurement of charged particle spectra in minimum-bias events from proton-proton collisions at $\sqrt{s} = $ 13 TeV -2628267 ? Measurement of differential cross sections for inclusive isolated-photon and photon+jets production in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2628769 . Search for supersymmetry in events with a $ \tau $ lepton pair and missing transverse momentum in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2629477 ! Study of the underlying event in top quark pair production in pp collisions at 13 TeV -2629479 . Search for heavy resonances decaying into a vector boson and a Higgs boson in final states with charged leptons, neutrinos and b quarks at $\sqrt{s} = $ 13 TeV -2629890 X Precision measurement of the structure of the CMS inner tracking system using nuclear interactions -2630303 ! Measurement of inclusive and differential Higgs boson production cross sections in the diphoton decay channel in proton-proton collisions at $\sqrt{s}=$ 13 TeV -2631525 ! Measurements of the differential jet cross section as a function of the jet mass in dijet events from proton-proton collisions at $\sqrt{s} = $ 13 TeV -2631546 . Search for the Higgs boson decaying to two muons in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2631721 . Search for dark matter particles produced in association with a top quark pair at $\sqrt{s} = $ 13 TeV -2632037 . Searches for pair production of charginos and top squarks in final states with two oppositely charged leptons in proton-proton collisions at $\sqrt{s} = $ 13 TeV -2632838 . Search for a W' boson decaying to a $\tau$ lepton and a neutrino in proton-proton collisions at $\sqrt{s} = $ 13 TeV +845323 . Transverse momentum and pseudorapidity distributions of charged hadrons in pp collisions at $\sqrt{s} = 0.9$ and 2.36 TeV +855299 . Transverse-momentum and pseudorapidity distributions of charged hadrons in $pp$ collisions at $\sqrt{s}=7$ TeV +855303 . First Measurement of Bose-Einstein Correlations in proton-proton Collisions at $\sqrt{s}$ =0.9 and 2.36 TeV at the LHC +856534 . Measurement of the charge ratio of atmospheric muons with the CMS detector +857644 . First Measurement of the Underlying Event Activity at the LHC with $\sqrt{s} = 0.9$ TeV +861153 X CMS Tracking Performance Results from early LHC Operation +870473 ! Observation of Long-Range Near-Side Angular Correlations in Proton-Proton Collisions at the LHC +871540 ? Search for Dijet Resonances in 7 TeV pp Collisions at CMS +873627 ? Search for Quark Compositeness with the Dijet Centrality Ratio in $pp$ Collisions at $\sqrt{s}=7$ TeV +874738 ? First Measurement of the Cross Section for Top-Quark Pair Production in Proton-Proton Collisions at $\sqrt{s}=7$ TeV +878118 . Prompt and non-prompt $J/\psi$ production in $pp$ collisions at $\sqrt{s}=7$ TeV +879277 ? Search for Stopped Gluinos in $pp$ collisions at $\sqrt{s}=7$ TeV +879315 . Charged particle multiplicities in $pp$ interactions at $\sqrt{s}=0.9$, 2.36, and 7 TeV +879403 . Measurement of the Isolated Prompt Photon Production Cross Section in $pp$ Collisions at $\sqrt{s} = 7$~TeV +881087 . Measurements of Inclusive $W$ and $Z$ Cross Sections in $pp$ Collisions at $\sqrt{s}=7$ TeV +881434 ? Search for Microscopic Black Hole Signatures at the Large Hadron Collider +881885 ? Search for Pair Production of Second-Generation Scalar Leptoquarks in $pp$ Collisions at $\sqrt{s}=7$ TeV +881886 ? Search for Pair Production of First-Generation Scalar Leptoquarks in $pp$ Collisions at $\sqrt{s}=7$ TeV +882871 . Upsilon Production Cross-Section in pp Collisions at $sqrt{s}=7$ TeV +882963 ? Search for a heavy gauge boson $W$ ' in the final state with an electron and large missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV +883318 . Measurement of the $B^+$ Production Cross Section in pp Collisions at $\sqrt{s} = 7$~TeV +883765 ? Search for Heavy Stable Charged Particles in $pp$ collisions at $\sqrt{s}=7$ TeV +883771 ? Search for Supersymmetry in pp Collisions at 7 TeV in Events with Jets and Missing Transverse Energy +884808 . Measurement of Bose-Einstein Correlations in $pp$ Collisions at $\sqrt{s}=0.9$ and 7 TeV +884811 . Inclusive b-hadron production cross section with muons in $pp$ collisions at $\sqrt{s} = 7$ TeV +885663 . Dijet Azimuthal Decorrelations in $pp$ Collisions at $\sqrt{s} = 7$~TeV +886332 . First Measurement of Hadronic Event Shapes in $pp$ Collisions at $\sqrt {s}=7$ TeV +889010 ! Observation and studies of jet quenching in PbPb collisions at nucleon-nucleon center-of-mass energy = 2.76 TeV +889175 . Measurement of Dijet Angular Distributions and Search for Quark Compositeness in pp Collisions at $sqrt{s} = 7$ TeV +889807 . Measurement of $B\bar{B}$ Angular Correlations based on Secondary Vertex Reconstruction at $\sqrt{s}=7$ TeV +890166 . Strange Particle Production in $pp$ Collisions at $\sqrt{s}=0.9$ and 7 TeV +890505 ? Search for a Heavy Bottom-like Quark in $pp$ Collisions at $\sqrt{s} = 7$ TeV +890909 ? Study of Z boson production in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +890910 ? Measurement of $W^+ W^-$ production and search for the Higgs boson in pp collisions at $\sqrt s=7$ TeV +891040 ? Search for a $W^\prime$ boson decaying to a muon and a neutrino in $pp$ collisions at $\sqrt{s} = 7$ TeV +891470 ? Search for Resonances in the Dilepton Mass Distribution in $pp$ Collisions at $\sqrt(s) = 7$ TeV +891482 ? Search for Supersymmetry in $pp$ Collisions at $\sqrt{s} = 7$ TeV in Events with Two Photons and Missing Transverse Energy +891814 ? Search for Physics Beyond the Standard Model in Opposite-Sign Dilepton Events at $\sqrt{s} = 7$ TeV +892975 . Measurement of the lepton charge asymmetry in inclusive $W$ production in pp collisions at $\sqrt{s} = 7$ TeV +893512 ? Search for Large Extra Dimensions in the Diphoton Final State at the Large Hadron Collider +895579 ? Search for Neutral MSSM Higgs Bosons Decaying to Tau Pairs in $pp$ Collisions at $\sqrt{s}=7$ TeV +895581 . Measurement of the Inclusive Z Cross Section via Decays to Tau Pairs in $pp$ Collisions at $\sqrt{s}=7$ TeV +895742 ! Measurement of the differential dijet production cross section in proton-proton collisions at $\sqrt{s}=7$ TeV +896211 . Measurement of the $B^0$ production cross section in $pp$ Collisions at $\sqrt{s}=7$ TeV +896527 ? Search for new physics with same-sign isolated dilepton events with jets and missing transverse energy at the LHC +896585 . Measurement of the Polarization of W Bosons with Large Transverse Momenta in W+Jets Events at the LHC +896764 X Charged particle transverse momentum spectra in $pp$ collisions at $\sqrt{s} = 0.9$ and 7 TeV +899324 . Long-range and short-range dihadron angular correlations in central PbPb collisions at a nucleon-nucleon center of mass energy of 2.76 TeV +899577 . Measurement of $W\gamma$ and $Z\gamma$ production in $pp$ collisions at $\sqrt{s} = 7$ TeV +900114 . Search for supersymmetry in events with a lepton, a photon, and large missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV +901277 . Indications of suppression of excited $\Upsilon$ states in PbPb collisions at $\sqrt{S_{NN}}$ = 2.76 TeV +901401 . Search for First Generation Scalar Leptoquarks in the e$\nu$jj channel in $pp$ collisions at $\sqrt{s}=$ 7 TeV +901829 . Measurement of the $t\bar{t}$ production cross section and the top quark mass in the dilepton channel in $pp$ collisions at $\sqrt{s}=7$ TeV +902309 . Measurement of the Inclusive Jet Cross Section in $pp$ Collisions at $\sqrt{s}=7$ TeV +912560 . Measurement of the ratio of the 3-jet to 2-jet cross sections in $pp$ collisions at $\sqrt{s} = 7$ TeV +912697 . Search for physics beyond the standard model using multilepton signatures in $pp$ collisions at $\sqrt{s}=$ 7 TeV +912706 . Measurement of the Top-antitop Production Cross Section in $pp$ Collisions at $\sqrt{s}=7$ TeV using the Kinematic Properties of Events with Leptons and Jets +913321 . Search for Same-Sign Top-Quark Pair Production at $\sqrt{s}=7$ TeV and Limits on Flavour Changing Neutral Currents in the Top Sector +913455 ? Search for Light Resonances Decaying into Pairs of Muons as a Signal of New Physics +913689 . Measurement of the $t$-channel single top quark production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV +913831 . Search for Supersymmetry in Events with b Jets and Missing Transverse Momentum at the LHC +914325 . Measurement of the Strange $B$ Meson Production Cross Section with J/Psi $\phi$ Decays in $pp$ Collisions at $\sqrt{s}=7$ TeV +914487 . Search for New Physics with Jets and Missing Transverse Momentum in $pp$ collisions at $\sqrt{s}=7$ TeV +914953 . Search for New Physics with a Mono-Jet and Missing Transverse Energy in $pp$ Collisions at $\sqrt{s} = 7$ TeV +915810 . Missing transverse energy performance of the CMS detector +916908 . Measurement of the Underlying Event Activity at the LHC with $\sqrt{s}= 7$ TeV and Comparison with $\sqrt{s} = 0.9$ TeV +917436 ? Inclusive search for squarks and gluinos in $pp$ collisions at $\sqrt{s}=7$ TeV +917583 . A search for excited leptons in $pp$ Collisions at $\sqrt{s}=$ 7 TeV +917588 . Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$ TeV in events with a single lepton, jets, and missing transverse momentum +918745 . Search for Three-Jet Resonances in $pp$ Collisions at $\sqrt{s}=7$ TeV +919443 . Determination of Jet Energy Calibration and Transverse Momentum Resolution in CMS +919733 . Dependence on pseudorapidity and centrality of charged hadron production in PbPb collisions at a nucleon-nucleon centre-of-mass energy of 2.76 TeV +919737 ? Measurement of the Inclusive $W$ and $Z$ Production Cross Sections in $pp$ Collisions at $\sqrt{s}=7$ TeV +919742 ? Search for Resonances in the Dijet Mass Spectrum from 7 TeV pp Collisions at CMS +921468 ? Search for B(s) and B to dimuon decays in pp collisions at 7 TeV +921788 . Measurement of the Drell-Yan Cross Section in $pp$ Collisions at $\sqrt{s}=7$ TeV +922830 ! Measurement of the Differential Cross Section for Isolated Prompt Photon Production in pp Collisions at 7 TeV +924377 . Measurement of the $t \bar{t}$ Production Cross Section in $pp$ Collisions at 7 TeV in Lepton + Jets Events Using $b$-quark Jet Identification +927049 ? Search for Supersymmetry at the LHC in Events with Jets and Missing Transverse Energy +928282 . Search for a Vector-like Quark with Charge 2/3 in $t$ + $Z$ Events from $pp$ Collisions at $\sqrt{s}=7$ TeV +929904 X Performance of tau-lepton reconstruction and identification in CMS +930318 . Forward Energy Flow, Central Charged-Particle Multiplicities, and Pseudorapidity Gaps in W and Z Boson Events from pp Collisions at $\sqrt{s}$ = 7 TeV +930319 . Measurement of energy flow at large pseudorapidities in $pp$ collisions at $\sqrt{s} = 0.9$ and 7 TeV +939559 . Measurement of the weak mixing angle with the Drell-Yan process in proton-proton collisions at the LHC +940012 X Jet Production Rates in Association with $W$ and $Z$ Bosons in $pp$ Collisions at $\sqrt{s}=7$ TeV +941555 . Measurement of the Rapidity and Transverse Momentum Distributions of $Z$ Bosons in $pp$ Collisions at $\sqrt{s}=7$ TeV +943720 . Measurement of the Production Cross Section for Pairs of Isolated Photons in $pp$ collisions at $\sqrt{s}=7$ TeV +944755 . $J/\psi$ and $\psi_{2S}$ production in $pp$ collisions at $\sqrt{s}=7$ TeV +954992 . Exclusive photon-photon production of muon pairs in proton-proton collisions at $\sqrt{s}=7$ TeV +1079910 ? Search for signatures of extra dimensions in the diphoton mass spectrum at the Large Hadron Collider +1082456 . Measurement of the charge asymmetry in top-quark pair production in proton-proton collisions at $\sqrt{s}=7$ TeV +1084729 . Measurement of isolated photon production in $pp$ and PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1084730 . Centrality dependence of dihadron correlations and azimuthal anisotropy harmonics in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1085651 ? Suppression of non-prompt $J/\psi$, prompt $J/\psi$, and Y(1S) in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1087342 . Measurement of the inclusive production cross sections for forward jets and for dijet events with one forward and one central jet in $pp$ collisions at $\sqrt{s}=7$ TeV +1088226 . Search for a Higgs boson in the decay channel $H$ to ZZ(*) to $q$ qbar $\ell^-$ l+ in $pp$ collisions at $\sqrt{s}=7$ TeV +1088230 . Search for the standard model Higgs boson decaying into two photons in $pp$ collisions at $\sqrt{s}=7$ TeV +1088231 . Combined results of searches for the standard model Higgs boson in $pp$ collisions at $\sqrt{s}=7$ TeV +1088232 . Search for the standard model Higgs boson decaying to $W^+W^−$ in the fully leptonic final state in pp collisions at $\sqrt{s}=7$ TeV +1088604 . Search for the standard model Higgs boson in the decay channel $H$ to $Z Z$ to 4 leptons in $pp$ collisions at $\sqrt{s}=7$ TeV +1088823 . Study of high-pT charged particle suppression in PbPb compared to $pp$ collisions at $\sqrt{s_{NN}}=2.76$ TeV +1089288 . Search for the standard model Higgs boson in the $H$ to $Z Z$ to $\ell \ell \tau \tau$ decay channel in $pp$ collisions at $\sqrt{s}=7$ TeV +1089334 . Search for the standard model Higgs boson in the $H$ to $Z Z$ to 2 $\ell 2 \nu$ channel in $pp$ collisions at $\sqrt{s}=7$ TeV +1089399 . Search for large extra dimensions in dimuon and dielectron events in pp collisions at $\sqrt{s} = 7$ TeV +1089661 . Search for neutral Higgs bosons decaying to tau pairs in $pp$ collisions at $\sqrt{s}=7$ TeV +1089700 . Search for the standard model Higgs boson decaying to bottom quarks in $pp$ collisions at $\sqrt{s}=7$ TeV +1089835 . Inclusive $b$-jet production in $pp$ collisions at $\sqrt{s}=7$ TeV +1090064 . Jet momentum dependence of jet quenching in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1090423 . Search for quark compositeness in dijet angular distributions from $pp$ collisions at $\sqrt{s}=7$ TeV +1091050 . Search for microscopic black holes in $pp$ collisions at $\sqrt{s}=7$ TeV +1093951 . Measurement of the cross section for production of $b b^-$ bar $X$, decaying to muons in $pp$ collisions at $\sqrt{s}=7$ TeV +1094164 . Search for $B^0_s \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$ decays +1094855 ? Search for heavy, top-like quark pair production in the dilepton final state in $pp$ collisions at $\sqrt{s} = 7$ TeV +1095503 . Measurement of the top quark pair production cross section in $pp$ collisions at $\sqrt{s} = 7$ TeV in dilepton final states containing a $\tau$ +1102908 . Ratios of dijet production cross sections as a function of the absolute difference in rapidity between jets in proton-proton collisions at $\sqrt{s}=7$ TeV +1103032 . Search for Dark Matter and Large Extra Dimensions in pp Collisions Yielding a Photon and Missing Transverse Energy +1104744 . Search for heavy bottom-like quarks in 4.9 inverse femtobarns of $pp$ collisions at $\sqrt{s}=7$ TeV +1107658 . Measurement of the underlying event in the Drell-Yan process in proton-proton collisions at $\sqrt{s}=7$ TeV +1107659 . Measurement of the elliptic anisotropy of charged particles produced in PbPb collisions at $\sqrt{s}_{NN}$=2.76 TeV +1107730 . Measurement of the Z/$\gamma$*+b-jet cross section in pp collisions at $\sqrt{s}$ = 7 TeV +1107735 . Azimuthal anisotropy of charged particles at high transverse momenta in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1108144 . Search for Anomalous $t\bar{t}$ Production in the Highly-Boosted All-Hadronic Final State +1110691 . Measurement of the mass difference between top and antitop quarks +1111014 . Shape, Transverse Size, and Charged Hadron Multiplicity of Jets in pp Collisions at 7 TeV +1111141 . Search for physics beyond the standard model in events with a $Z$ boson, jets, and missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV +1111995 . Search for leptonic decays of $W$ ' bosons in $pp$ collisions at $\sqrt{s}=7$ TeV +1112169 . Search for anomalous production of multilepton events in $pp$ collisions at $\sqrt{s}=7$ TeV +1112562 . Observation of a new Xi(b) baryon +1112986 . Studies of jet quenching using isolated-photon+jet correlations in PbPb and $pp$ collisions at $\sqrt{s_{NN}}=2.76$ TeV +1113310 . Search for heavy long-lived charged particles in $pp$ collisions at $\sqrt{s}=7$ TeV +1113442 . Measurement of the $\Lambda_b$ cross section and the $_{\bar{\Lambda}_b}$ to $\Lambda_b$ ratio with $J/\Psi \Lambda$ decays in $pp$ collisions at $\sqrt{s}=7$ TeV +1114315 . Measurement of the pseudorapidity and centrality dependence of the transverse energy density in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1115185 . Search for new physics in events with same-sign dileptons and $b$-tagged jets in $pp$ collisions at $\sqrt{s}=7$ TeV +1116149 . Search for a light charged Higgs boson in top quark decays in $pp$ collisions at $\sqrt{s}=7$ TeV +1116250 . Measurement of jet fragmentation into charged particles in $pp$ and PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1116412 . Study of $W$ boson production in PbPb and $pp$ collisions at $\sqrt{s_{NN}}=2.76$ TeV +1116526 . Search for new physics with same-sign isolated dilepton events with jets and missing transverse energy +1117012 . Search for a $W^\prime$ or Techni-$\rho$ Decaying into $WZ$ in $pp$ Collisions at $\sqrt{s}=7$ TeV +1117702 . Search for high-mass resonances decaying into τ -lepton pairs in pp collisions at $\sqrt{s}=7$ TeV +1117706 . Search for narrow resonances in dilepton mass spectra in $pp$ collisions at $\sqrt{s}=7$ TeV +1118047 . Measurement of the electron charge asymmetry in inclusive $W$ production in $pp$ collisions at $\sqrt{s}=7$ TeV +1118577 . Search for charge-asymmetric production of W$′$ bosons in $t\bar{t} +$ jet events from pp collisions at $\sqrt{s} =$ 7 TeV +1118578 . Search for new physics in events with opposite-sign leptons, jets, and missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV +1118729 . Performance of CMS muon reconstruction in $pp$ collision events at $\sqrt{s}=7$ TeV +1119567 . Search for dark matter and large extra dimensions in monojet events in $pp$ collisions at $\sqrt{s}=7$ TeV +1120142 . Search for a light pseudoscalar Higgs boson in the dimuon decay channel in $pp$ collisions at $\sqrt{s}=7$ TeV +1120732 ! Inclusive and differential measurements of the $t \bar{t}$ charge asymmetry in proton-proton collisions at $\sqrt{s} =$ 7 TeV +1120733 ? Search for stopped long-lived particles produced in $pp$ collisions at $\sqrt{s}=7$ TeV +1120997 . Search for new physics with long-lived particles decaying to photons and missing energy in $pp$ collisions at $\sqrt{s}=7$ TeV +1121375 . Search for a fermiophobic Higgs boson in $pp$ collisions at $\sqrt{s}=7$ TeV +1121700 . Search for supersymmetry in hadronic final states using MT2 in $pp$ collisions at $\sqrt{s} = 7$ TeV +1121703 . Search for new physics in the multijet and missing transverse momentum final state in proton-proton collisions at $\sqrt{s} = 7$ TeV +1121876 . Measurement of the underlying event activity in $pp$ collisions at $\sqrt{s} = 0.9$ and 7 TeV with the novel jet-area/median approach +1122035 . A search for a doubly-charged Higgs boson in $pp$ collisions at $\sqrt{s}=7$ TeV +1122847 . Forward-backward asymmetry of Drell-Yan lepton pairs in $pp$ collisions at $\sqrt{s} = 7$ TeV +1123117 . Study of the inclusive production of charged pions, kaons, and protons in $pp$ collisions at $\sqrt{s}=0.9$, 2.76, and 7 TeV +1123507 . Search for pair production of first- and second-generation scalar leptoquarks in $pp$ collisions at $\sqrt{s}= 7$ TeV +1123803 . Search for heavy Majorana neutrinos in $\mu^{\pm}\mu^{\pm} +$ jets and $e^{\pm}e^{\pm} +$ jets events in pp collisions at $\sqrt{s} =$ 7 TeV +1124338 X Observation of a new boson at a mass of 125 GeV with the CMS experiment at the LHC +1125962 . Search for a $W$ ' boson decaying to a bottom quark and a top quark in $pp$ collisions at $\sqrt{s}=7$ TeV +1125963 . Search for flavor changing neutral currents in top quark decays in pp collisions at 7 TeV +1127329 . Measurement of the azimuthal anisotropy of neutral pions in PbPb collisions at $\sqrt{s_{NN}}=2.76$ TeV +1127335 . Measurement of the $t\bar{t}$ production cross section in the dilepton channel in $pp$ collisions at $\sqrt{s}=7$ TeV +1127501 . Observation of sequential Upsilon suppression in PbPb collisions +1127510 . Search for three-jet resonances in $pp$ collisions at $\sqrt{s}=7$ TeV +1128019 . Study of the dijet mass spectrum in $pp \to W +$ jets events at $\sqrt{s}=7$ TeV +1181767 . Search for supersymmetry in events with b-quark jets and missing transverse energy in pp collisions at 7 TeV +1184341 X Search for pair produced fourth-generation up-type quarks in $pp$ collisions at $\sqrt{s}=7$ TeV with a lepton in the final state +1184487 . Combined search for the quarks of a sequential fourth generation +1184938 . Search for exclusive or semi-exclusive photon pair production and observation of exclusive and semi-exclusive electron pair production in $pp$ collisions at $\sqrt{s}=7$ TeV +1184941 . Observation of a diffractive contribution to dijet production in proton-proton collisions at $\sqrt{s}=7$ TeV +1185101 . Measurement of the top-quark mass in $t\bar{t}$ events with lepton+jets final states in $pp$ collisions at $\sqrt{s}=7$ TeV +1185104 . Measurement of the top-quark mass in $t\bar{t}$ events with dilepton final states in $pp$ collisions at $\sqrt{s}=7$ TeV +1185414 . Measurement of the $Y(1S), Y(2S)$ and $Y(3S)$ polarizations in $pp$ collisions at $\sqrt{s}=7$ TeV +1185781 . Evidence for associated production of a single top quark and W boson in $pp$ collisions at $\sqrt{s}$ = 7 TeV +1186381 . Search for a narrow spin-2 resonance decaying to a pair of Z vector bosons in the semileptonic final state +1186385 . Search for the standard model Higgs boson produced in association with $W$ and $Z$ bosons in $pp$ collisions at $\sqrt{s}=7$ TeV +1186730 . Search for resonant $t\bar{t}$ production in lepton+jets events in $pp$ collisions at $\sqrt{s}=7$ TeV +1186734 . Measurement of the single-top-quark $t$-channel cross section in $pp$ collisions at $\sqrt{s}=7$ TeV +1188683 . Search for electroweak production of charginos and neutralinos using leptonic final states in $pp$ collisions at $\sqrt{s}=7$ TeV +1189049 . Search for anomalous production of highly boosted $Z$ bosons decaying to $\mu^+ \mu^-$ in proton-proton collisions at $\sqrt{s}=7$ TeV +1189050 . Measurement of the relative prompt production rate of chi(c2) and chi(c1) in $pp$ collisions at $\sqrt{s}=7$ TeV +1189663 . Search for heavy lepton partners of neutrinos in proton-proton collisions in the context of the type III seesaw mechanism +1189815 X Search for supersymmetry in events with photons and low missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV +1189819 X Search for fractionally charged particles in $pp$ collisions at $\sqrt{s}=7$ TeV +1189823 X Search for narrow resonances and quantum black holes in inclusive and $b$-tagged dijet mass spectra from $pp$ collisions at $\sqrt{s}=7$ TeV +1189986 . Search for heavy neutrinos and W[R] bosons with right-handed couplings in a left-right symmetric model in pp collisions at sqrt(s) = 7 TeV +1189987 . Search for excited leptons in $pp$ collisions at $\sqrt{s}=7$ TeV +1190671 . Observation of Z decays to four leptons with the CMS detector at the LHC +1191899 . Observation of long-range near-side angular correlations in proton-lead collisions at the LHC +1192033 . Search for third-generation leptoquarks and scalar bottom quarks in $pp$ collisions at $\sqrt{s}=7$ TeV +1192034 . Search for pair production of third-generation leptoquarks and top squarks in $pp$ collisions at $\sqrt{s}=7$ TeV +1193338 . Measurement of the inelastic proton-proton cross section at $\sqrt{s}=7$ TeV +1193934 . Search for heavy quarks decaying into a top quark and a $W$ or $Z$ boson using lepton + jets events in $pp$ collisions at $\sqrt{s}$ = 7 TeV +1193935 . Measurement of the sum of $W W$ and $WZ$ production with $W+$dijet events in $pp$ collisions at $\sqrt{s}=7$ TeV +1193937 . Search for a non-standard-model Higgs boson decaying to a pair of new light bosons in four-muon final states +1194120 . Search for supersymmetry in final states with missing transverse energy and 0, 1, 2, or at least 3 b-quark jets in 7 TeV pp collisions using the variable alphaT +1201946 ! Measurement of differential top-quark pair production cross sections in $pp$ colisions at $\sqrt{s}=7$ TeV +1202275 X Search in leptonic channels for heavy resonances decaying to long-lived neutral particles +1202674 X Search for supersymmetry in final states with a single lepton, $b$-quark jets, and missing transverse energy in proton-proton collisions at $\sqrt{s}=7$ TeV +1202680 X Search for $Z$ ' resonances decaying to $t\bar{t}$ in dilepton+jets final states in $pp$ collisions at $\sqrt{s}=7$ TeV +1203133 X Identification of b-quark jets with the CMS experiment +1203307 X Search for new physics in events with photons, jets, and missing transverse energy in $pp$ collisions at $\sqrt{s}=7$ TeV +1203454 ? Measurement of the $ZZ$ production cross section and search for anomalous couplings in 2 l2l ' final states in $pp$ collisions at $\sqrt{s}=7$ TeV +1203843 X Search for exotic resonances decaying into $WZ/ZZ$ in $pp$ collisions at $\sqrt{s}=7$ TeV +1206603 . Search for long-lived particles decaying to photons and missing energy in proton-proton collisions at $\sqrt{s}=7$ TeV +1206606 . Search for heavy resonances in the W/Z-tagged dijet mass spectrum in pp collisions at 7 TeV +1208097 X Search for contact interactions in $\mu^+\mu^-$ events in $pp$ collisions at $\sqrt{s}=7$ TeV +1208702 X Search for heavy narrow dilepton resonances in $pp$ collisions at $\sqrt{s}=7$ TeV and $\sqrt{s}=8$ TeV +1208703 X Search for new physics in events with same-sign dileptons and $b$ jets in $pp$ collisions at $\sqrt{s}=8$ TeV +1208812 X Inclusive search for supersymmetry using the razor variables in $pp$ collisions at $\sqrt{s}=7$ TeV +1208913 . Measurement of the $t\bar{t}$ production cross section in $pp$ collisions at $\sqrt{s}=7$ TeV with lepton + jets final states +1208923 . Measurements of differential jet cross sections in proton-proton collisions at $\sqrt{s}=7$ TeV with the CMS detector +1208931 X Study of the Mass and Spin-Parity of the Higgs Boson Candidate Via Its Decays to Z Boson Pairs +1208988 X Search for supersymmetry in $pp$ collisions at $\sqrt{s}=7$ TeV in events with a single lepton, jets, and missing transverse momentum +1209556 X Search for supersymmetry in events with opposite-sign dileptons and missing transverse energy using an artificial neural network +1209721 . Event shapes and azimuthal correlations in $Z$ + jets events in $pp$ collisions at $\sqrt{s}=7$ TeV +1210032 X Interpretation of Searches for Supersymmetry with simplified Models +1211187 X Search for physics beyond the standard model in events with $\tau$ leptons, jets, and large transverse momentum imbalance in pp collisions at $\sqrt{s}$ = 7 TeV +1215317 . Measurement of W+W- and ZZ production cross sections in pp collisions at sqrt(s) = 8 TeV +1215599 X Search for contact interactions using the inclusive jet $p_T$ spectrum in $pp$ collisions at $\sqrt{s} = 7$ TeV +1216035 . Measurement of the top-antitop production cross section in the tau+jets channel in pp collisions at sqrt(s) = 7 TeV +1217551 . Measurement of the $t\bar{t}$ production cross section in the all-jet final state in pp collisions at $\sqrt{s}$ = 7 TeV +1217552 X Search for pair-produced dijet resonances in four-jet final states in pp collisions at $\sqrt{s}$=7  TeV +1218021 X Searches for Higgs bosons in pp collisions at sqrt(s) = 7 and 8 TeV in the context of four-generation and fermiophobic models +1218372 . Study of the underlying event at forward rapidity in pp collisions at $\sqrt{s}$ = 0.9, 2.76, and 7 TeV +1218995 X Search for new physics in final states with a lepton and missing transverse energy in pp collisions at the LHC +1219000 X Search for a Higgs boson decaying into a b-quark pair and produced in association with b quarks in proton–proton collisions at 7 TeV +1219950 X Measurement of the X(3872) production cross section via decays to J/psi pi pi in pp collisions at sqrt(s) = 7 TeV +1220378 X Search for narrow resonances using the dijet mass spectrum in pp collisions at $\sqrt{s}$=8  TeV +1222336 . Search for the standard model Higgs boson produced in association with a top-quark pair in pp collisions at the LHC +1223519 . Search for supersymmetry in hadronic final states with missing transverse energy using the variables $\alpha_T$ and b-quark multiplicity in pp collisions at $\sqrt s=8$ TeV +1223628 ? Measurement of associated production of vector bosons and top quark-antiquark pairs at sqrt(s) = 7 TeV +1223729 X A New Boson with a Mass of 125 GeV Observed with the CMS Experiment at the Large Hadron Collider +1224273 X Observation of a new boson with mass near 125 GeV in pp collisions at $\sqrt{s}$ = 7 and 8 TeV +1224539 . Studies of jet mass in dijet and W/Z + jet events +1224805 X Search for microscopic black holes in pp collisions at sqrt(s) = 8 TeV +1225274 ? Measurement of the $\Upsilon(1S), \Upsilon(2S)$, and $\Upsilon(3S)$ cross sections in pp collisions at $\sqrt{s}$ = 7 TeV +1225976 X Search for a standard-model-like Higgs boson with a mass in the range 145 to 1000 GeV at the LHC +1229333 . Measurement of masses in the $t \bar{t}$ system by kinematic endpoints in pp collisions at $\sqrt{s}$ = 7 TeV +1230936 X Measurement of the $\Lambda_{b}^0$ lifetime in pp collisions at $\sqrt{s} = 7$ TeV +1230937 ! Measurement of the ratio of the inclusive 3-jet cross section to the inclusive 2-jet cross section in pp collisions at $\sqrt{s}$ = 7 TeV and first determination of the strong coupling constant in the TeV range +1231738 X Searches for long-lived charged particles in pp collisions at $\sqrt{s}$=7 and 8 TeV +1231945 . Multiplicity and transverse momentum dependence of two- and four-particle correlations in pPb and PbPb collisions +1232968 X Search for gluino mediated bottom- and top-squark production in multijet final states in pp collisions at 8 TeV +1235421 X Study of exclusive two-photon production of $W^+W^-$ in $pp$ collisions at $\sqrt{s} = 7$ TeV and constraints on anomalous quartic gauge couplings +1235536 . Measurement of neutral strange particle production in the underlying event in proton-proton collisions at sqrt(s) = 7 TeV +1236361 . Measurement of the hadronic activity in events with a Z and two jets and extraction of the cross section for the electroweak production of a Z with two jets in pp collisions at $\sqrt{s}$ = 7 TeV +1237104 ? Measurement of the $W^+W^-$ Cross section in $pp$ Collisions at $\sqrt{s} = 7$ TeV and Limits on Anomalous $WW\gamma$ and $WWZ$ couplings +1237915 X Energy Calibration and Resolution of the CMS Electromagnetic Calorimeter in $pp$ Collisions at $\sqrt{s} = 7$ TeV +1240497 X Search for top squarks in $R$-parity-violating supersymmetry using three or more leptons and b-tagged jets +1240504 X The performance of the CMS muon detector in proton-proton collisions at sqrt(s) = 7 TeV at the LHC +1241819 X Determination of the top-quark pole mass and strong coupling constant from the t t-bar production cross section in pp collisions at $\sqrt{s}$ = 7 TeV +1242440 . Study of the production of charged pions, kaons, and protons in pPb collisions at $\sqrt{s_{NN}} =\ $ 5.02 $\,\text {TeV}$ +1243161 X Measurement of the top-quark mass in all-jets $t\bar{t}$ events in pp collisions at $\sqrt{s}$=7 TeV +1243425 X Measurement of the B(s) to mu+ mu- branching fraction and search for B0 to mu+ mu- with the CMS Experiment +1243861 X Search for a Higgs boson decaying into a Z and a photon in pp collisions at sqrt(s) = 7 and 8 TeV +1244128 ? Measurement of the prompt $J/\psi$ and $\psi$(2S) polarizations in $pp$ collisions at $\sqrt{s}$ = 7 TeV +1246905 . Search for top-squark pair production in the single-lepton final state in pp collisions at $\sqrt{s}$ = 8 TeV +1247976 X Angular analysis and branching fraction measurement of the decay $B^0 \to K^{*0} \mu^+\mu^-$ +1249595 . Measurement of the W-boson helicity in top-quark decays from $t\bar{t}$ production in lepton+jets events in pp collisions at $\sqrt{s} =$ 7 TeV +1251905 ? Measurement of the $W\gamma$ and $Z\gamma$ inclusive cross sections in $pp$ collisions at $\sqrt s=7$  TeV and limits on anomalous triple gauge boson couplings +1252068 X Search for a new bottomonium state decaying to $\Upsilon(1S)\pi^+\pi^-$ in pp collisions at $\sqrt{s}$ = 8 TeV +1252719 . Measurement of the production cross section for $Z\gamma \to \nu\bar{\nu}\gamma$ in pp collisions at $\sqrt{s} =$ 7 TeV and limits on $ZZ\gamma$ and $Z\gamma\gamma$ triple gauge boson couplings +1253367 X Searches for new physics using the $t\bar{t}$ invariant mass distribution in pp collisions at $\sqrt{s}$=8  TeV +1255647 . Observation of a peaking structure in the $J/\psi \phi$ mass spectrum from $B^{\pm} \to J/\psi \phi K^{\pm}$ decays +1256590 ! Modification of jet shapes in PbPb collisions at $\sqrt {s_{NN}} = 2.76$ TeV +1256938 . Measurement of associated W + charm production in pp collisions at $\sqrt{s}$ = 7 TeV +1256943 . Measurement of the cross section and angular correlations for associated production of a Z boson with b hadrons in pp collisions at $\sqrt{s} =$ 7 TeV +1257387 X Search for baryon number violation in top-quark decays +1258128 . Rapidity distributions in exclusive Z + jet and $\gamma$ + jet events in $pp$ collisions at $\sqrt{s}$ = 7 TeV +1258399 X Search for the standard model Higgs boson produced in association with a W or a Z boson and decaying to bottom quarks +1261026 . Jet and underlying event properties as a function of charged-particle multiplicity in proton–proton collisions at $\sqrt{s}$ = 7 TeV +1262319 ! Measurement of the differential and double-differential Drell-Yan cross sections in proton-proton collisions at $\sqrt{s} =$ 7 TeV +1262804 . Measurement of higher-order harmonic azimuthal anisotropy in PbPb collisions at $\sqrt{s_{NN}}$ = 2.76 TeV +1263658 . Searches for light- and heavy-flavour three-jet resonances in pp collisions at $\sqrt{s} = 8$ TeV +1264662 . Measurements of $t\bar{t}$ spin correlations and top-quark polarization using dilepton final states in $pp$ collisions at $\sqrt{s}$ = 7 TeV +1265220 X Search for supersymmetry in pp collisions at $\sqrt{s}$=8 TeV in events with a single lepton, large jet multiplicity, and multiple b jets +1265512 X Search for pair production of excited top quarks in the lepton + jets final state +1265659 . Probing color coherence effects in pp collisions at $\sqrt{s}=7\,\text {TeV} $ +1266056 . Measurement of the triple-differential cross section for photon+jets production in proton-proton collisions at $\sqrt{s}$=7 TeV +1266257 . Search for new physics in events with same-sign dileptons and jets in pp collisions at $\sqrt{s}$ = 8 TeV +1266766 X Inclusive search for a vector-like T quark with charge $\frac{2}{3}$ in pp collisions at $\sqrt{s}$ = 8 TeV +1267508 X Measurement of Higgs boson production and properties in the WW decay channel with leptonic final states +1268151 X Studies of azimuthal dihadron correlations in ultra-central PbPb collisions at $\sqrt{s_{NN}} =$ 2.76 TeV +1268328 X Search for top-quark partners with charge 5/3 in the same-sign dilepton final state +1268812 X Search for top squark and higgsino production using diphoton Higgs boson decays +1269437 X Search for Flavor-Changing Neutral Currents in Top-Quark Decays $t \to Zq$ in $pp$ Collisions at $\sqrt{s}=8$  TeV +1269454 X Evidence of b-Jet Quenching in PbPb Collisions at $\sqrt{s_{NN}}=2.76$  TeV +1272842 X Measurement of the properties of a Higgs boson in the four-lepton final state +1272853 . Study of double parton scattering using W + 2-jet events in proton-proton collisions at $\sqrt{s}$ = 7 TeV +1273570 ? Measurement of the muon charge asymmetry in inclusive $pp \to W+X$ production at $\sqrt s =$ 7 TeV and an improved determination of light parton distribution functions +1273571 X Event activity dependence of Y(nS) production in $\sqrt{s_{NN}}$=5.02 TeV pPb and $\sqrt{s}$=2.76 TeV pp collisions +1273574 . Measurement of four-jet production in proton-proton collisions at $\sqrt{s}=7$  TeV +1273578 ! Measurement of the production cross section for a W boson and two b jets in pp collisions at $\sqrt{s}$=7 TeV +1275617 . Measurement of the $t \bar{t}$ production cross section in the dilepton channel in pp collisions at $\sqrt{s}$ = 8 TeV +1276827 X Observation of the associated production of a single top quark and a $W$ boson in $pp$ collisions at $\sqrt s = $8 TeV +1278063 . Studies of dijet transverse momentum balance and pseudorapidity distributions in pPb collisions at $\sqrt{s_{\mathrm{NN}}} = 5.02$ $\,\text {TeV}$ +1278199 X Evidence for the 125 GeV Higgs boson decaying to a pair of $\tau$ leptons +1278857 X Evidence for the direct decay of the 125 GeV Higgs boson to fermions +1280200 ? Measurement of inclusive W and Z boson production cross sections in pp collisions at $\sqrt{s}$ = 8 TeV +1280529 ! Measurement of the production cross sections for a Z boson and one or more b jets in pp collisions at sqrt(s) = 7 TeV +1280718 X Search for W' $\to $ tb decays in the lepton + jets final state in pp collisions at $\sqrt{s}$ = 8 TeV +1281538 . Measurements of the $t\bar{t}$ charge asymmetry using the dilepton decay channel in pp collisions at $\sqrt{s} =$ 7 TeV +1281837 X Search for new physics in the multijet and missing transverse momentum final state in proton-proton collisions at $\sqrt{s}$= 8 TeV +1285228 X Alignment of the CMS tracker with LHC and cosmic ray data +1285492 . Measurement of WZ and ZZ production in pp collisions at $\sqrt{s} = 8\,\text {TeV} $ in final states with b-tagged jets +1287736 ? Measurement of the t-channel single-top-quark production cross section and of the $\mid V_{tb} \mid$ CKM matrix element in pp collisions at $\sqrt{s}$= 8 TeV +1288709 X Search for invisible decays of Higgs bosons in the vector boson fusion and associated ZH production modes +1289223 ? Measurement of the ratio $\mathcal B(t \to Wb)/\mathcal B(t \to Wq)$ in pp collisions at $\sqrt{s}$ = 8 TeV +1290126 ! Measurement of jet multiplicity distributions in $\mathrm {t}\overline{\mathrm {t}}$ production in pp collisions at $\sqrt{s} = 7\,\text {TeV} $ +1291135 X Search for $WW \gamma$ and $WZ \gamma$ production and constraints on anomalous quartic gauge couplings in $pp$ collisions at $\sqrt s =$ 8 TeV +1291940 X Search for anomalous production of events with three or more leptons in $pp$ collisions at $\sqrt(s) =$ 8 TeV +1294140 . Measurement of pseudorapidity distributions of charged particles in proton-proton collisions at $\sqrt{s}$ = 8 TeV by the CMS and TOTEM experiments +1294937 X Search for massive resonances in dijet systems containing jets tagged as W or Z boson decays in pp collisions at $ \sqrt{s} $ = 8 TeV +1296080 X Search for massive resonances decaying into pairs of boosted bosons in semi-leptonic final states at $\sqrt{s} =$ 8 TeV +1296082 X Constraints on the Higgs boson width from off-shell production and decay to Z-boson pairs +1296259 X Search for top-squark pairs decaying into Higgs or Z bosons in pp collisions at $\sqrt{s}$=8 TeV +1296262 X Search for supersymmetry with razor variables in pp collisions at $\sqrt{s}$=7  TeV +1298029 X Description and performance of track and primary-vertex reconstruction with the CMS tracker +1298393 ! Measurement of differential cross sections for the production of a pair of isolated photons in pp collisions at $\sqrt{s}=7\,\text {TeV} $ +1298508 X Searches for electroweak production of charginos, neutralinos, and sleptons decaying to leptons and W, Z, and Higgs bosons in pp collisions at 8 TeV +1298512 X Search for jet extinction in the inclusive jet-$p_t$ spectrum from proton-proton collisions at $\sqrt s =$ 8 TeV +1298807 . Measurement of the $pp \to ZZ$ production cross section and constraints on anomalous triple gauge couplings in four-lepton final states at $\sqrt s=$8 TeV +1298810 ! Measurement of the ratio of inclusive jet cross sections using the anti-$k_T$ algorithm with radius parameters R=0.5 and 0.7 in pp collisions at $\sqrt{s}=7$  TeV +1298812 . Measurement of prompt $J/\psi$ pair production in pp collisions at $ \sqrt{s} $ = 7 Tev +1299142 . Measurement of jet fragmentation in PbPb and pp collisions at $\sqrt{s_{NN}}=2.76$ TeV +1300149 . Radiation background with the CMS RPCs at the LHC +1301560 X Search for excited quarks in the $\gamma +$jet final state in proton–proton collisions at $\sqrt s=8$ TeV +1303894 . Differential cross section measurements for the production of a W boson in association with jets in proton–proton collisions at $\sqrt s=7$ TeV +1303895 . CMS RPC muon detector performance with 2010-2012 LHC data +1303904 . Measurement of top quark-antiquark pair production in association with a W or Z boson in pp collisions at $\sqrt{s} = 8$ $\,\text {TeV}$ +1304454 X Observation of the diphoton decay of the Higgs boson and measurement of its properties +1305624 . Study of hadronic event-shape variables in multijet final states in pp collisions at sqrt(s) = 7 TeV +1306289 X Search for new resonances decaying via WZ to leptons in proton-proton collisions at $\sqrt s =$ 8 TeV +1306295 X Search for heavy neutrinos and $\mathrm {W}$ bosons with right-handed couplings in proton-proton collisions at $\sqrt{s} = 8\,\text {TeV} $ +1307759 . Measurement of the $t \bar t$ production cross section in $pp$ collisions at $\sqrt s = 8$ TeV in dilepton final states containing one $\tau$ lepton +1309874 X Search for pair production of third-generation scalar leptoquarks and top squarks in proton–proton collisions at $\sqrt{s}$=8 TeV +1310104 X Search for the associated production of the Higgs boson with a top-quark pair +1310653 X Search for physics beyond the standard model in final states with a lepton and missing transverse energy in proton-proton collisions at sqrt(s) = 8 TeV +1310737 . Measurements of jet multiplicity and differential production cross sections of $Z +$ jets events in proton-proton collisions at $\sqrt{s} =$ 7 TeV +1310838 X Search for neutral MSSM Higgs bosons decaying to a pair of tau leptons in pp collisions +1311223 X Search for dark matter, extra dimensions, and unparticles in monojet events in proton–proton collisions at $\sqrt{s} = 8$ TeV +1315820 X Searches for electroweak neutralino and chargino production in channels with Higgs, Z, and W bosons in pp collisions at 8 TeV +1315947 . Long-range two-particle correlations of strange hadrons with charged particles in pPb and PbPb collisions at LHC energies +1317640 ? Search for Displaced Supersymmetry in events with an electron and a muon with large impact parameters +1318344 ? Measurement of the production cross section ratio $\sigma$(Xb2(1P)) / $\sigma$(Xb1(1P) in pp collisions at $\sqrt s $ = 8 TeV +1318946 X Search for Standard Model Production of Four Top Quarks in the Lepton + Jets Channel in pp Collisions at $\sqrt{s}$ = 8 TeV +1320560 X Search for Monotop Signatures in Proton-Proton Collisions at $\sqrt s =$ 8 TeV +1320561 ? Measurement of the W boson helicity in events with a single reconstructed top quark in pp collisions at $ \sqrt{s}=8 $ TeV +1320775 ? Measurement of Prompt $\psi(2S) \to J/\psi$ Yield Ratios in Pb-Pb and $p-p$ Collisions at $\sqrt {s_{NN}}=$ 2.76  TeV +1321537 X Searches for heavy Higgs bosons in two-Higgs-doublet models and for $t→ch$ decay using multilepton and diphoton final states in $pp$ collisions at 8 TeV +1321687 . Measurement of electroweak production of two jets in association with a Z boson in proton-proton collisions at $\sqrt{s}=8\,\text {TeV}$ +1322563 X Identification techniques for highly boosted W bosons that decay into hadrons +1322726 ? Study of Z production in PbPb and pp collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV in the dimuon and dielectron decay channels +1323075 X Measurement of the ratio of the production cross sections times branching fractions of $B_{c}^{\pm} \to J/\psi \pi^{\pm}$ and $B^{\pm} \to J/\psi K^{\pm}$ and $\mathcal{B}(B_{c}^{\pm} \to J/\psi \pi^{\pm}\pi^{\pm}\pi^{\mp})/\mathcal{B}(B_{c}^{\pm} \to J/\psi \pi^{\pm})$ in pp collisions at $\sqrt{s} =$ 7 TeV +1323393 . CMS RPC tracker muon reconstruction +1323444 X Study of vector boson scattering and search for new physics in events with two same-sign leptons and two jets +1323624 X Search for a standard model-like Higgs boson in the $μ^+μ^−$ and $e^+e^−$ decay channels at the LHC +1323630 X Constraints on parton distribution functions and extraction of the strong coupling constant from the inclusive jet cross section in pp collisions at $\sqrt{s} = 7$ $\,\text {TeV}$ +1325549 X Search for new phenomena in monophoton final states in proton-proton collisions at $\sqrt s =$ 8 TeV +1325798 X Performance of the CMS missing transverse momentum reconstruction in pp data at $\sqrt{s}$ = 8 TeV +1326189 . CMS RPC commissioning of the existing detector during the long shutdown +1327224 . Search for quark contact interactions and extra spatial dimensions using dijet angular distributions in proton–proton collisions at $\sqrt s =$ 8 TeV +1327726 X Constraints on the spin-parity and anomalous HVV couplings of the Higgs boson in proton collisions at 7 and 8 TeV +1328493 X Observation of the rare $B^0_s\to\mu^+\mu^-$ decay from the combined analysis of CMS and LHCb data +1328962 . Measurement of the cross section ratio $\sigma_\mathrm{t \bar{t} b \bar{b}} / \sigma_\mathrm{t \bar{t} jj }$ in pp collisions at $\sqrt{s}$ = 8 TeV +1329620 ? Search for disappearing tracks in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1329792 ? Search for Long-Lived Neutral Particles Decaying to Quark-Antiquark Pairs in Proton-Proton Collisions at $\sqrt{s} =$ 8 TeV +1329959 ? Search for long-lived particles that decay into final states containing two electrons or two muons in proton-proton collisions at $\sqrt{s} =$ 8 TeV +1330294 ? Search for stealth supersymmetry in events with jets, either photons or leptons, and low missing transverse momentum in pp collisions at 8 TeV +1332509 ! Measurements of differential and double-differential Drell-Yan cross sections in proton-proton collisions at 8 TeV +1332746 ! Measurement of the inclusive 3-jet production differential cross section in proton–proton collisions at 7 TeV and determination of the strong coupling constant in the TeV range +1334141 ? Searches for supersymmetry based on events with b jets and four W bosons in pp collisions at 8 TeV +1335131 ? Search for physics beyond the standard model in dilepton mass spectra in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1335501 ? Search for pair-produced resonances decaying to jet pairs in proton–proton collisions at $\sqrt{s} =$ 8 TeV +1335811 X Precise determination of the mass of the Higgs boson and tests of compatibility of its couplings with the standard model predictions using proton collisions at 7 and 8 $\,\text {TeV}$ +1340084 ? Search for resonances and quantum black holes using dijet mass spectra in proton-proton collisions at $\sqrt{s} =$ 8 TeV +1340696 ? Search for heavy Majorana neutrinos in $\mu^\pm \mu^\pm+$ jets events in proton-proton collisions at $\sqrt{s}$ = 8 TeV +1340699 ? Search for Decays of Stopped Long-Lived Particles Produced in Proton–Proton Collisions at $\sqrt{s}= 8\,\text {TeV} $ +1341039 X Measurement of the ratio $B(B^0_s \to J/\psi f_0(980))$ / $B(B^0_s \to J/\psi \phi(1020))$ in pp collisions at $\sqrt s$ = 7 TeV +1342266 ? Measurements of the $\Upsilon$(1S), $\Upsilon$(2S), and $\Upsilon$(3S) differential cross sections in pp collisions at $\sqrt{s} =$ 7 TeV +1342447 ? Search for Supersymmetry Using Razor Variables in Events with $b$-Tagged Jets in $pp$ Collisions at $\sqrt{s} =$ 8 TeV +1343506 X Search for a Standard Model Higgs Boson Produced in Association with a Top-Quark Pair and Decaying to Bottom Quarks Using a Matrix Element Method +1343509 X Constraints on the pMSSM, AMSB model and on other models from the search for long-lived charged particles in proton-proton collisions at sqrt(s) = 8 TeV +1343791 X Performance of Electron Reconstruction and Selection with the CMS Detector in Proton-Proton Collisions at √s = 8  TeV +1343792 X Performance of Photon Reconstruction and Identification with the CMS Detector in Proton-Proton Collisions at sqrt(s) = 8 TeV +1345023 ? Measurement of J/ψ and ψ(2S) Prompt Double-Differential Cross Sections in pp Collisions at $\sqrt{s}$=7  TeV +1345027 X Searches for Supersymmetry using the M$_{T2}$ Variable in Hadronic Events Produced in pp Collisions at 8 TeV +1345159 . Distributions of Topological Observables in Inclusive Three- and Four-Jet Events in pp Collisions at sqrt(s) = 7 TeV +1345160 X Search for Narrow High-Mass Resonances in Proton–Proton Collisions at $\sqrt{s}$ = 8 TeV Decaying to a Z and a Higgs Boson +1345262 X Evidence for Collective Multiparticle Correlations in p-Pb Collisions +1345263 ? Nuclear Effects on the Transverse Momentum Spectra of Charged Particles in pPb Collisions at $\sqrt{s_{_\mathrm {NN}}} =5.02$ TeV +1345354 ? Measurement of the Zγ Production Cross Section in pp Collisions at 8 TeV and Search for Anomalous Triple Gauge Boson Couplings +1345823 ? Search for Physics Beyond the Standard Model in Events with Two Leptons, Jets, and Missing Transverse Momentum in pp Collisions at sqrt(s) = 8 TeV +1346512 ? Search for Lepton-Flavour-Violating Decays of the Higgs Boson +1346843 . Study of Final-State Radiation in Decays of Z Bosons Produced in $pp$ Collisions at 7 TeV +1347386 . Evidence for transverse momentum and pseudorapidity dependent event plane fluctuations in PbPb and pPb collisions +1348542 X Search for vector-like T quarks decaying to top quarks and Higgs bosons in the all-hadronic channel using jet substructure +1352128 X Search for resonant pair production of Higgs bosons decaying to two bottom quark–antiquark pairs in proton–proton collisions at 8 TeV +1353393 X Measurements of the $\mathrm{Z}$ $\mathrm{Z}$ production cross sections in the $2\mathrm{l} 2\nu $ channel in proton–proton collisions at $\sqrt{s} = 7$ and $8~\mathrm{TeV} $ and combined constraints on triple gauge couplings +1353541 ? Study of W boson production in pPb collisions at $\sqrt{s_{\mathrm{NN}}} =$ 5.02 TeV +1356728 ? Searches for third-generation squark production in fully hadronic final states in proton-proton collisions at $ \sqrt{s} = 8$ TeV +1356998 . Measurement of diffraction dissociation cross sections in pp collisions at $\sqrt{s}$ = 7 TeV +1357201 ? Search for Third-Generation Scalar Leptoquarks in the t$\tau$ Channel in Proton-Proton Collisions at $\sqrt{s}$ = 8 TeV +1357982 X Search for a Higgs boson in the mass range from 145 to 1000 GeV decaying to a pair of W or Z bosons +1359293 ? Search for the production of dark matter in association with top-quark pairs in the single-lepton final state in proton-proton collisions at sqrt(s) = 8 TeV +1359450 ! Measurement of the Z boson differential cross section in transverse momentum and rapidity in proton–proton collisions at 8 TeV +1359451 . Angular coefficients of Z bosons produced in pp collisions at $\sqrt{s}$ = 8 TeV and decaying to $\mu^+ \mu^-$ as a function of transverse momentum and rapidity +1362177 X Search for a pseudoscalar boson decaying into a Z boson and the 125 GeV Higgs boson in $ℓ^+ℓ^−b\overline{b}$ final states +1367339 . Trapping in proton irradiated p$^+$-n-n$^+$ silicon sensors at fluences anticipated at the HL-LHC outer tracker +1369161 . Impact of low-dose electron irradiation on $n^{+}p$ silicon strip sensors +1370682 . Measurement of the differential cross section for top quark pair production in pp collisions at $\sqrt{s} = 8\,\text {TeV} $ +1372730 ? Comparison of the Z/$\gamma$$^{∗}$ + jets to $\gamma$ + jets cross sections in pp collisions at $ \sqrt{s}=8 $ TeV +1373745 X Search for neutral color-octet weak-triplet scalar particles in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1373914 X A search for pair production of new light bosons decaying into muons +1374219 X Search for the standard model Higgs boson produced through vector boson fusion and decaying to $b \overline{b}$ +1374621 X Search for a massive resonance decaying into a Higgs boson and a W or Z boson in hadronic final states in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1375026 X Search for diphoton resonances in the mass range from 150 to 850 GeV in pp collisions at $\sqrt{s} =$ 8 TeV +1375314 X Search for resonant $t \bar t$ production in proton-proton collisions at $\sqrt s=$ 8  TeV +1380177 X Search for neutral MSSM Higgs bosons decaying into a pair of bottom quarks +1380605 . Production of leading charged particles and leading charged-particle jets at small transverse momenta in pp collisions at sqrt(s) = 8 TeV +1380907 X Search for exotic decays of a Higgs boson into undetectable particles and one or more photons +1382346 ? Search for supersymmetry with photons in pp collisions at $\sqrt{s}$=8  TeV +1382587 ? Search for a Higgs boson decaying into $\gamma^* \gamma \to \ell \ell \gamma$ with low dilepton mass in pp collisions at $\sqrt s = $ 8 TeV +1382590 ! Inclusive and differential measurements of the $t\overline{t}$ charge asymmetry in pp collisions at $\sqrt{s} =$ 8 TeV +1382594 ? Measurement of the ${{\mathrm{W} }^{+} }\mathrm{W}^{-} $ cross section in pp collisions at $\sqrt{s} =$ 8 TeV and limits on anomalous gauge couplings +1384119 . Pseudorapidity distribution of charged hadrons in proton-proton collisions at $\sqrt{s}$ = 13 TeV +1384772 X Limits on the Higgs boson lifetime and width from its decay to four charged leptons +1385104 ? Search for pair-produced vectorlike B quarks in proton-proton collisions at $\sqrt{s}$=8  TeV +1385107 . Measurement of the underlying event activity using charged-particle jets in proton-proton collisions at sqrt(s) = 2.76 TeV +1385111 X Measurement of the CP-violating weak phase $\phi_s$ and the decay width difference $\Delta \Gamma_s$ using the B$_s^0 \to J/\psi\phi$(1020) decay channel in pp collisions at $\sqrt{s}=$ 8 TeV +1385600 X Angular analysis of the decay $B^0 \to K^{*0} \mu^+ \mu^-$ from pp collisions at $\sqrt s = 8$ TeV +1386851 ? Search for supersymmetry in events with a photon, a lepton, and missing transverse momentum in pp collisions at $\sqrt s=$ 8 TeV +1386854 ? Search for neutral MSSM Higgs bosons decaying to $\mu^{+} \mu^{-}$ in pp collisions at $ \sqrt{s} =$ 7 and 8 TeV +1388178 . Measurement of the charge asymmetry in top quark pair production in pp collisions at $\sqrt(s) =$ 8 TeV using a template method +1388363 ? Search for W' decaying to tau lepton and neutrino in proton-proton collisions at $\sqrt(s) =$ 8 TeV +1390110 ? Study of B Meson Production in p$+$Pb Collisions at $\sqrt{s_{NN}}=5.02$  TeV Using Exclusive Hadronic Decays +1391140 ? Search for supersymmetry in the vector-boson fusion topology in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1391146 ? Search for a charged Higgs boson in pp collisions at $ \sqrt{s}=8 $ TeV +1391147 ! Measurement of differential cross sections for Higgs boson production in the diphoton decay channel in pp collisions at $\sqrt{s}=8\,\text {TeV} $ +1393257 ? Search for pair production of first and second generation leptoquarks in proton-proton collisions at $\sqrt{s}$ = 8  TeV +1393258 ? Search for single production of scalar leptoquarks in proton-proton collisions at $\sqrt{s} = 8$ $TeV$ +1393261 . Measurement of the inelastic cross section in proton–lead collisions at $\sqrt {s_{NN}}=$ 5.02 TeV +1393269 X Measurement of the top quark mass using proton-proton data at ${\sqrt{(s)}}$ = 7 and 8 TeV +1393276 ? Search for vector-like charge 2/3 T quarks in proton-proton collisions at sqrt(s) = 8 TeV +1394163 ? Search for $W' \to tb$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV +1394164 ? Measurement of the $\mathrm{t}\overline{{\mathrm{t}}}$ production cross section in the all-jets final state in pp collisions at $\sqrt{s}=8$ $\,\text {TeV}$ +1395094 X Search for the production of an excited bottom quark decaying to $tW$ in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1395096 X Search for the associated production of a Higgs boson with a single top quark in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1395457 . Measurement of transverse momentum relative to dijet systems in PbPb and pp collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV +1396140 X Observation of top quark pairs produced in association with a vector boson in pp collisions at $ \sqrt{s}=8 $ TeV +1396141 X Searches for a heavy scalar boson H decaying to a pair of 125 GeV Higgs bosons hh or for a heavy pseudoscalar boson A decaying to Zh, in the final states with $h \to \tau \tau$ +1397173 ! Measurement of long-range near-side two-particle angular correlations in pp collisions at $\sqrt s =$13 TeV +1397174 . Measurement of $\mathrm {t}\overline{\mathrm {t}}$ production with additional jet activity, including $\mathrm {b}$ quark jets, in the dilepton decay channel using pp collisions at $\sqrt{s} =$ 8 TeV +1397180 . Transverse momentum spectra of inclusive b jets in pPb collisions at $\sqrt{s_{NN}} = $ 5.02 TeV +1397832 X Search for a light charged Higgs boson decaying to $ \mathrm{c}\overline{\mathrm{s}} $ in pp collisions at $ \sqrt{s}=8 $ TeV +1398582 ? Measurement of the top quark pair production cross section in proton-proton collisions at $\sqrt(s) =$ 13 TeV +1399359 X Search for a very light NMSSM Higgs boson produced in decays of the 125 GeV scalar boson and decaying into $\tau$ leptons in pp collisions at $\sqrt{s}=8$ TeV +1400805 X Reconstruction and identification of τ lepton decays to hadrons and ν$_τ$ at CMS +1402803 ? Search for Excited Leptons in Proton-Proton Collisions at $\sqrt{s}$ = 8 TeV +1403169 . Measurement of Top Quark Polarisation in T-Channel Single Top Quark Production +1403990 X Search for a Low-Mass Pseudoscalar Higgs Boson Produced in Association with a $b\bar{b}$ Pair in $pp$ Collisions at $\sqrt{s} =$ 8 TeV +1404159 X Search for Anomalous Single Top Quark Production in Association with a Photon in $pp$ Collisions at $ \sqrt{s}=8 $ TeV +1405439 ? Measurement of Spin Correlations in $t\bar{t}$ Production using the Matrix Element Method in the Muon+Jets Final State in $pp$ Collisions at $\sqrt{s} =$ 8 TeV +1407148 ? Search for dark matter and unparticles produced in association with a Z boson in proton-proton collisions at $\sqrt s=$ 8  TeV +1407839 X Event generator tunes obtained from underlying event and multiparton scattering measurements +1407955 ? Search for narrow resonances decaying to dijets in proton-proton collisions at $\sqrt(s) =$ 13 TeV +1410826 ! Measurement of the inclusive jet cross section in pp collisions at $\sqrt{s} = 2.76\,\text {TeV}$ +1410832 . Study of Z boson production in pPb collisions at $\sqrt {s_{NN}} = 5.02$ TeV +1411443 ? Search for supersymmetry in events with soft leptons, low jet multiplicity, and missing transverse energy in proton–proton collisions at $\sqrt{s}$=8 TeV +1411454 ! Measurement of differential and integrated fiducial cross sections for Higgs boson production in the four-lepton decay channel in pp collisions at $ \sqrt{s}=7 $ and 8 TeV +1412059 . Correlations between jets and charged particles in PbPb and pp collisions at $ \sqrt{s_{\mathrm{NN}}}=2.76 $ TeV +1413748 . Measurements of t t-bar spin correlations and top quark polarization using dilepton final states in pp collisions at sqrt(s) = 8 TeV +1414605 . Measurement of inclusive jet production and nuclear modifications in pPb collisions at $\sqrt{s_{_\mathrm {NN}}} =$ 5.02 TeV +1415949 ? Forward–backward asymmetry of Drell–Yan lepton pairs in pp collisions at $\sqrt{s} = 8$ $\,\mathrm{TeV}$ +1416821 ? Search for massive WH resonances decaying into the $\ell \nu \mathrm{b} \overline{\mathrm{b}} $ final state at $\sqrt{s}=8$ $~\text {TeV}$ +1416827 ! Azimuthal decorrelation of jets widely separated in rapidity in pp collisions at $ \sqrt{s}=7 $ TeV +1420551 ? Search for supersymmetry in pp collisions at sqrt(s) = 8 TeV in final states with boosted W bosons and b jets using razor variables +1420556 ? Search for direct pair production of scalar top quarks in the single- and dilepton channels in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1421644 X Combined search for anomalous pseudoscalar HVV couplings in VH(H $\to b \bar b$) production and H $\to$ VV decay +1421645 ? Search for R-parity violating decays of a top squark in proton-proton collisions at $\sqrt{s}$ = 8 TeV +1421646 ! Measurement of dijet azimuthal decorrelation in pp collisions at $\sqrt{s}=8\,\mathrm{TeV} $ +1422778 ? Search for supersymmetry in the multijet and missing transverse momentum final state in pp collisions at 13 TeV +1423069 ? Measurement of the $ \mathrm{ Z } \gamma \rightarrow \nu \bar{\nu} \gamma$ production cross section in pp collisions at $\sqrt{s}=$ 8 TeV and limits on anomalous $ \mathrm{ ZZ } \gamma$ and $ \mathrm{Z} \gamma \gamma$ trilinear gauge boson couplings +1424833 ? Search for heavy resonances decaying to two Higgs bosons in final states containing four b quarks +1424834 ! Search for supersymmetry in electroweak production with photons and large missing transverse energy in pp collisions at $\sqrt s = 8$ TeV +1424842 ? Measurements of the $\mathrm{t}\overline{\mathrm{t}}$ production cross section in lepton+jets final states in pp collisions at 8 $\,\text {TeV}$ and ratio of 8 to 7  $\,\text {TeV}$ cross sections +1425690 ? Search for direct pair production of supersymmetric top quarks decaying to all-hadronic final states in pp collisions at $\sqrt{s} = 8\;\text {TeV} $ +1426517 ! Measurement of the differential cross section and charge asymmetry for inclusive $\mathrm {p}\mathrm {p}\rightarrow \mathrm {W}^{\pm }+X$ production at ${\sqrt{s}} = 8$ TeV +1426525 X Search for heavy Majorana neutrinos in e$^{±}$e$^{±}$+ jets and e$^{±}$ $\mu^{±}$+ jets events in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1426692 ? Measurement of the t-tbar production cross section in the e-mu channel in proton-proton collisions at sqrt(s) = 7 and 8 TeV +1426696 X Search for s channel single top quark production in pp collisions at $ \sqrt{s}=7 $ and 8 TeV +1426828 . $\Upsilon(\mathrm{nS})$ polarizations versus particle multiplicity in pp collisions at $\sqrt{s} =$ 7 TeV +1426832 ? Search for neutral resonances decaying into a Z boson and a pair of b jets or $\tau$ leptons +1427411 ? Search for new physics with the M$_{T2}$ variable in all-jets final states produced in pp collisions at $ \sqrt{s}=13 $ TeV +1430578 . Physics motivations and expected performance of the CMS muon system upgrade with triple-GEM detectors +1430892 . Measurements of $t \bar t$ charge asymmetry using dilepton final states in pp collisions at $\sqrt s=8$ TeV +1430902 X Measurement of the top quark mass using charged particles in pp collisions at $\sqrt s =$ 8 TeV +1431986 ? Search for two Higgs bosons in final states containing two photons and two bottom quarks in proton-proton collisions at 8 TeV +1436367 . Search for dark matter particles in proton-proton collisions at $ \sqrt{s}=8 $ TeV using the razor variables +1448100 X Evidence for exclusive $\gamma\gamma \to W^+ W^-$ production and constraints on anomalous quartic gauge couplings in $pp$ collisions at $ \sqrt{s}=7 $ and 8 TeV +1448302 ? Search for lepton flavour violating decays of heavy resonances and quantum black holes to an e$\mu$ pair in proton-proton collisions at $\sqrt{s}$ = 8 TeV +1449080 . Pseudorapidity dependence of long-range two-particle correlations in $p$Pb collisions at $\sqrt {s_{NN}}=$ 5.02 TeV +1454081 ? Search for narrow resonances in dijet final states at $\sqrt(s)=$ 8 TeV with the novel CMS technique of data scouting +1454211 . Measurement of the integrated and differential $t \bar t$ production cross sections for high-$p_t$ top quarks in $pp$ collisions at $\sqrt s =$ 8 TeV +1456795 X Search for Higgs boson off-shell production in proton-proton collisions at 7 and 8 TeV and derivation of constraints on its total decay width +1456935 . Search for new physics in same-sign dilepton events in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $ +1459051 ! Measurement of the double-differential inclusive jet cross section in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $ +1459054 ? Search for supersymmetry in pp collisions at $ \sqrt{s}=13 $ TeV in the single-lepton final state using the sum of masses of large-radius jets +1464834 . Multiplicity and rapidity dependence of strange hadron production in pp, pPb, and PbPb collisions at the LHC +1464840 ? Coherent $J/\psi$ photoproduction in ultra-peripheral PbPb collisions at $\sqrt {s_{NN}} =$ 2.76 TeV with the CMS experiment +1466293 ? Search for top squark pair production in compressed-mass-spectrum scenarios in proton-proton collisions at $\sqrt{s}$ = 8 TeV using the $\alpha_T$ variable +1466294 . Measurement of the W boson helicity fractions in the decays of top quark pairs to lepton $+$ jets final states produced in pp collisions at $\sqrt s=$ 8TeV +1466301 ? Search for Dark Matter and Supersymmetry with a Compressed Mass Spectrum in the Vector Boson Fusion Topology in Proton-Proton Collisions at $\sqrt{s} =$ 8  TeV +1467450 . High rate, fast timing Glass RPC for the high $\eta$ CMS muon detectors +1467451 . Measurement of the transverse momentum spectrum of the Higgs boson produced in pp collisions at $ \sqrt{s}=8 $ TeV using $H \to WW$ decays +1469062 X Phenomenological MSSM interpretation of CMS searches in pp collisions at sqrt(s) = 7 and 8 TeV +1469073 ? Search for Resonant Production of High-Mass Photon Pairs in Proton-Proton Collisions at $\sqrt s$ =8 and 13 TeV +1471281 ! Measurement of the transverse momentum spectra of weak vector bosons produced in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1471287 ? Evidence for collectivity in pp collisions at the LHC +1472314 ? Searches for $R$-parity-violating supersymmetry in $pp $collisions at $\sqrt(s) =$ 8 TeV in final states with 0-4 leptons +1473674 . Measurement of the differential cross sections for top quark pair production as a function of kinematic event variables in pp collisions at $\sqrt s$=7 and 8 TeV +1473675 ? Search for new physics in final states with two opposite-sign, same-flavor leptons, jets, and missing transverse momentum in pp collisions at sqrt(s) = 13 TeV +1475003 X Observation of the decay $B^+ \to \psi(2S) \phi(1020) K^+$ in pp collisions at $\sqrt s =$ 8 TeV +1475472 X Search for lepton flavour violating decays of the Higgs boson to $e \tau$ and $e \mu$ in proton–proton collisions at $\sqrt s=$ 8 TeV +1475475 X Jet energy scale and resolution in the CMS experiment in pp collisions at 8 TeV +1477207 ? Search for dark matter in proton-proton collisions at 8 TeV with missing transverse momentum and vector boson tagged jets +1477805 X Measurement of the WZ production cross section in pp collisions at $\sqrt(s) =$ 13 TeV +1477806 . Measurement of electroweak production of a W boson and two forward jets in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1478600 X Measurement of the ZZ production cross section and Z $\to \ell^+\ell^-\ell'^+\ell'^-$ branching fraction in pp collisions at $\sqrt s$=13 TeV +1479163 ? Search for new phenomena in events with high jet multiplicity and low missing transverse momentum in proton–proton collisions at $\sqrt{s}=8$ TeV +1480862 X Measurement of the mass of the top quark in decays with a $J/\psi$ meson in pp collisions at 8 TeV +1483165 . Dose rate effects in the radiation damage of the plastic scintillators of the CMS Hadron Endcap Calorimeter +1484162 ! Measurement of the production cross section of a W boson in association with two b jets in pp collisions at $\sqrt{s} = 8{\,\mathrm{{TeV}}} $ +1485195 ! Measurement of the total and differential inclusive $B^+$ hadron cross sections in pp collisions at $\sqrt{s}$ = 13 TeV +1485699 X The CMS trigger system +1485701 . Decomposing transverse momentum balance contributions for quenched jets in PbPb collisions at $ \sqrt{s_{\mathrm{N}\;\mathrm{N}}}=2.76 $ TeV +1485702 ? Search for high-mass diphoton resonances in proton–proton collisions at 13 TeV and combination with 8 TeV search +1486238 . Studies of inclusive four-jet production with two $b$-tagged jets in proton-proton collisions at 7 TeV +1487277 . Measurement and QCD analysis of double-differential inclusive jet cross sections in pp collisions at $ \sqrt{s}=8 $ TeV and cross section ratios to 2.76 and 7 TeV +1487278 . Measurement of inclusive jet cross sections in $pp$ and PbPb collisions at $\sqrt{s_{NN}}=$ 2.76 TeV +1487279 ? Search for narrow resonances in dilepton mass spectra in proton-proton collisions at $\sqrt{s}$ = 13 TeV and combination with 8 TeV data +1487288 X Measurement of the WZ production cross section in pp collisions at $\sqrt{s} = 7$ and 8 $\,\text{TeV}$ and search for anomalous triple gauge couplings at $\sqrt{s} = 8\,\text{TeV} $ +1488103 ? Inclusive search for supersymmetry using razor variables in pp collisions at $\sqrt s=$ 13  TeV +1488280 ? Search for long-lived charged particles in proton-proton collisions at $\sqrt s=$ 13  TeV +1488581 ? Search for supersymmetry in events with one lepton and multiple jets in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1489183 ? Observation of charge-dependent azimuthal correlations in $p$-Pb collisions and its implication for the search for the chiral magnetic effect +1489189 . Suppression and azimuthal anisotropy of prompt and nonprompt ${\mathrm{J}}/\psi $ production in PbPb collisions at $\sqrt{{s_{_{\text {NN}}}}} =2.76$ $\,\mathrm{TeV}$ +1489193 ? Cross section measurement of $t$-channel single top quark production in pp collisions at $\sqrt s =$ 13 TeV +1490903 ? Search for high-mass Z$\gamma$ resonances in $\mathrm{ e }^{+}\mathrm{ e }^{-}\gamma $ and $ \mu^{+}\mu^{-}\gamma$ final states in proton-proton collisions at $\sqrt{s} =$ 8 and 13 TeV +1491379 X Search for anomalous Wtb couplings and flavour-changing neutral currents in t-channel single top quark production in pp collisions at $\sqrt{s} =$ 7 and 8 TeV +1491950 ! Measurement of differential cross sections for top quark pair production using the lepton+jets final state in proton-proton collisions at 13 TeV +1491953 . Measurements of differential cross sections for associated production of a W boson and jets in proton-proton collisions at $\sqrt{s} =$ 8 TeV +1492316 X Search for top quark decays via Higgs-boson-mediated flavor-changing neutral currents in pp collisions at $ \sqrt{s}=8 $ TeV +1492317 ? Search for electroweak production of charginos in final states with two τ leptons in pp collisions at $ \sqrt{s}=8 $ TeV +1492321 ? Search for R-parity violating supersymmetry with displaced vertices in proton-proton collisions at $\sqrt{s}$ = 8 TeV +1494067 X Observation of $\Upsilon$(1S) pair production in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1494580 ? Search for heavy resonances decaying into a vector boson and a Higgs boson in final states with charged leptons, neutrinos, and b quarks +1495025 ? Searches for invisible decays of the Higgs boson in pp collisions at $\sqrt{s}$ = 7, 8, and 13 TeV +1495237 X Measurement of the mass difference between top quark and antiquark in pp collisions at $\sqrt{s} = 8$ TeV +1495423 ? A search for new phenomena in pp collisions at $\sqrt{s} = 13\,\text {TeV} $ in final states with missing transverse momentum and at least one jet using the $\alpha _{\mathrm {T}}$ variable +1495840 . Relative Modification of Prompt ψ(2S) and J/ψ Yields from pp to PbPb Collisions at $\sqrt{s_{NN}}=5.02$ TeV +1495866 ! Suppression of $\Upsilon(1S), \Upsilon(2S)$ and $\Upsilon(3S)$ production in PbPb collisions at $\sqrt{s_{\rm NN}}$ = 2.76 TeV +1496050 . Charged-particle nuclear modification factors in PbPb and pPb collisions at $ \sqrt{s_{\mathrm{N}\;\mathrm{N}}}=5.02 $ TeV +1497514 ? Search for dijet resonances in proton–proton collisions at $\sqrt{s}$ = 13 TeV and constraints on dark matter and other models +1497519 ! Measurements of differential production cross sections for a Z boson in association with jets in pp collisions at $ \sqrt{s}=8 $ TeV +1497736 . Measurement of the $t\bar{t}$ production cross section using events in the e$\mu$ final state in pp collisions at $\sqrt{s} =$ 13 TeV +1499471 ! Measurements of the associated production of a Z boson and b jets in pp collisions at ${\sqrt{s}} = 8\,\text {TeV} $ +1499476 ? Search for heavy resonances decaying to tau lepton pairs in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1499477 ? Search for supersymmetry in events with photons and missing transverse energy in pp collisions at 13 TeV +1500513 X Search for CP violation in $ t\overline{t} $ production and decay in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1501681 ? Search for single production of a heavy vector-like T quark decaying to a Higgs boson and a top quark with a lepton and jets in the final state +1501683 ? Search for heavy neutrinos or third-generation leptoquarks in final states with two hadronically decaying $\tau$ leptons and two jets in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1502925 ? Searches for pair production of third-generation squarks in $\sqrt{s}=13$ $\,\text {TeV}$ pp collisions +1504209 ? Search for electroweak production of a vector-like quark decaying to a top quark and a Higgs boson using boosted topologies in fully hadronic final states +1507091 . Measurements of the charm jet cross section and nuclear modification factor in pPb collisions at $\sqrt{{s}_{NN}}$ = 5.02 TeV +1507094 X Search for massive resonances decaying into WW, WZ or ZZ bosons in proton-proton collisions at $\sqrt{s} = $ 13 TeV +1507095 ? Measurement of electroweak-induced production of W$\gamma$ with two jets in pp collisions at $ \sqrt{s}=8 $ TeV and constraints on anomalous quartic gauge couplings +1507096 ? Search for heavy gauge W' boson in events with an energetic lepton and large missing transverse momentum at $ \sqrt{s} = $ 13 TeV +1507303 ? Search for high-mass $\mathrm{ Z }\gamma$ resonances in proton-proton collisions at $\sqrt{s}=$ 8 and 13 TeV using jet substructure techniques +1507892 ? Search for leptophobic Z′ bosons decaying into four-lepton final states in proton–proton collisions at $\sqrt s$ =8TeV +1508171 ? Search for supersymmetry in the all-hadronic final state using top quark tagging in pp collisions at $\sqrt s = 13$ TeV +1508172 X Mechanical stability of the CMS strip tracker measured with a laser alignment system +1508173 ? Search for light bosons in decays of the 125 GeV Higgs boson in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1508174 ? Search for dark matter and unparticles in events with a Z boson and missing transverse momentum in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1510260 ! Measurement of the $t \bar t$ production cross section using events with one lepton and at least one jet in pp collisions at $\sqrt{s}$ = 13 TeV +1510442 ? Search for new phenomena with multiple charged leptons in proton–proton collisions at $\sqrt{s}= 13$ $\,\text {TeV}$ +1510567 ? Search for single production of vector-like quarks decaying to a Z boson and a top or a bottom quark in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1511277 ? Search for single production of vector-like quarks decaying into a b quark and a W boson in proton-proton collisions at $\sqrt s =$ 13 TeV +1511284 . Measurement of the inclusive energy spectrum in the very forward direction in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1511868 . Azimuthal anisotropy of charged particles with transverse momentum up to 100 GeV/ c in PbPb collisions at $\sqrt {s}_{{NN}}$=5.02 TeV +1512112 ! Study of Jet Quenching with $Z+\text{jet}$ Correlations in Pb-Pb and $pp$ Collisions at ${\sqrt{s}}_{NN}=5.02\text{ }\text{ }\mathrm{TeV}$ +1512295 . Search for associated production of a Z boson with a single top quark and for tZ flavour-changing interactions in pp collisions at $ \sqrt{s}=8 $ TeV +1512296 ? Measurement of prompt and nonprompt $\mathrm{J}/{\psi }$ production in $\mathrm {p}\mathrm {p}$ and $\mathrm {p}\mathrm {Pb}$ collisions at $\sqrt{s_{\mathrm {NN}}} =5.02\,\text {TeV} $ +1512924 ? Measurement of the cross section for electroweak production of Z$\gamma$ in association with two jets and constraints on anomalous quartic gauge couplings in proton–proton collisions at $\sqrt{s} = 8$ TeV +1513926 . The Triple GEM Detector Control System for CMS forward muon spectrometer upgrade +1514542 X Search for standard model production of four top quarks in proton-proton collisions at $\sqrt{s}$ = 13 TeV +1516191 ! Measurement of double-differential cross sections for top quark pair production in pp collisions at $\sqrt{s} = 8$ $\,\text {TeV}$ and impact on parton distribution functions +1516193 ? Search for dark matter produced with an energetic jet or a hadronically decaying W or Z boson at $ \sqrt{s}=13 $ TeV +1516412 X Measurement of the top quark mass using single top quark events in proton-proton collisions at $\sqrt{s}= 8$  TeV +1517191 ? Search for third-generation scalar leptoquarks and heavy right-handed neutrinos in final states with two tau leptons and two jets in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1517496 ? Search for associated production of dark matter with a Higgs boson decaying to $ \mathrm{b}\overline{\mathrm{b}} $ or $\gamma \gamma$ at $ \sqrt{s}=13$ TeV +1518145 X Search for anomalous couplings in boosted $\mathrm{ WW/WZ }\to\ell\nu\mathrm{ q \bar{q} }$ production in proton-proton collisions at $\sqrt{s} =$ 8 TeV +1518399 . Measurement of the jet mass in highly boosted ${\mathrm{t}}\overline{\mathrm{t}}$ events from pp collisions at $\sqrt{s}=8$ $\,\text {TeV}$ +1518400 ? Search for a heavy resonance decaying to a top quark and a vector-like top quark at $ \sqrt{s}=13 $ TeV +1519995 . Search for new physics with dijet angular distributions in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1589287 ? Measurements of the pp $\to W\gamma\gamma$ and pp $\to Z\gamma\gamma$ cross sections and limits on anomalous quartic gauge couplings at $ \sqrt{s}=8 $ TeV +1591147 ? Search for $ \mathrm{t}\overline{\mathrm{t}} $ resonances in highly boosted lepton+jets and fully hadronic final states in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1593762 X Measurement of the top quark mass in the dileptonic $t\bar{t}$ decay channel using the mass observables $M_{b\ell}$, $M_{T2}$, and $M_{b\ell\nu}$ in pp collisions at $\sqrt{s}=8$ TeV +1594731 ? Search for physics beyond the standard model in events with two leptons of same sign, missing transverse momentum, and jets in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $ +1594909 . Search for supersymmetry in multijet events with missing transverse momentum in proton-proton collisions at 13 TeV +1598036 ? Search for black holes in high-multiplicity final states in proton-proton collisions at $ \sqrt{s}=$13 TeV +1598460 ! Measurement of the triple-differential dijet cross section in proton-proton collisions at $\sqrt{s}=8\,\text {TeV} $ and constraints on parton distribution functions +1598467 X Search for Charged Higgs Bosons Produced via Vector Boson Fusion and Decaying into a Pair of $W$ and $Z$ Bosons Using $pp$ Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$ +1599400 ? Search for new phenomena with the $M_{\mathrm {T2}}$ variable in the all-hadronic final state produced in proton–proton collisions at $\sqrt{s} = 13$ $\,\text {TeV}$ +1599402 ? Search for Supersymmetry in $pp$ Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$ in the Single-Lepton Final State Using the Sum of Masses of Large-Radius Jets +1599548 ? Measurement of the ${B}^{\pm}$ Meson Nuclear Modification Factor in Pb-Pb Collisions at $\sqrt{{s}_{NN}}=5.02\text{ }\text{ }\mathrm{TeV}$ +1601294 X Combination of searches for heavy resonances decaying to WW, WZ, ZZ, WH, and ZH boson pairs in proton–proton collisions at $\sqrt{s}=8$ and 13 TeV +1601505 ! Measurements of $t\bar{t}$ cross sections in association with $b$ jets and inclusive jets and their ratio using dilepton final states in pp collisions at $\sqrt{s}$ = 13 TeV +1601645 ? Search for Low Mass Vector Resonances Decaying to Quark-Antiquark Pairs in Proton-Proton Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$ +1601901 X Search for top quark partners with charge 5/3 in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1603635 ? Search for dark matter produced in association with heavy-flavor quark pairs in proton-proton collisions at $\sqrt{s}=13$ TeV +1604273 ? Search for pair production of vector-like T and B quarks in single-lepton final states using boosted jet substructure in proton-proton collisions at $\sqrt{s}=13$ TeV +1604886 ? Search for new physics in the monophoton final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1605124 ? Searches for W′ bosons decaying to a top quark and a bottom quark in proton-proton collisions at 13 TeV +1605128 ? Search for top squark pair production in pp collisions at $ \sqrt{s}=13 $ TeV using single lepton events +1605397 X Particle-flow reconstruction and global event description with the CMS detector +1605749 ! Measurements of jet charge with dijet events in pp collisions at $\sqrt{s}=8$ TeV +1605750 ? Suppression of Excited $\Upsilon$ States Relative to the Ground State in Pb-Pb Collisions at $\sqrt{s_\mathrm{NN}}$=5.02 TeV +1607560 ? Measurement of the semileptonic $ \mathrm{t}\overline{\mathrm{t}} $ + γ production cross section in pp collisions at $ \sqrt{s}=8 $ TeV +1607561 . Exclusive and semi-exclusive pi+pi- production in proton-proton collisions at sqrt(s) = 7 TeV +1607793 ? Search for a heavy composite Majorana neutrino in the final state with two leptons and two quarks at $\sqrt{s}=13$ TeV +1608161 ? Search for electroweak production of charginos and neutralinos in WH events in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1608162 X Measurements of properties of the Higgs boson decaying into the four-lepton final state in pp collisions at $ \sqrt{s}=13 $ TeV +1608166 . Measurement of charged pion, kaon, and proton production in proton-proton collisions at $\sqrt{s}=13$ TeV +1608383 X Search for Higgs boson pair production in the $bb\tau\tau$ final state in proton-proton collisions at $\sqrt{(}s)=8\text{ }\text{ }\mathrm{TeV}$ +1608386 X Constraints on anomalous Higgs boson couplings using production and decay information in the four-lepton final state +1608556 . P-Type Silicon Strip Sensors for the new CMS Tracker at HL-LHC +1608774 ? Search for heavy resonances that decay into a vector boson and a Higgs boson in hadronic final states at $\sqrt{s} = 13$ $\,\text {TeV}$ +1609262 ? Search for Higgs boson pair production in events with two bottom quarks and two tau leptons in proton–proton collisions at $\sqrt s$ =13TeV +1609449 ? Search for direct production of supersymmetric partners of the top quark in the all-jets final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1609450 ? Search for natural supersymmetry in events with top quark pairs and photons in pp collisions at $\sqrt{s} =$ 8 TeV +1610623 ! Measurement of the differential cross sections for the associated production of a $W$ boson and jets in proton-proton collisions at $\sqrt{s}=13$ TeV +1610629 ? Search for supersymmetry in events with at least one photon, missing transverse momentum, and large transverse event activity in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1611299 ? Search for the pair production of third-generation squarks with two-body decays to a bottom or charm quark and a neutralino in proton–proton collisions at $\sqrt{s}$ = 13 TeV +1611300 X Search for a light pseudoscalar Higgs boson produced in association with bottom quarks in pp collisions at $ \sqrt{s}=8 $ TeV +1613900 X Observation of the Higgs boson decay to a pair of $\tau$ leptons with the CMS detector +1614320 ? Search for single production of a vector-like T quark decaying to a Z boson and a top quark in proton-proton collisions at $\sqrt s$ = 13 TeV +1614482 . Constraints on the chiral magnetic effect using charge-dependent azimuthal correlations in $p\mathrm{Pb}$ and PbPb collisions at the CERN Large Hadron Collider +1614779 ? Search for vectorlike light-flavor quark partners in proton-proton collisions at $\sqrt s$ =8  TeV +1615207 ? Measurement of vector boson scattering and constraints on anomalous quartic couplings from events with four leptons and two jets in proton–proton collisions at $\sqrt{s}=$ 13 TeV +1615780 . Measurement of prompt $D^0$ meson azimuthal anisotropy in Pb-Pb collisions at $\sqrt{{s}_{NN}}$ = 5.02 TeV +1615868 ? Search for resonant and nonresonant Higgs boson pair production in the $ \mathrm{b}\overline{\mathrm{b}}\mathit{\ell \nu \ell \nu } $ final state in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1616207 . Nuclear modification factor of D$^0$ mesons in PbPb collisions at $\sqrt{s_\mathrm{NN}} = 5.02$ TeV +1616497 ? Search for massive resonances decaying into $WW$, $WZ$, $ZZ$, $qW$, and $qZ$ with dijet final states at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$ +1618346 . Principal-component analysis of two-particle azimuthal correlations in PbPb and $p\text{Pb}$ collisions at CMS +1620050 ! Measurement of normalized differential $ \mathrm{t}\overline{\mathrm{t}} $ cross sections in the dilepton channel from pp collisions at $ \sqrt{s}=13 $ TeV +1620205 X Search for Evidence of the Type-III Seesaw Mechanism in Multilepton Final States in Proton-Proton Collisions at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$ +1620470 ? Search for heavy resonances decaying to a top quark and a bottom quark in the lepton+jets final state in proton–proton collisions at 13 TeV +1620518 . Challenges to the chiral magnetic wave using charge-dependent azimuthal anisotropies in pPb and PbPb collisions at $\sqrt{\smash[b]{s_{_{\mathrm{NN}}}}} = $ 5.02 TeV +1620905 ! Measurement of the Splitting Function in $pp$ and Pb-Pb Collisions at $\sqrt{s_{_{\mathrm{NN}}}} =$ 5.02 TeV +1621281 ? Search for supersymmetry with Higgs boson to diphoton decays using the razor variables at $\sqrt{s} = $ 13 TeV +1623562 ? Search for Higgsino pair production in $pp$ collisions at $\sqrt{s}$ = 13  TeV in final states with large missing transverse momentum and two Higgs bosons decaying via $H \to b \bar b$ +1624165 ! Search for electroweak production of charginos and neutralinos in multilepton final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1624166 ? Inclusive search for a highly boosted Higgs boson decaying to a bottom quark-antiquark pair +1624170 X Observation of electroweak production of same-sign W boson pairs in the two jet and two same-sign lepton final state in proton-proton collisions at $\sqrt{s} = $ 13 TeV +1624694 X Observation of top quark production in proton-nucleus collisions +1625108 X Evidence for the Higgs boson decay to a bottom quark–antiquark pair +1625296 ? Measurements of the $\mathrm {p}\mathrm {p}\rightarrow \mathrm{Z}\mathrm{Z}$ production cross section and the $\mathrm{Z}\rightarrow 4\ell $ branching fraction, and constraints on anomalous triple gauge couplings at $\sqrt{s} = 13\,\text {TeV} $ +1625745 ! Search for new phenomena in final states with two opposite-charge, same-flavor leptons, jets, and missing transverse momentum in pp collisions at $ \sqrt{s}=13 $ TeV +1625783 . Brightness and uniformity measurements of plastic scintillator tiles at the CERN H2 test beam +1626103 ? Observation of Correlated Azimuthal Anisotropy Fourier Harmonics in $pp$ and $p+Pb$ Collisions at the LHC +1627612 ? Search for supersymmetry in events with one lepton and multiple jets exploiting the angular correlation between the lepton and the missing transverse momentum in proton-proton collisions at $\sqrt{s} = $ 13 TeV +1628094 ? Search for low mass vector resonances decaying into quark-antiquark pairs in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1628648 ? Search for pair production of vector-like quarks in the bW$\overline{\mathrm{b}}$W channel from proton-proton collisions at $\sqrt{s} =$ 13 TeV +1629153 ! Study of dijet events with a large rapidity gap between the two leading jets in pp collisions at $\sqrt{s}=7$ $\,\text {TeV}$ +1629160 ? Measurement of angular parameters from the decay $\mathrm{B}^0 \to \mathrm{K}^{*0} \mu^+ \mu^-$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV +1630635 ? Search for a massive resonance decaying to a pair of Higgs bosons in the four b quark final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1631982 ! Pseudorapidity and transverse momentum dependence of flow harmonics in pPb and PbPb collisions +1631985 ! Measurement of differential cross sections in the kinematic angular variable $\phi^*$ for inclusive Z boson production in pp collisions at $\sqrt{s}=$ 8 TeV +1632444 X Measurement of b hadron lifetimes in pp collisions at $\sqrt{s} =$ 8 TeV +1632447 ? Search for supersymmetry in events with at least three electrons or muons, jets, and missing transverse momentum in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1632453 ! Pseudorapidity distributions of charged hadrons in proton-lead collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 and 8.16 TeV +1633423 X Search for standard model production of four top quarks with same-sign and multilepton final states in proton–proton collisions at $\sqrt{s} = 13\,\text {TeV} $ +1633431 ? Measurement of quarkonium production cross sections in pp collisions at $\sqrt{s}=$ 13 TeV +1633588 ? Search for supersymmetry in proton-proton collisions at 13 TeV using identified top quarks +1633763 ! Search for new physics in events with a leptonically decaying Z boson and a large transverse momentum imbalance in proton–proton collisions at $\sqrt{s} $ = 13 $\,\text {TeV}$ +1634253 ? Search for top squarks and dark matter particles in opposite-charge dilepton final states at $\sqrt{s}=$ 13 TeV +1634835 . Measurement of associated Z + charm production in proton-proton collisions at $\sqrt{s} = $ 8 TeV +1634843 . Measurement of the cross section for top quark pair production in association with a W or Z boson in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1635271 ? Measurement of the inclusive $ \mathrm{t}\overline{\mathrm{t}} $ cross section in pp collisions at $ \sqrt{s}=5.02 $ TeV using final states with at least one charged lepton +1635889 . Measurement of the underlying event activity in inclusive Z boson production in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1635891 X Search for ZZ resonances in the 2$\ell$2$\nu$ final state in proton-proton collisions at 13 TeV +1635896 ? Search for excited quarks of light and heavy flavor in $\gamma +$ jet final states in proton–proton collisions at $\sqrt{s} =$ 13TeV +1636197 . Non-Gaussian elliptic-flow fluctuations in PbPb collisions at $\sqrt{\smash[b]{s_{_\text{NN}}}} = 5.02$ TeV +1637580 ? Search for gauge-mediated supersymmetry in events with at least one photon and missing transverse momentum in pp collisions at $\sqrt{s} = $ 13 TeV +1638988 ? Search for new long-lived particles at $\sqrt{s} =$ 13 TeV +1638996 . Study of jet quenching with isolated-photon+jet correlations in PbPb and pp collisions at $\sqrt{s_{_{\mathrm{NN}}}} =$ 5.02 TeV +1639443 ? Search for pair production of excited top quarks in the lepton + jets final state +1641267 ? Constraints on the double-parton scattering cross section from same-sign W boson pair production in proton-proton collisions at $ \sqrt{s}=8 $ TeV +1641762 ? Search for new physics in final states with an energetic jet or a hadronically decaying $W$ or $Z$ boson and transverse momentum imbalance at $\sqrt{s}=13\text{ }\text{ }\mathrm{TeV}$ +1641763 ? Search for the flavor-changing neutral current interactions of the top quark and the Higgs boson which decays into a pair of b quarks at $\sqrt{s}=$ 13 TeV +1642230 ? Measurement of the associated production of a single top quark and a Z boson in pp collisions at $\sqrt{s} =$ TeV +1642233 ? Search for Z$\gamma$ resonances using leptonic and hadronic final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1643640 . Azimuthal correlations for inclusive 2-jet, 3-jet, and 4-jet events in pp collisions at $\sqrt{s}= $ 13 TeV +1643829 X Search for the X(5568) state decaying into $\mathrm{B}^{0}_{\mathrm{s}}\pi^{\pm}$ in proton-proton collisions at $\sqrt{s} = $ 8 TeV +1644362 X Identification of heavy-flavour jets with the CMS detector in pp collisions at 13 TeV +1644363 ? Search for lepton flavour violating decays of the Higgs boson to $\mu\tau$ and e$\tau$ in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1644364 . Bose-Einstein correlations in $pp, p\mathrm{Pb}$, and PbPb collisions at $\sqrt{{s}_{NN}}=0.9-7$ TeV +1644788 ? Search for Physics Beyond the Standard Model in Events with High-Momentum Higgs Bosons and Missing Transverse Momentum in Proton-Proton Collisions at 13 TeV +1644901 ! Search for $R$-parity violating supersymmetry in pp collisions at $\sqrt{s} = $ 13 TeV using b jets in a final state with a single lepton, many jets, and high sum of large-radius jet masses +1644903 . Measurement of prompt and nonprompt charmonium suppression in $\text {PbPb}$ collisions at 5.02 $\,\text {Te}\text {V}$ +1645246 ? Electroweak production of two jets in association with a Z boson in proton–proton collisions at $\sqrt{s}= $ 13 $\,\text {TeV}$ +1645630 ? Search for decays of stopped exotic long-lived particles produced in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1646260 . Search for new physics in events with two soft oppositely charged leptons and missing transverse momentum in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1646584 . Radioactive source calibration test of the CMS Hadron Endcap Calorimeter test wedge with Phase I upgrade electronics +1647562 . Measurement of the $\mathrm{Z}\gamma^{*} \to \tau\tau$ cross section in pp collisions at $\sqrt{s} = $ 13 TeV and validation of $\tau$ lepton analysis techniques +1647947 ! Combined search for electroweak production of charginos and neutralinos in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1648162 ! Observation of medium induced modifications of jet fragmentation in PbPb collisions using isolated-photon-tagged jets +1650462 . Search for dark matter in events with energetic, hadronically decaying top quarks and missing transverse momentum at $ \sqrt{s}=13 $ TeV +1652833 . Comparing transverse momentum balance of b jet pairs in pp and PbPb collisions at $ \sqrt{s_{\mathrm{NN}}}=5.02 $ TeV +1653123 . Search for lepton-flavor violating decays of heavy resonances and quantum black holes to eμ final states in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1653127 . Search for single production of vector-like quarks decaying to a b quark and a Higgs boson +1653451 . Search for natural and split supersymmetry in proton-proton collisions at $ \sqrt{s}=13 $ TeV in final states with jets and missing transverse momentum +1653948 ! Measurement of the inelastic proton-proton cross section at $ \sqrt{s}=13 $ TeV +1653954 . Search for heavy neutral leptons in events with three charged leptons in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1654926 ? Measurement of the $\Lambda_b$ polarization and angular parameters in $\Lambda_b\to J/\psi\, \Lambda$ decays from pp collisions at $\sqrt{s}=$ 7 and 8 TeV +1655968 . Search for narrow resonances in the b-tagged dijet mass spectrum in proton-proton collisions at $\sqrt{s} =$ 8 TeV +1656983 . Quality control for the first large areas of triple-GEM chambers for the CMS endcaps +1657397 . Search for a heavy resonance decaying to a pair of vector bosons in the lepton plus merged jet final state at $ \sqrt{s}=13 $ TeV +1658057 . Jet properties in PbPb and pp collisions at $ \sqrt{s_{\mathrm{N}\;\mathrm{N}}}=5.02 $ TeV +1659106 . Search for third-generation scalar leptoquarks decaying to a top quark and a $\tau$ lepton at $\sqrt{s}=$ 13 TeV +1662008 . Test beam demonstration of silicon microstrip modules with transverse momentum discrimination for the future CMS tracking detector +1662081 . Measurements of differential cross sections of top quark pair production as a function of kinematic event variables in proton-proton collisions at $ \sqrt{s}=13 $ TeV +1662083 . Search for a heavy resonance decaying into a Z boson and a vector boson in the $ \nu \overline{\nu}\mathrm{q}\overline{\mathrm{q}} $ final state +1662293 . Observation of proton-tagged, central (semi)exclusive production of high-mass lepton pairs in pp collisions at 13 TeV with the CMS-TOTEM precision proton spectrometer +1662661 X Evidence for associated production of a Higgs boson with a top quark pair in final states with electrons, muons, and hadronically decaying $\tau$ leptons at $\sqrt{s} =$ 13 TeV +1662926 ! Search for high-mass resonances in dilepton final states in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1663234 ? Search for additional neutral MSSM Higgs bosons in the $\tau\tau$ final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1663385 X Search for $\mathrm{t}\overline{\mathrm{t}}$H production in the all-jet final state in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1663452 . Search for new physics in dijet angular distributions using proton-proton collisions at $\sqrt{s}=$ 13 TeV and constraints on dark matter and other models +1663958 ! Measurement of differential cross sections for the production of top quark pairs and of additional jets in lepton+jets events from pp collisions at $\sqrt{s} =$ 13 TeV +1664330 . Search for a heavy resonance decaying into a Z boson and a Z or W boson in 2ℓ2q final states at $ \sqrt{s}=13 $ TeV +1665226 . Search for a heavy right-handed W boson and a heavy neutrino in events with two same-flavor leptons and two jets at $\sqrt{s}=$ 13 TeV +1665228 ! Search for high-mass resonances in final states with a lepton and missing transverse momentum at $ \sqrt{s}=13 $ TeV +1666019 . Search for a new scalar resonance decaying to a pair of Z bosons in proton-proton collisions at $\sqrt{s}=13 $ TeV +1666824 X Observation of $\mathrm{t\overline{t}}$H production +1666825 X Measurements of Higgs boson properties in the diphoton decay channel in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1667189 X Search for $\mathrm{t\overline{t}}$H production in the $H\to\mathrm{b\overline{b}}$ decay channel with leptonic $\mathrm{t\overline{t}}$ decays in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1667449 X Performance of the CMS muon detector and muon reconstruction with proton-proton collisions at $\sqrt{s}=$ 13 TeV +1667854 ! Measurement of differential cross sections for Z boson production in association with jets in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1669245 . Search for disappearing tracks as a signature of new long-lived particles in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1670168 ! Elliptic flow of charm and strange hadrons in high-multiplicity pPb collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 8.16 TeV +1671499 X Measurement of the top quark mass with lepton+jets final states using pp collisions at $\sqrt{s}=$ 13 TeV +1672011 . Measurement of prompt $\psi$(2S) production cross sections in proton-lead and proton-proton collisions at $\sqrt{s_{_\mathrm{NN}}}=$ 5.02 TeV +1672941 X Constraining gluon distributions in nuclei using dijets in proton-proton and proton-lead collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 TeV +1672962 ! Measurement of the groomed jet mass in PbPb and pp collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 TeV +1672970 . Search for vector-like T and B quark pairs in final states with leptons at $\sqrt{s} =$ 13 TeV +1673011 . Search for an exotic decay of the Higgs boson to a pair of light pseudoscalars in the final state of two muons and two $\tau$ leptons in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1673197 . Search for top squarks decaying via four-body or chargino-mediated modes in single-lepton final states in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1673362 . Search for black holes and sphalerons in high-multiplicity final states in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1674077 ? Measurement of the production cross section for single top quarks in association with W bosons in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1674529 . Measurement of nuclear modification factors of $\Upsilon$(1S), $\Upsilon$(2S), and $\Upsilon$(3S) mesons in PbPb collisions at $\sqrt{s_{_\mathrm{NN}}} =$ 5.02 TeV +1674926 . Search for an exotic decay of the Higgs boson to a pair of light pseudoscalars in the final state with two b quarks and two $\tau$ leptons in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1674927 . Constraints on models of scalar and vector leptoquarks decaying to a quark and a neutrino at $\sqrt{s}=$ 13 TeV +1675256 X Observation of the $\chi_\mathrm{b1}$(3P) and $\chi_\mathrm{b2}$(3P) and measurement of their masses +1675818 ? Search for beyond the standard model Higgs bosons decaying into a $\mathrm{b\overline{b}}$ pair in pp collisions at $\sqrt{s} =$ 13 TeV +1676092 ? Search for Higgs boson pair production in the $\gamma\gamma\mathrm{b\overline{b}}$ final state in pp collisions at $\sqrt{s}=$ 13 TeV +1676212 ? Angular analysis of the decay B$^+$$\to$ K$^+\mu^+\mu^-$ in proton-proton collisions at $\sqrt{s} =$ 8 TeV +1676214 . Search for narrow and broad dijet resonances in proton-proton collisions at $ \sqrt{s}=13 $ TeV and constraints on dark matter mediators and other new particles +1676216 ? Measurement of the weak mixing angle using the forward-backward asymmetry of Drell-Yan events in pp collisions at 8 TeV +1676219 . Search for pair-produced resonances each decaying into at least four quarks in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1677275 ? Search for a singly produced third-generation scalar leptoquark decaying to a $\tau$ lepton and a bottom quark in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1677276 . Search for resonant pair production of Higgs bosons decaying to bottom quark-antiquark pairs in proton-proton collisions at 13 TeV +1677496 ? Observation of the Z$\to\psi\ell^+\ell^-$ decay in pp collisions at $\sqrt{s}=$ 13 TeV +1677677 . Search for dark matter produced in association with a Higgs boson decaying to $\gamma\gamma$ or $\tau^+\tau^-$ at $\sqrt{s} =$ 13 TeV +1677887 ? Measurements of properties of the Higgs boson decaying to a W boson pair in pp collisions at $\sqrt{s}=$ 13 TeV +1677905 . Search for supersymmetric partners of electrons and muons in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1678088 . Search for the decay of a Higgs boson in the $\ell\ell\gamma$ channel in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1680021 . Search for heavy Majorana neutrinos in same-sign dilepton channels in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1680022 ! Measurement of differential cross sections for Z boson pair production in association with jets at $\sqrt{s}=$ 8 and 13 TeV +1680298 . RPC upgrade project for CMS Phase II +1680318 ! Measurement of charged particle spectra in minimum-bias events from proton–proton collisions at $\sqrt{s}=13\,\text {TeV} $ +1680459 . Measurement of differential cross sections for inclusive isolated-photon and photon+jets production in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1681016 . Search for supersymmetry in events with a $\tau$ lepton pair and missing transverse momentum in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1681435 ! Study of the underlying event in top quark pair production in pp collisions at 13 TeV +1681436 . Search for heavy resonances decaying into a vector boson and a Higgs boson in final states with charged leptons, neutrinos and b quarks at $\sqrt{s}=$ 13 TeV +1681748 ! Measurement of inclusive and differential Higgs boson production cross sections in the diphoton decay channel in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1682069 X Precision measurement of the structure of the CMS inner tracking system using nuclear interactions +1682495 ! Measurements of the differential jet cross section as a function of the jet mass in dijet events from proton-proton collisions at $\sqrt{s} =$ 13 TeV +1682776 . Search for the Higgs boson decaying to two muons in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1682779 . Search for dark matter particles produced in association with a top quark pair at $\sqrt{s} =$ 13 TeV +1683312 . Searches for pair production of charginos and top squarks in final states with two oppositely charged leptons in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1684340 . Search for a W' boson decaying to a $\tau$ lepton and a neutrino in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1685054 . Search for narrow H$\gamma$ resonances in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1685201 . Search for resonances in the mass spectrum of muon pairs produced in association with b quark jets in proton-proton collisions at $\sqrt{s} =$ 8 and 13 TeV +1685232 . Search for production of Higgs boson pairs in the four b quark final state using large-area jets in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1685235 . Search for heavy resonances decaying into two Higgs bosons or into a Higgs boson and a W or Z boson in proton-proton collisions at 13 TeV +1685989 . Search for pair-produced resonances decaying to quark pairs in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1685992 . Search for long-lived particles with displaced vertices in multijet events in proton-proton collisions at $\sqrt{s}= $13 TeV +1686000 . Evidence for the associated production of a single top quark and a photon in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1686833 . Search for an $L_{\mu}-L_{\tau}$ gauge boson using Z$\to4\mu$ events in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1687544 . Search for pair production of second-generation leptoquarks at $\sqrt{s}=$ 13 TeV +1688938 . Search for a charged Higgs boson decaying to charm and bottom quarks in proton-proton collisions at $\sqrt{s} =$ 8 TeV +1690148 . Measurement of jet substructure observables in $\mathrm{t\overline{t}}$ events from proton-proton collisions at $\sqrt{s}=$ 13TeV +1691854 . Observation of Higgs boson decay to bottom quarks +1692558 . Charged-particle nuclear modification factors in XeXe collisions at $\sqrt{s_\mathrm{NN}}=$ 5.44 TeV +1692559 . Search for physics beyond the standard model in high-mass diphoton events from proton-proton collisions at $\sqrt{s} =$ 13 TeV +1693412 . Performance of reconstruction and identification of $\tau$ leptons decaying to hadrons and $\nu_\tau$ in pp collisions at $\sqrt{s}=$ 13 TeV +1693614 . Studies of B$^*_\mathrm{s2}(5840)^0$ and B$_\mathrm{s1}(5830)^0$ mesons including the observation of the B$^*_\mathrm{s2}(5840)^0\to$ B$^0$K$_\mathrm{S}^0$ decay in proton-proton collisions at $\sqrt{s}=$8 TeV +1693616 . Search for the associated production of the Higgs boson and a vector boson in proton-proton collisions at $\sqrt{s}=$ 13 TeV via Higgs boson decays to $\tau$ leptons +1694380 . Search for invisible decays of a Higgs boson produced through vector boson fusion in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1694381 . Search for leptoquarks coupled to third-generation quarks in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1695278 . Jet shapes of isolated photon-tagged jets in PbPb and pp collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV +1695301 . Search for single production of vector-like quarks decaying to a top quark and a W boson in proton-proton collisions at $\sqrt{s} =$ 13 TeV +1696325 . Measurement of exclusive $\Upsilon$ photoproduction from protons in pPb collisions at $\sqrt{s_\mathrm{NN}} =$ 5.02 TeV +1696607 . Combined measurements of Higgs boson couplings in proton-proton collisions at $\sqrt{s}=$ 13 TeV +1696608 . Search for new physics in final states with a single photon and missing transverse momentum in proton--proton collisions at $\sqrt{s} =$ 13 TeV +1696868 . Observation of prompt J/$\psi$ meson elliptic flow in high-multiplicity pPb collisions at $\sqrt{s_\mathrm{NN}} =$ 8.16 TeV diff --git a/doc/rivet-coverage-lhcb.rank b/doc/rivet-coverage-lhcb.rank --- a/doc/rivet-coverage-lhcb.rank +++ b/doc/rivet-coverage-lhcb.rank @@ -1,431 +1,453 @@ -1285983 . Prompt $K_{S}^{0}$ production in $pp$ collisions at $\sqrt{s}$ = 0.9 TeV -1291838 . Measurement of $\sigma (pp \to b\overline{b}X)$ at $\sqrt{s}$=7 TeV in the forward region -1326226 ? First observation of $B^{0}_{s} \to J/\psi f_{0}$(980) decays -1326409 ? First observation of $\overline{B}^{0}_{s} \to D^{*+}_{s2}X\mu^{-}\overline{\nu}$ decays -1333554 ? Measurement of $J/\psi$ production in $pp$ collisions at $\sqrt{s}$ = 7 TeV -1335686 ? Search for the rare decays $B^{0}_{s} \to \mu^{+} \mu^{-}$ and $B^{0} \to \mu^{+} \mu^{-}$ -1361194 X Determination of $f_s/f_d$ for 7 TeV $pp$ collisions and a measurement of the branching fraction of the decay $B^0 \to D^{-}K^{+}$ -1365203 . Measurement of $V^0$ production ratios in $pp$ collisions at $\sqrt{s}$ = 0.9 and 7 TeV -1369245 . Measurement of the inclusive $\phi$ cross-section in pp collisions at $\sqrt{s}$ = 7 TeV -1376436 X Observation of J/$\psi$ pair production in pp collisions at $\sqrt{s}$=7 TeV -1386906 ? Measurements of the Branching fractions for $B_{(s)} \to D_{(s)}\pi\pi\pi$ and $\Lambda_b^0 \to \Lambda_c^+\pi\pi\pi$ -1387555 ? Search for the lepton number violating decays $B^{+}\rightarrow \pi^- \mu^+ \mu^+$ and $B^{+}\rightarrow K^- \mu^+ \mu^+$ -1389907 X Absolute luminosity measurements with the LHCb detector at the LHC -1390818 X First observation of the decay $\bar{B}^0_s \to D^0 K^{*0}$ and a measurement of the ratio of branching fractions $\frac{{\cal B}(\bar{B}^0_s \to D^0 K^{*0})}{{\cal B}(\bar{B}^0 \to D^0 \rho^0)}$ -1392074 X Search for CP violation in $D^{+} \to K^{-}K^{+}\pi^{+}$ decays -1395376 . Measurement of the effective $B^0_s \rightarrow K^+K^-$ lifetime -1397967 . Measurement of b hadron production fractions in 7 TeV pp collisions -1399527 X First observation of the decay $B^0_s \to K^{*0} \overline{K}^{*0}$ -1404248 ? Evidence for CP violation in time-integrated $D^0 \rightarrow h^-h^+$ decay rates -1405625 ? Search for the rare decays $B^0_s \to \mu^+\mu^-$ and $B^0 \to \mu^+\mu^-$ -1407249 X Measurement of the CP violating phase $\phi_s$ in $\overline{B}^0_s \to J/\psi f_0(980)$ -1407364 X Measurement of the CP-violating phase $\phi_s$ in the decay $B^{0}_s \to J/\psi \phi$ -1407703 X Differential branching fraction and angular analysis of the decay $B^{0} \rightarrow K^{*0} \mu^+ \mu^-$ -1408543 ? Measurement of the $B^0_s-\overline{B}^0_s$ oscillation frequency $\Delta m_s$ in $B^0_s \to D^-_s (3)\pi$ decays -1408929 . Measurement of charged particle multiplicities in $pp$ collisions at $\sqrt{s}$ = 7 TeV in the forward region -1409017 X Observation of $\overline{B}^0_s \to J/\psi f'_2(1525)$ in $J/\psi K^+K^-$ final states -1409020 X Measurement of mixing and CP violation parameters in two-body charm decays -1409231 ? Measurement of $b$-hadron masses -1409611 X Observation of X(3872) production in $pp$ collisions at $\sqrt{s}=7$ TeV -1418432 ? First observation of the decays $\overline{B}^0 \to D^+ K^- \pi^+ \pi^-$ and $B^- \to D^0 K^- \pi^+ \pi^-$ -1419711 ? Searches for Majorana neutrinos in $B^-$ decays -1422205 ? Measurement of the cross-section ratio $\sigma(\chi_{c2})/\sigma(\chi_{c1})$ for prompt $\chi_c$ production at $\sqrt{s}=7$ TeV -1426202 X Determination of the sign of the decay width difference in the $B^0_s$ system -1426366 X Measurement of the $B^\pm$ production cross-section in $pp$ collisions at $\sqrt{s}=7$ TeV -1426509 X Opposite-side flavour tagging of $B$ mesons at the LHCb experiment -1426777 ? Search for the $X(4140)$ state in $B^+\to J/\psi\phi K^+$ decays -1427771 X First evidence of direct $C\!P$ violation in charmless two-body decays of $B^0_s$ mesons -1427958 X Measurement of the ratio of branching fractions ${\cal B}(B^0 \to K^{\ast 0} \gamma)/{\cal B}(B^0_s \to \phi \gamma)$ -1428338 . Measurement of $\Upsilon$ production in $pp$ collisions at $\sqrt{s} = 7$ TeV -1432716 X Measurements of the branching fractions and $C\!P$ asymmetries of $B^{\pm} \to J\!/\!\psi\, \pi^{\pm}$ and $B^{\pm} \to \psi(2S) \pi^{\pm}$ decays -1432778 X Observation of $C\!P$ violation in $B^\pm \to D K^\pm$ decays -1433643 X Strong constraints on the rare decays $B^0_s \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$ -1436608 X First observation of decay $B_c^+\to J/\psi \pi^+\pi^-\pi^+$ -1439213 X Measurement of the branching fractions of the decays $B_s^0 \rightarrow D_s^\mp K^\pm$ and $B_s^0 \rightarrow D_s^- \pi^+$ -1439233 X Measurement of $\psi$(2S) meson production in pp collisions at $\sqrt{s}$=7 TeV -1439446 ? Measurement of the ratio of prompt $\chi_{c}$ to $J/\psi$ production in $pp$ collisions at $\sqrt{s}=7$ TeV -1439627 . Inclusive $W$ and $Z$ production in the forward region at $\sqrt{s}$ = 7 TeV -1440824 X Measurement of the polarization amplitudes and triple product asymmetries in the $B_s^0 \to \phi\phi$ decay -1442963 X Implications of LHCb measurements and future prospects -1444074 X Analysis of the resonant components in $\overline{B}^0_s \to J/\psi\pi^+\pi^-$ -1444102 X Measurement of the CP-violating phase $\phi_s$ in $\overline{B}^0_s \to J/\psi\pi^+\pi^-$ decays -1446397 ? Measurement of the $D_s^+ - D_s^-$ production asymmetry in 7 TeV pp collisions -1446413 X Measurement of relative branching fractions of B decays to $\psi(2S)$ and $J/\psi$ mesons -1446426 X Measurement of the $B_s^0\to J/\psi K_S^0$ branching fraction -1446466 X Observation of double charm production involving open charm in pp collisions at $\sqrt{s}$=7 TeV -1449383 . Measurement of the isospin asymmetry in $B \to K^{(*)}\mu^+ \mu^-$ decays -1449410 . Observation of excited $\Lambda^0_b$ baryons -1456016 ? Measurement of $b$-hadron branching fractions for two-body decays into charmless charged hadrons -1457718 . Measurement of prompt hadron production ratios in $pp$ collisions at $\sqrt{s} = $ 0.9 and 7 TeV -1461290 X Measurement of the $\bar{B}^0_s$ effective lifetime in the $J/\psi f_0(980)$ final state -1464076 X Observation of $B^0 \to \bar{D}^0 K^+ K^-$ and evidence of $B^0_s \to \bar{D}^0 K^+ K^-$ -1470228 X Measurement of the effective $B_s^0 \to K^+ K^-$ lifetime -1470229 . Study of $D_{sJ}$ decays to $D^+K^0_{\rm S}$ and $D^0K^+$ final states in $pp$ collisions -1471720 X Measurement of the $B^0_s \rightarrow J/\psi \bar{K}^{*0}$ branching fraction and angular amplitudes -1475900 ? Measurement of the fraction of $\Upsilon(1S)$ originating from $\chi_b(1P)$ decays in $pp$ collisions at $\sqrt{s}$ = 7 TeV -1475901 X Measurement of the ratio of branching fractions $B(B^0 \to K^{\ast 0} \gamma) / B(B^0_s \to \phi \gamma)$ and the direct $C\!P$ asymmetry in $B^0 \to K^{\ast 0} \gamma$ -1478844 X Search for the rare decay $K_{\rm\scriptscriptstyle S}^0\rightarrow\mu^{+}\mu^{-}$ -1479052 X Differential branching fraction and angular analysis of the $B^+ \to K^+ \mu^+ \mu^-$ decay -1481419 ? Measurements of $B_c^+$ production and mass with the $B_c^+ \to J/\psi \pi^+$ decay -1481746 X A model-independent Dalitz plot analysis of $B^\pm \to D K^\pm$ with $D \to K^0_{\rm S} h^+h^-$ ($h=\pi, K$) decays and constraints on the CKM angle $\gamma$ -1483125 X First evidence for the annihilation decay mode $B^{+} \to D_{s}^{+} \phi$ -1484098 X Evidence for the decay $B^0 \to J/\psi \omega$ and measurement of the relative branching fractions of $B^0_s$ meson decays to $J/\psi \eta$ and $J/\psi \eta'$ -1484100 X First observation of the decay $B^+ \to \pi^+ \mu^+\mu^-$ -1484967 X Measurement of the $D^\pm$ production asymmetry in 7 TeV $pp$ collisions -1484973 X Measurement of the $C\!P$ asymmetry in $B^0 \to K^{*0} \mu^+ \mu^-$ decays -1489812 . A study of the $Z$ production cross-section in $pp$ collisions at $\sqrt{s}$ = 7 TeV using tau final states -1490187 X Measurement of the $B^0$--$\bar B^0$ oscillation frequency $\Delta m_d$ with the decays $B^0 \to D^- \pi^+$ and $B^0 \to J\ \psi K^{*0}$ -1490649 X Observation of $D^0 - \overline{D}^0$ oscillations -1492810 X First observation of the decays $\bar{B}^0_{(s)}\to D_s^+K^-\pi^+\pi^-$ and $\bar{B}^0_s\to D_{s1}(2536)^+\pi^-$ -1493302 X First Evidence for the Decay $B^0_s \to \mu^+\mu^-$ -1497268 X Measurement of the time-dependent $CP$ asymmetry in $B^0 \to J/\psi K^0_{\rm S}$ decays -1497269 X First observation of the $B_{s2}^\ast(5840)^0 \to B^{\ast+} K^-$ and studies of excited $B^0_s$ mesons -1498100 . Measurement of $J/\psi$ production in $pp$ collisions at $\sqrt{s}=2.76$ TeV -1498718 . Measurement of the forward energy flow in $pp$ collisions at $\sqrt{s}$= 7 TeV -1501937 . Measurement of the cross-section for $Z\to e^+e^-$ production in $pp$ collisions at $\sqrt{s} =7$ TeV -1502116 X Measurement of $CP$ observables in $B^0\to D K^{*0}$ with $D\to K^+K^-$ -1507868 . Measurement of the fragmentation fraction ratio $f_{s}/f_{d}$ and its dependence on $B$ meson kinematics -1509381 ? Analysis of the resonant components in $\overline{B}^0 \to J/\psi \pi^+ \pi^-$ -1513204 . Exclusive J/$\psi$ and $\psi$(2S) production in $pp$ collisions at $\sqrt{s} = 7$ TeV -1513637 X Measurement of the $\Lambda_b^0$, $\Xi_b^-$ and $\Omega_b^-$ baryon masses -1514177 X Amplitude analysis and the branching fraction measurement of $\bar{B}^0_s \to J/\psi K^+K^-$ -1514671 . Prompt charm production in $pp$ collisions at $\sqrt{s}$ = 7 TeV -1519200 X Determination of the $X(3872)$ meson quantum numbers -1519720 X Observation of the $B^0_{s}\to\psi{(2\mathrm{S})}\eta$ and $B^0_{(s)}\to\psi{(2\mathrm{S})}\pi^+\pi^-$ decays -1519726 ? Measurements of the $\Lambda_b^0 \to J/\psi \Lambda$ decay amplitudes and the $\Lambda_b^0$ polarisation in $pp$ collisions at $\sqrt{s} = 7$ TeV -1519899 X First observations of $\bar{B}_s^0\to D^+D^-$, $D_s^+D^-$ and $D^0\bar{D}^0$ decays -1519915 X Search for the decay $B_s^0 \to D^{*\mp} \pi^\pm$ -1525573 X Observation of the decay $B_c^+ \to \psi(2S)\pi^+$ -1525935 X Search for direct $CP$ violation in $D^0 \rightarrow h^- h^+$ modes using semileptonic $B$ decays -1528276 X Search for rare $B^0_{(s)}\rightarrow \mu^+ \mu^- \mu^+ \mu^-$ decays -1529913 X Observation of the suppressed ADS modes $B^\pm \to [\pi^\pm K^\mp \pi^+\pi^-]_D K^\pm$ and $B^\pm \to [\pi^\pm K^\mp \pi^+\pi^-]_D \pi^\pm$ -1530001 X Search for $CP$ violation in $D^{+} \to \phi \pi^{+}$ and $D_{s}^{+} \to K^{0}_{S} \pi^{+}$ decays -1536487 X First measurement of the $CP$-violating phase in $B_s^0 \to \phi \phi$ decays -1536653 X Measurements of the branching fractions of $B^{+} \to p \bar{p} K^{+}$ decays -1540265 X Measurement of $CP$ violation and the $B_s^0$ meson decay width difference with $B_s^0 \to J/\psi K^+K^-$ and $B_s^0\to J/\psi\pi^+\pi^-$ decays -1540488 X Limits on neutral Higgs boson production in the forward region in pp collisions at $\sqrt{s}=7$ TeV -1542368 X Differential branching fraction and angular analysis of the decay $B^{0} \rightarrow K^{*0} \mu^{+}\mu^{-}$ -1542463 X Searches for violation of lepton flavour and baryon number in tau lepton decays at LHCb -1542637 X Measurement of the effective $B_s^0\rightarrow J/\psi K_{\mathrm S}^0$ lifetime -1542639 X Observation of $B^+_c \rightarrow J/\psi D_s^+$ and $B^+_c \rightarrow J/\psi D_s^{*+}$ decays -1542642 X Precision measurement of the $B^0_s - \bar{B}^0_s$ oscillation frequency with the decay $B^0_s \to D^-_s \pi^+$ -1543894 X Measurement of the branching fractions of the decays $B^0_s \rightarrow \overline{D}^0 K^- \pi^+$ and $B^0 \rightarrow \overline{D}^0 K^+ \pi^-$ -1543929 X Search for $D^{+}_{(s)} \rightarrow \pi^{+} \mu^{+} \mu^{-}$ and $D^{+}_{(s)} \rightarrow \pi^{-} \mu^{+} \mu^{+}$ decays -1544029 X First observation of $CP$ violation in the decays of $B^0_s$ mesons -1544081 X Precision measurement of $D$ meson mass differences -1545268 X Measurement of the $B^0 \to K^{*0}e^+e^-$ branching fraction at low dilepton mass -1545745 . Production of $J/\psi$ and $\Upsilon$ mesons in $pp$ collisions at $\sqrt{s}$ = 8 TeV -1546406 X Differential branching fraction and angular analysis of the decay $B_s^0 \to \phi \mu^+\mu^-$ -1546538 X Measurement of the CKM angle $\gamma$ from a combination of $B^{\pm} \to Dh^{\pm}$ analyses -1547773 . Study of $B^{0} \rightarrow D^{*-}\pi^{+}\pi^{-}\pi^{+}$ and $B^{0} \rightarrow D^{*-}K^{+}\pi^{-}\pi^{+}$ decays -1550622 X Search for the rare decay $D^0 \to \mu^+ \mu^-$ -1551622 X Observation of $B^0_s\rightarrow\chi_{c1}\phi$ decay and study of $B^0\rightarrow\chi_{c1,2}K^{*0}$ decays -1553867 X Measurement of $C\!P$ violation in the phase space of $B^{\pm} \to K^{\pm} \pi^{+} \pi^{-}$ and $B^{\pm} \to K^{\pm} K^{+} K^{-}$ decays -1554424 X First observation of the decay $B_s^0 \rightarrow \phi \bar{K}^{*0}$ -1554694 ? Measurement of the differential branching fraction of the decay $\Lambda_b^0 \rightarrow \Lambda\mu^+\mu^-$ -1556179 . Measurement of $B$ meson production cross-sections in proton-proton collisions at $\sqrt{s}=$ 7 TeV -1556590 X Searches for $B^0_{(s)} \to J/\psi p\bar{p}$ and $B^+ \to J/\psi p\bar{p}\pi^+$ decays -1558819 X First observation of the decay $B_{c}^{+}\to J/\psi K^+$ -1561010 X Precision measurement of the $\Lambda_b^0$ baryon lifetime -1561290 ? Measurement of the polarization amplitudes in $B^0 \to J/\psi K^{*}(892)^0$ decays -1562878 ? Measurement of the relative rate of prompt $\chi_{c0}$, $\chi_{c1}$ and $\chi_{c2}$ production at $\sqrt{s}=7$TeV -1563070 X Search for the lepton-flavor violating decays $B^0_s \rightarrow e^{\pm}\mu^{\mp}$ and $B^0 \rightarrow e^{\pm} \mu^{\mp}$ -1563073 X Measurement of the $B^0_s \to \mu^+ \mu^-$ branching fraction and search for $B^0 \to \mu^+ \mu^-$ decays at the LHCb experiment -1563306 X Measurement of the flavour-specific $CP$-violating asymmetry $a_{\rm sl}^s$ in $B_s^0$ decays -1564281 ? Studies of the decays $B^+ \to p \bar p h^+$ and observation of $B^+ \to \kern 0.1em\bar{\kern -0.1em\Lambda}(1520)p$ -1565313 X Observation of a resonance in $B^+ \to K^+ \mu^+\mu^-$ decays at low recoil -1565519 ? Study of $D_J$ meson decays to $D^+\pi^-$, $D^0 \pi^+$ and $D^{*+}\pi^-$ final states in $pp$ collisions -1565812 . Measurement of $J/\psi$ polarization in $pp$ collisions at $\sqrt{s}=7$ TeV -1565942 X Study of $B_{\scriptscriptstyle (s)}^0 \to K_{\rm \scriptscriptstyle S}^0 h^{+} h^{\prime -}$ decays with first observation of $B_{\scriptscriptstyle s}^0 \to K_{\rm \scriptscriptstyle S}^0 K^{\pm} \pi^{\mp}$ and $B_{\scriptscriptstyle s}^0 \to K_{\rm \scriptscriptstyle S}^0 \pi^{+} \pi^{-}$ -1566753 X First evidence for the two-body charmless baryonic decay $B^0 \to p \bar{p}$ -1566950 X Branching fraction and $CP$ asymmetry of the decays $B^+ \to K_{\rm \scriptscriptstyle S}^0 \pi^+$ and $B^+ \to K_{\rm \scriptscriptstyle S}^0 K^+$ -1567090 X Observation of $B^0_s$-$\bar{B}^0_s$ mixing and measurement of mixing frequencies using semileptonic B decays -1569284 X First measurement of time-dependent $C\!P$ violation in $B^0_s \to K^+K^-$ decays -1578576 X Model-independent search for $CP$ violation in $D^{0} \to K^{-}K^{+}\pi^{-}\pi^{+}$ and $D^{0} \to \pi^{-}\pi^{+}\pi^{+}\pi^{-}$ decays -1595651 X First observation of $\overline{B}^0 \rightarrow J/\psi K^{+}K^{-}$ and search for $\overline{B}^0 \rightarrow J/\psi \phi$ decays -1596261 . Measurement of form-factor independent observables in the decay $B^{0} \to K^{*0} \mu^+ \mu^-$ -1596262 . Study of $J/\psi$ production and cold nuclear matter effects in $p$Pb collisions at $\sqrt{s_{NN}}$ = 5 TeV -1596264 X Measurement of the $C\!P$ asymmetry in $B^+ \rightarrow K^+ \mu^+ \mu^-$ decays -1596772 X Observation of the decay $B_c^+ \rightarrow J/\psi K^+ K^- \pi^+$ -1597081 X Observation of the decay $B_s^0\to\bar{D}^0\phi$ -1599721 X Observation of the decay $B_c^+ \to B_s^0 \pi^+$ -1600924 ? Measurement of the charge asymmetry in $B^{\pm}\rightarrow \phi K^{\pm}$ and search for $B^{\pm}\rightarrow \phi \pi^{\pm}$ decays -1603235 X Measurement of $D^{0}-\bar{D}^0$ mixing parameters and search for CP violation using $D^{0} \to K^{+}\pi^{-}$ decays -1607119 X Observation of $\bar{B}^0_{(s)}\rightarrow J/\psi f_1(1285)$ decays and measurement of the $f_1(1285)$ mixing angle -1607225 X Search for the doubly charmed baryon $\Xi_{cc}^+$ -1610802 X Search for the decay $D^0\to\pi^+\pi^-\mu^+\mu^-$ -1611718 X Measurement of CP violation in the phase space of $B^{\pm} \rightarrow K^{+} K^{-} \pi^{\pm}$ and $B^{\pm} \rightarrow \pi^{+} \pi^{-} \pi^{\pm}$ decays -1623125 X Search for CP violation in the decay $D^+ \to \pi^-\pi^+\pi^+$ -1623330 . Study of forward Z+jet production in pp collisions at $\sqrt{s}$ = 7 TeV -1624077 X Measurements of indirect CP asymmetries in $D^0\to K^-K^+$ and $D^0\to\pi^-\pi^+$ decays -1630745 ? Studies of beauty baryon decays to $D^0 ph^-$ and $\Lambda_c^+ h^-$ final states -1633500 X Measurement of the $\bar{B}_s^0\to D_s^-D_s^+$ and $\bar{B}_s^0\to D^-D_s^+$ effective lifetimes -1642936 . Observation of associated production of a $Z$ boson with a $D$ meson in the forward region -1642937 . Updated measurements of exclusive $J/\psi$ and $\psi(2S)$ production cross-sections in $pp$ collisions at $\sqrt{s}=7$ TeV -1644291 X Search for Majorana neutrinos in $B^- \to \pi^+\mu^-\mu^-$ decays -1645127 X Measurement of the $B_c^+$ meson lifetime using $B_c^+ \to J/\psi\mu^+ \nu_{\mu} X$ decays -1646522 X Searches for $\Lambda^0_{b}$ and $\Xi^{0}_{b}$ decays to $K^0_{\rm S} p \pi^{-}$ and $K^0_{\rm S}p K^{-}$ final states with first observation of the $\Lambda^0_{b} \rightarrow K^0_{\rm S}p \pi^{-}$ decay -1647707 . Measurement of $\Upsilon$ production in $pp$ collisions at $\sqrt{s}=2.76$ TeV -1647708 X Measurements of the $B^+$, $B^0$, $B_s^0$ meson and $\Lambda_b^0$ baryon lifetimes -1648118 X A study of CP violation in $B^\pm \to D K^\pm$ and $B^\pm \to D \pi^\pm$ decays with $D \to K^0_{\rm S} K^\pm \pi^\mp$ final states -1662427 . Measurement of charged particle multiplicities and densities in $pp$ collisions at $\sqrt{s}$ = 7 TeV in the forward region -1664413 X Precision measurement of the ratio of the $\Lambda^0_b$ to $\overline{B}^0$ lifetimes -1664567 X Measurement of resonant and $CP$ components in $\overline{B}_s^0\to J/\psi\pi^+\pi^-$ decays -1665522 X Observation of photon polarization in the $b \to s\gamma$ transition -1666954 ? Measurement of $\psi(2S)$ polarisation in $pp$ collisions at $\sqrt{s}=7$ TeV -1668516 X Measurement of polarization amplitudes and $CP$ asymmetries in $B^0 \to \phi K^*(892)^0$ -1669021 . Study of beauty hadron decays into pairs of charm hadrons -1692473 X Differential branching fractions and isospin asymmetries of $B \to K^{(*)}\mu^+\mu^+$ decays -1692474 X Angular analysis of charged and neutral $B \to K \mu^+\mu^-$ decays -1692766 X Evidence for the decay $X(3872)\rightarrow\psi(2S)\gamma$ -1692767 X Evidence for the decay $B_c^+ \rightarrow J/\psi 3\pi^+ 2\pi^-$ -1693968 X Observation of the resonant character of the $Z(4430)^-$ state -1698234 X Measurement of the resonant and CP components in $\overline{B}^0\rightarrow J/\psi \pi^+\pi^-$ decays -1700200 X Measurement of the $\Xi_b^-$ and $\Omega_b^-$ baryon lifetimes -1700967 ? Measurement of $CP$ asymmetry in $D^0 \rightarrow K^- K^+$ and $D^0 \rightarrow \pi^- \pi^+$ decays -1701239 X Observation of the $B^{0}_{s}\rightarrow J/\psi K_{{\rm S}}^{0} K^{\pm} \pi^{\mp}$ decay -1702543 X Measurement of the CP-violating phase $\phi_s$ in $\overline{B}^0_s\rightarrow J/\psi \pi^+\pi^-$ decays -1703112 . Study of $\Upsilon$ production and cold nuclear matter effects in pPb collisions at $\sqrt{s_{NN}}=5~\mathrm{TeV}$ -1705210 . Study of the kinematic dependences of $\Lambda_b^0$ production in $pp$ collisions and a measurement of the $\Lambda_b^0 \rightarrow \Lambda_c^+ \pi^-$ branching fraction -1705226 X Precision measurement of the mass and lifetime of the $\Xi_b^0$ baryon -1707026 X Observation of the $\Lambda_b^0 \rightarrow J/\psi p \pi^-$ decay -1708574 X Search for $CP$ violation in $D^{\pm}\rightarrow K^0_S K^{\pm}$ and $D^{\pm}_{s}\rightarrow K^0_S \pi^{\pm}$ decays -1708577 X Observation of $Z$ production in proton-lead collisions at LHCb -1710130 . First measurement of the charge asymmetry in beauty-quark pair production -1711787 X Test of lepton universality using $B^{+}\rightarrow K^{+}\ell^{+}\ell^{-}$ decays -1712405 X Effective lifetime measurements in the $B_{s}^{0} \rightarrow K^{+}K^{-}$, $B^{0} \rightarrow K^{+}\pi^{-}$ and $B_{s}^{0} \rightarrow \pi^{+}K^{-}$ decays -1741900 X Measurement of the ratio of $B_c^+$ branching fractions to $J/\psi\pi^+$ and $J/\psi\mu^+\nu_\mu$ final states -1741901 X Measurement of CP violation in $B_s^0 \to \phi \phi$ decays -1745187 X Evidence of $CP$ violation in $B^+\to p\bar{p}K^+$ decays -1745353 X Measurement of the $\bar{B}_s^0$ meson lifetime in $D_s^+\pi^-$ decays -1745356 ? Observation of charmonium pairs produced exclusively in $pp$ collisions -1745361 X Measurement of $CP$ asymmetry in $B^0_s \rightarrow D^{\mp}_s K^{\pm}$ decays -1745364 X Measurement of $CP$ violation and constraints on the CKM angle $\gamma$ in $B^{\pm}\rightarrow D K^{\pm}$ with $D \rightarrow K_S^0 \pi^+ \pi^-$ decays -1746548 X Observation of overlapping spin-1 and spin-3 $\overline{D}^0 K^-$ resonances at mass $2.86 {\rm GeV}/c^2$ -1746551 X Observation of $B^0_s \to K^{*\pm}K^\mp$ and evidence for $B^0_s \to K^{*-}\pi^+$ decays -1746552 X Dalitz plot analysis of $B_s^0 \rightarrow \overline{D}^0 K^- \pi^+$ decays -1746553 . Study of $\chi_{b}$ meson production in pp collisions at $\sqrt{s}=7$ and 8TeV and observation of the decay $\chi_{b}(3P) \rightarrow \Upsilon(3S) \gamma$ -1746895 X Measurement of $CP$ violation parameters in $B^0 \to D K^{*0}$ decays -1747386 ? Measurement of the $\bar{B}^0-B^0$ and $\bar{B}^0_s-B^0_s$ production asymmetries in $pp$ collisions at $\sqrt{s}=7$ TeV -1747894 X First observation of a baryonic $B_c^+$ decay -1747895 X Measurement of $C\!P$ asymmetries in the decays $B^0 \rightarrow K^{*0} \mu^+ \mu^-$ and $B^+ \rightarrow K^{+} \mu^+ \mu^-$ -1748264 X First observations of the rare decays $B^+\!\rightarrow K^+\pi^+\pi^-\mu^+\mu^-$ and $B^+\!\rightarrow\phi K^+\mu^+\mu^-$ -1748270 X Search for $CP$ violation using $T$-odd correlations in $D^0 \to K^+K^-\pi^+\pi^-$ decays -1749535 X Measurement of the CKM angle $\gamma$ using $B^\pm \to D K^\pm$ with $D \to K^0_{\rm S} \pi^+\pi^-, K^0_{\rm S} K^+ K^-$ decays -1750837 ! Measurement of the forward $W$ boson cross-section in $pp$ collisions at $\sqrt{s} $ = 7 TeV -1750838 X Determination of $\gamma$ and $-2\beta_s$ from charmless two-body decays of beauty mesons -1751517 X Measurements of $C\!P$ violation in the three-body phase space of charmless $B^{\pm}$ decays -1753641 X Measurement of the $\chi_b(3P)$ mass and of the relative rate of $\chi_{b1}(1P)$ and $\chi_{b2}(1P)$ production -1755550 ? Measurement of the $\eta_c (1S)$ production cross-section in proton-proton collisions via the decay $\eta_c (1S) \rightarrow p \bar{p}$ -1756036 X Measurement of the CP-violating phase $\phi_s$ in $\bar{B}^{0}_{s}\to D_{s}^{+}D_{s}^{-}$ decays -1951383 X Search for the lepton flavour violating decay $\tau^-\to \mu^-\mu^+\mu^-$ -1951424 X Measurement of the semileptonic $CP$ asymmetry in $B^0-\overline{B}{}^0$ mixing -1951618 X Precision measurement of the mass and lifetime of the $\Xi_b^-$ baryon -1951625 X Precision luminosity measurements at LHCb -1955544 X Search for $CP$ violation in $D^0\to \pi^-\pi^+\pi^0$ decays with the energy test -1966993 X Study of $\eta-\eta'$ mixing from measurement of $B^0_{(s)}\to J/\psi\eta^{(')}$ decay rates -1967222 ! Measurement of the Z+b-jet cross-section in pp collisions at $\sqrt{s}=7{\mathrm{\,Te\kern -0.1em V}}$ in the forward region -1967422 X Measurement of the CP-violating phase $\beta$ in $B^0\rightarrow J/\psi \pi^+\pi^-$ decays and limits on penguin effects -1968989 X Measurement of $B_c^+$ production in proton-proton collisions at $\sqrt{s}=8$ TeV -1969197 X Precision measurement of $CP$ violation in $B_s^0 \to J/\psi K^+K^-$ decays -1970690 X Observation of two new $\Xi_b^-$ baryon resonances -1972201 X Measurement of the lifetime of the $B_c^+$ meson using the $B_c^+ \rightarrow J/\psi\pi^+$ decay mode -1975522 . Measurement of the inelastic $pp$ cross-section at a centre-of-mass energy of $\sqrt{s}=7$ TeV -1975714 . Search for long-lived particles decaying to jet pairs -1978281 X Study of the rare $B_s^0$ and $B^0$ decays into the $\pi^+\pi^-\mu^+\mu^-$ final state -1978798 X Determination of the branching fractions of $B_{s}^{0} \to D_{s}^{\mp} K^{\pm}$ and $B^{0} \to D_{s}^{-} K^{+}$ -1981106 X Angular analysis of the $B^0 \rightarrow K^{*0} e^+ e^-$ decay in the low-$q^2$ region -1983198 X Measurement of indirect CP asymmetries in $D^0 \to K^-K^+$ and $D^0 \to \pi^-\pi^+$ decays -1987883 X Precise measurements of the properties of the $B_1(5721)^{0,+}$ and $B^\ast_2(5747)^{0,+}$ states and observation of $B^{+,0}\pi^{-,+}$ mass structures -1996441 . Measurement of forward $\rm Z\rightarrow e^+e^-$ production at $\sqrt{s}=8$ TeV -2000543 X First observation and amplitude analysis of the $B^{-}\to D^{+}K^{-}\pi^{-}$ decay -2002385 X Measurement of $CP$ asymmetries and polarisation fractions in $B_s^0 \rightarrow K^{*0}\overline{K}{}^{*0}$ decays -2003252 X Measurement of the time-dependent CP asymmetries in $B_s^0\rightarrow J/\psi K_{\rm S}^0$ -2003792 X Measurement of $CP$ violation in $B^0 \rightarrow J/\psi K^0_S$ decays -2003793 X Observation of the decay $\overline{B}_s^0 \rightarrow \psi(2S) K^+ \pi^-$ -2003794 X Differential branching fraction and angular analysis of $\Lambda^{0}_{b} \rightarrow \Lambda^0 \mu^+\mu^-$ decays -2004586 X Observation of the $B^0_s\to\eta'\eta'$ decay -2004591 X Observation of the ${B^0 \to \rho^0 \rho^0}$ decay from an amplitude analysis of ${B^0 \to (\pi^+\pi^-)(\pi^+\pi^-)}$ decays -2005510 X First observation and measurement of the branching fraction for the decay $B^0_s \to D_s^{*\mp} K^{\pm}$ -2007377 X Determination of the quark coupling strength $|V_{ub}|$ using baryonic decays -2011387 X A study of $CP$ violation in $B^\mp \rightarrow Dh^\mp$ ($h=K,\pi$) with the modes $D \rightarrow K^\mp \pi^\pm \pi^0$, $D \rightarrow \pi^+\pi^-\pi^0$ and $D \rightarrow K^+K^-\pi^0$ -2012165 X Quantum numbers of the $X(3872)$ state and orbital angular momentum in its $\rho^0 J/\psi$ decays -2012990 X Identification of beauty and charm quark jets at LHCb -2014715 X Dalitz plot analysis of $B^0 \to \overline{D}^0 \pi^+\pi^-$ decays -2014733 X Search for the decay $B^0_s\to\overline{D}^0f_0(980)$ -2014836 X Amplitude analysis of $B^0 \rightarrow \bar{D}^0 K^+ \pi^-$ decays -2016239 X Search for the $\Lambda_b^0 \rightarrow \Lambda \eta^\prime$ and $\Lambda_b^0\rightarrow \Lambda \eta$ decays with the LHCb detector -2016711 ! Study of $W$ boson production in association with beauty and charm -2019534 ! Measurement of the forward $Z$ boson production cross-section in $pp$ collisions at $\sqrt{s}$ = 7 TeV -2019536 X Study of $B^{-}\to DK^-\pi^+\pi^-$ and $B^-\to D\pi^-\pi^+\pi^-$ decays and determination of the CKM angle $\gamma$ -2020686 . Measurement of the exclusive $\Upsilon$ production cross-section in $pp$ collisions at $\sqrt{s}=$7 TeV and 8 TeV -2021262 . First observation of top quark production in the forward region -2029609 X Measurement of the ratio of branching fractions $\mathcal{B}(\overline{B}^0 \to D^{*+}\tau^{-}\overline{\nu}_{\tau})/\mathcal{B}(\overline{B}^0 \to D^{*+}\mu^{-}\overline{\nu}_{\mu})$ -2029817 X First observation of the decay $B_{s}^{0} \to K_{S}^{0} K^{*}(892)^{0}$ -2029820 X Angular analysis and differential branching fraction of the decay $B^0_s\to\phi\mu^+\mu^-$ -2030417 . Search for long-lived heavy charged particles using a ring imaging Cherenkov technique at LHCb -2033887 X Observation of $J/\psi p$ resonances consistent with pentaquark states in ${\Lambda_b^0\to J/\psi K^-p}$ decays -2033891 X Measurement of the branching fraction ratio $\mathcal{B}(B_c^+ \rightarrow \psi(2S)\pi^+)/\mathcal{B}(B_c^+ \rightarrow J/\psi \pi^+)$ -2038937 X $B$ flavour tagging using charm decays at the LHCb experiment -2040342 X Measurement of the $B_s^0 \to \phi \phi$ branching fraction and search for the decay $B^0 \to \phi \phi$ -2045144 X Search for hidden-sector bosons in $B^0 \!\to K^{*0}\mu^+\mu^-$ decays -2047219 X Measurement of the time-integrated $CP$ asymmetry in $D^0 \to K^0_S K^0_S$ decays -2048421 . Study of the production of $\Lambda_b^0$ and $\overline{B}^0$ hadrons in $pp$ collisions and first measurement of the $\Lambda_b^0\rightarrow J/\psi pK^-$ branching fraction -2048426 X Measurement of ${C\!P}$ violation parameters and polarisation fractions in ${B_s^0\to J/\psi \overline{K}^{*0}}$ decays -2048427 X First measurement of the differential branching fraction and $C\!P$ asymmetry of the $B^\pm\to\pi^\pm\mu^+\mu^-$ decay -2048812 . Measurement of forward $J/\psi$ production cross-sections in $pp$ collisions at $\sqrt{s}=13$ TeV -2049870 . Forward production of $\Upsilon$ mesons in $pp$ collisions at $\sqrt{s}=7$ and 8TeV -2054540 X Studies of the resonance structure in $D^0\to K^0_S K^{\pm}\pi^{\mp}$ decays -2055598 ! Measurement of the forward-backward asymmetry in $Z/\gamma^{\ast} \rightarrow \mu^{+}\mu^{-}$ decays and determination of the effective weak mixing angle -2057627 . Measurements of prompt charm production cross-sections in $pp$ collisions at $\sqrt{s}$ = 13 TeV -2057905 X Model-independent measurement of mixing parameters in $D^0 \to K_S^0 \pi^+ \pi^-$ decays -2057916 X Model-independent confirmation of the $Z(4430)^-$ state -2059561 X Evidence for the strangeness-changing weak decay $\Xi_b^-\to\Lambda_b^0\pi^-$ -2060452 X Search for the rare decays $B^{0}\to J/\psi \gamma$ and $B^{0}_{s} \to J/\psi \gamma$ -2061215 ! Production of associated $\Upsilon$ and open charm hadrons in $pp$ collisions at $\sqrt{s}=7$ and $8$ TeV via double parton scattering -2063226 X First observation of the decay $D^{0}\rightarrow K^{-}\pi^{+}\mu^{+}\mu^{-}$ in the $\rho^{0}$-$\omega$ region of the dimuon mass spectrum -2108134 . Measurement of forward $W$ and $Z$ boson production in $pp$ collisions at $\sqrt{s} = 8\mathrm{\,Te\kern -0.1em V}$ -2110144 X Search for the lepton-flavour violating decay $D^0 \to e^\pm\mu^\mp$ -2110456 . Measurements of long-range near-side angular correlations in $\sqrt{s_{\text{NN}}}=5$TeV proton-lead collisions in the forward region -2111776 X First observation of the rare $B^{+}\to D^{+} K^{+} \pi^{-}$ decay -2115087 X Angular analysis of the $B^{0}\rightarrow K^{*0}\mu^{+}\mu^{-}$ decay using 3 fb$^{-1}$ of integrated luminosity -2119704 X Study of $D^{(*)+}_{sJ}$ mesons decaying to $D^{*+} K^0_{\rm S}$ and $D^{*0} K^+$ final states -2125878 X Observation of the $B_s^0 \rightarrow J/\psi \phi \phi$ decay -2127658 . Study of $\psi(2S)$ production and cold nuclear matter effects in $p$Pb collisions at $\sqrt {s_{NN}} = 5$ TeV -2130762 X Measurement of the difference of time-integrated CP asymmetries in $D^0 \rightarrow K^{-} K^{+} $ and $D^0 \rightarrow \pi^{-} \pi^{+} $ decays -2130992 X Constraints on the unitarity triangle angle $\gamma$ from Dalitz plot analysis of $B^0 \to D K^+ \pi^-$ decays -2134036 X First observation of $D^0- \bar D^0$ oscillations in $D^0 \to K^+\pi^-\pi^+\pi^-$ decays and measurement of the associated coherence parameters -2134228 X A new algorithm for identifying the flavour of $B_s^0$ mesons at LHCb -2134234 X Measurement of the $B_{s}^{0} \rightarrow D_{s}^{(*)+}D_{s}^{(*)-}$ branching fractions -2135583 X Observations of $\Lambda_b^0 \to \Lambda K^+\pi^-$ and $\Lambda_b^0 \to \Lambda K^+K^-$ decays and searches for other $\Lambda_b^0$ and $\Xi_b^0$ decays to $\Lambda h^+h^{\prime -}$ final states -2137585 X Observation of $B^0_s\to\bar{D}^0 K^0_S$ and evidence for $B^0_s\to\bar{D}^{*0} K^0_S$ decays -2138164 X Observation of the $\Lambda_b^0\to\Lambda\phi$ decay -2139457 X Search for violations of Lorentz invariance and $CPT$ symmetry in $B^0_{(s)}$ mixing -2141271 X Observation of $ \Lambda_b^0 \to \psi(2S)pK^-$ and $ \Lambda_b^0 \to J/\psi \pi^+ \pi^- pK^-$ decays and a measurement of the $\Lambda_b^0$ baryon mass -2141273 X Search for $B_c^+$ decays to the $p\overline p\pi^+$ final state -2142996 X Measurement of $C\!P$ observables in $B^\pm \rightarrow D K^\pm$ and $B^\pm \rightarrow D \pi^\pm$ with two- and four-body $D$ decays -2144362 X Model-independent measurement of the CKM angle $\gamma$ using $B^0 \to D K^{\ast 0}$ decays with $D \to K_{S}^{0} \pi^{+} \pi^{-}$ and $K_{S}^{0} K^{+} K^{-}$ -2144437 X Measurement of the mass and lifetime of the $\Omega_b^-$ baryon -2145674 X A precise measurement of the $B^0$ meson oscillation frequency -2146005 X Measurement of the properties of the $\Xi_b^{*0}$ baryon -2147695 X Model-independent evidence for $J/\psi p$ contributions to $\Lambda_b^0\to J/\psi p K^-$ decays -2150413 . Measurement of forward $W$ and $Z$ boson production in association with jets in proton-proton collisions at $\sqrt{s}=8$ TeV -2150906 X Measurement of the CKM angle $\gamma$ using $B^0 \rightarrow D K^{*0}$ with $D \rightarrow K^0_S \pi^+ \pi^-$ decays -2157071 X Measurement of the $CP$ asymmetry in $B^0_s -\overline B {^0 _s}$ mixing -2161334 X Measurements of the S-wave fraction in $B^{0}\rightarrow K^{+}\pi^{-}\mu^{+}\mu^{-}$ decays and the $B^{0}\rightarrow K^{\ast}(892)^{0}\mu^{+}\mu^{-}$ differential branching fraction -2163137 X Evidence for exotic hadron contributions to $\Lambda_b^0 \to J/\psi p \pi^-$ decays -2194707 X Observation of $J/\psi\phi$ structures consistent with exotic states from amplitude analysis of $B^+\to J/\psi \phi K^+$ decays -2194708 X Amplitude analysis of $B^+\to J/\psi \phi K^+$ decays -2200705 X Study of $B^+_c$ decays to the $K^+K^-\pi^+$ final state and evidence for the decay $B^+_c\to\chi_{c0}\pi^+$ -2200727 . Measurement of the forward Z boson production cross-section in pp collisions at $\sqrt{s} = 13$ TeV -2200909 X Measurement of the $B_{s}^{0} \rightarrow J/\psi \eta$ lifetime -2201878 X Measurement of the ratio of branching fractions $\mathcal{B}(B_{c}^{+} \to J/\psi K^{+})/\mathcal{B}(B_{c}^{+} \to J/\psi\pi^{+})$ -2203370 X Search for structure in the $B_s^0\pi^\pm$ invariant mass spectrum -2205214 X Amplitude analysis of $B^- \to D^+ \pi^- \pi^-$ decays -2205454 X Search for the suppressed decays $B^{+}\rightarrow K^{+}K^{+}\pi^{-}$ and $B^{+}\rightarrow \pi^{+}\pi^{+}K^{-}$ -2205455 . Measurement of forward $W\to e\nu$ production in $pp$ collisions at $\sqrt{s}=8$ TeV -2209876 X Measurement of $CP$ violation in $B^0 \!\rightarrow D^+ D^-$ decays -2214351 ? First experimental study of photon polarization in radiative $B^{0}_{s}$ decays -2215207 X Search for Higgs-like bosons decaying into long-lived exotic particles -2216088 X Differential branching fraction and angular moments analysis of the decay $B^0 \to K^+ \pi^- \mu^+ \mu^-$ in the $K^*_{0,2}(1430)^0$ region -2216363 X Measurement of matter-antimatter differences in beauty baryon decays -2222057 X Observation of $B^+\rightarrow J/\psi 3\pi^+ 2\pi^-$ and $B^+\rightarrow \psi(2S) \pi^+\pi^+\pi^-$ decays -2222850 . Measurements of prompt charm production cross-sections in $pp$ collisions at $\sqrt{s} = 5$ TeV -2224087 X Search for the $C\!P$-violating strong decays $\eta \to \pi^+\pi^-$ and $\eta^\prime(958) \to \pi^+\pi^-$ -2225718 X Observation of the decay $B^0_s \to \phi\pi^+\pi^-$ and evidence for $B^0 \to \phi\pi^+\pi^-$ -2226227 X New algorithms for identifying the flavour of $B^0$ mesons using pions and protons -2227851 . Measurement of forward $t\overline{t}$, $W+b\overline{b}$ and $W+c\overline{c}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV -2227854 X Observation of the annihilation decay mode $B^{0}\to K^{+}K^{-}$ -2228778 X Measurement of $CP$ asymmetry in $D^0\rightarrow K^-K^+$ decays -2231692 X Measurement of the CKM angle $\gamma$ from a combination of LHCb results -2234042 X Measurements of charm mixing and $C\!P$ violation using $D^0 \to K^\pm \pi^\mp$ decays -2235188 X Evidence for the two-body charmless baryonic decay $B^+ \to p \kern 0.1em\overline{\kern -0.1em\Lambda}$ -2236639 X Search for decays of neutral beauty mesons into four muons -2238303 X Search for massive long-lived particles decaying semileptonically in the LHCb detector -2238497 X Observation of the decay $\Xi_b^- \to p K^-K^-$ -2239077 X Search for $CP$ violation in the phase space of $D^0\rightarrow\pi^+\pi^-\pi^+\pi^-$ decays -2239204 ! Measurement of the $b$-quark production cross-section in 7 and 13 TeV $pp$ collisions -2239705 X Measurement of the ratio of branching fractions and difference in $CP$ asymmetries of the decays $B^+\to J/\psi\pi^+$ and $B^+\to J/\psi K^+$ -2239806 X Measurement of the phase difference between short- and long-distance amplitudes in the $B^{+}\to K^{+}\mu^{+}\mu^{-}$ decay -2239812 X Observation of $B_{c}^{+} \to J/\psi D^{(*)} K^{(*)}$ decays -2239813 . Measurement of the $J/\psi$ pair production cross-section in $pp$ collisions at $\sqrt{s} = 13 \,{\mathrm{TeV}}$ -2239917 X Search for long-lived scalar particles in $B^+ \to K^+ \chi (\mu^+\mu^-)$ decays -2239945 X Search for the $B^{0}_{s} \to \eta^{\prime}\phi$ decay -2240727 X Observation of $B_{c}^{+} \rightarrow D^{0} K^{+}$ decays -2240733 X Measurement of $CP$ asymmetries in $D^{\pm}\rightarrow \eta^{\prime} \pi^{\pm}$ and $D_s^{\pm}\rightarrow \eta^{\prime} \pi^{\pm}$ decays -2242399 . Study of $J/\psi$ production in jets -2242418 X Observation of the $\varXi^{-}_{b}\to J/\psi\varLambda K^{-}$ decay -2242641 X Measurement of the $B^{\pm}$ production asymmetry and the $CP$ asymmetry in $B^{\pm} \to J/\psi K^{\pm}$ decays -2243205 X Study of the $D^0 p$ amplitude in $\Lambda_b^0\to D^0 p \pi^-$ decays -2243471 X Observation of the suppressed decay $\Lambda^{0}_{b}\rightarrow p\pi^{-}\mu^{+}\mu^{-}$ -2253241 X Measurement of the $C\!P$ violation parameter $A_\Gamma$ in $D^0 \to K^+K^-$ and $D^0 \to \pi^+\pi^-$ decays -2253838 X Observation of the decay $\Lambda^0_b \to p K^- \mu^+ \mu^-$ and a search for $C\!P$ violation -2255070 X Search for the decays $B_s^0\to\tau^+\tau^-$ and $B^0\to\tau^+\tau^-$ -2255200 X Observation of the decay $B_{s}^{0} \to \eta_{c} \phi$ and evidence for $B_{s}^{0} \to \eta_{c} \pi^{+} \pi^{-} $ -2256145 X Measurement of the $B^0_s\to\mu^+\mu^-$ branching fraction and effective lifetime and search for $B^0\to\mu^+\mu^-$ decays -2257517 . Measurement of $B^0$, $B^0_s$, $B^+$ and $\Lambda^0_b$ production asymmetries in 7 and 8 TeV proton-proton collisions -2261149 X Observation of the $B^+ \to D^{*-}K^+\pi^+$ decay -2261172 X Observation of the decays $\Lambda_b^0 \to \chi_{c1} p K^-$ and $\Lambda_b^0 \to \chi_{c2} p K^-$ -2261383 X Observation of charmless baryonic decays $B^0_{(s)} \to p \overline{p} h^+ h^{\prime-}$ -2261875 X Resonances and $CP$ violation in $B_s^0$ and $\overline{B}_s^0 \to J/\psi K^+K^-$ decays in the mass region above the $\phi(1020)$ -2262802 X Observation of five new narrow $\Omega_c^0$ states decaying to $\Xi^+_c K^-$ -2263774 X Measurement of $B^{0}_{s}$ and $D^{-}_{s}$ meson lifetimes -2264957 X Test of lepton universality with $B^{0} \rightarrow K^{*0}\ell^{+}\ell^{-}$ decays -2265567 . Updated search for long-lived particles decaying to jet pairs -2267588 X Improved limit on the branching fraction of the rare decay $K^0_{\scriptscriptstyle S}\to\mu^+\mu^-$ -2271319 ? Study of charmonium production in ${b}$-hadron decays and first evidence for the decay ${{{B}} ^0_{{s}}} \!\rightarrow \phi \phi \phi $ -2271321 ? Prompt and nonprompt J/$\psi$ production and nuclear modification in $p$Pb collisions at $\sqrt{s_{\text{NN}}}= 8.16$ TeV -2273486 X Observation of the doubly charmed baryon $\Xi_{cc}^{++}$ -2273792 X Study of prompt D$^0$ meson production in pPb collisions at $\sqrt{s}$=5 TeV -2276004 X Observation of $D^0$ meson decays to $\pi^+\pi^-\mu^+\mu^-$ and $K^+K^-\mu^+\mu^-$ final states -2280557 X Measurement of $CP$ observables in $B^\pm \to D^{(*)} K^\pm$ and $B^\pm \to D^{(*)} \pi^\pm$ decays -2280559 X Search for baryon-number-violating $\Xi_b^0$ oscillations -2280575 ! Study of $b\bar{b}$ correlations in high energy proton-proton collisions -2281448 X Measurement of the ratio of the $B^0 \to D^{*-} \tau^+ \nu_{\tau}$ and $B^0 \to D^{*-} \mu^+ \nu_{\mu}$ branching fractions using three-prong $\tau$-lepton decays -2282417 . Measurement of the $\Upsilon$ polarizations in $pp$ collisions at $\sqrt{s}$=7 and 8TeV -2282718 X First observation of the rare purely baryonic decay $B^0 \to p \bar{p}$ -2282719 X Bose-Einstein correlations of same-sign charged pions in the forward region in $pp$ collisions at $\sqrt{s}$ = 7 TeV -2282768 X Measurement of the shape of the $\Lambda_b^0\to\Lambda_c^+ \mu^- \overline{\nu}_{\mu}$ differential decay rate -2283186 X First observation of forward $Z \rightarrow b \bar{b}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV -2284162 X Measurement of $CP$ violation in $B^0\rightarrow J/\psi K^0_\mathrm{S}$ and $B^0\rightarrow\psi(2S) K^0_\mathrm{S}$ decays -2284371 X Precise measurement of the $\chi_{c1}$ and $\chi_{c2}$ resonance parameters with the decays $\chi_{c1,c2}\to J/\psi\mu^+\mu^-$ -2284746 X Measurement of $CP$ observables in $B^{\pm} \rightarrow D K^{*\pm}$ decays using two- and four-body $D$ final states -2287638 . Search for dark photons produced in 13 TeV $pp$ collisions -2288393 X Search for the lepton-flavour violating decays $B^0_{(s)} \rightarrow e^\pm \mu^\mp$ -2289591 . Measurement of the $B^{\pm}$ production cross-section in pp collisions at $\sqrt{s} =$ 7 and 13 TeV -2291553 X Measurements of the branching fractions of $\Lambda_{c}^{+} \rightarrow p \pi^{-} \pi^{+}$, $\Lambda_{c}^{+} \rightarrow p K^{-} K^{+}$, and $\Lambda_{c}^{+} \rightarrow p \pi^{-} K^{+}$ -2293032 X First observation of $B^{+} \to D_s^{+}K^{+}K^{-}$ decays and a search for $B^{+} \to D_s^{+}\phi$ decays -2293066 X Measurement of the ratio of branching fractions $\mathcal{B}(B_c^+\,\to\,J/\psi\tau^+\nu_\tau)$/$\mathcal{B}(B_c^+\,\to\,J/\psi\mu^+\nu_\mu)$ -2293330 X Measurement of branching fractions of charmless four-body $\Lambda_b^0$ and $\Xi_b^0$ decays -2293449 X Updated determination of $D^0$-$\overline{D}{}^0$ mixing and CP violation parameters with $D^0\to K^+\pi^-$ decays -2293586 X Search for excited $B_c^+$ states -2298698 X A measurement of the $CP$ asymmetry difference in $\varLambda_{c}^{+} \to pK^{-}K^{+}$ and $p\pi^{-}\pi^{+}$ decays -2298825 X Measurement of $CP$ asymmetry in $B_s^0 \to D_s^{\mp} K^{\pm}$ decays -2298907 X Search for weakly decaying $b$-flavored pentaquarks -2299466 X First measurement of the $CP$-violating phase $\phi_s^{d\overline{d}}$ in $B_s^0\to(K^+\pi^-)(K^-\pi^+)$ decays -2299813 X Studies of the resonance structure in $D^{0} \to K^\mp \pi^\pm \pi^\pm \pi^\mp$ decays -2299992 X Evidence for the rare decay $\Sigma^+ \to p \mu^+ \mu^-$ -2308679 ! Measurement of forward top pair production in the dilepton channel in $pp$ collisions at $\sqrt{s}=13$ TeV -2310354 X Search for $B_c^+$ decays to two charm mesons -2310870 ! Measurement of the inelastic $pp$ cross-section at a centre-of-mass energy of 13\,TeV -2311957 X Measurement of the $CP$ asymmetry in $B^-\to D_s^-D^0$ and $B^-\to D^-D^0$ decays -2314397 X Evidence for the decay $B_{s}^0 \rightarrow \overline{K}{}^{*0}\mu^+\mu^-$ -2315242 X Observation of the decay $\Lambda_b^0 \to \Lambda_c^+ p \overline{p} \pi^-$ -2317087 X Measurement of $CP$ violation in $B^{0}\rightarrow D^{\mp}\pi^{\pm}$ decays -2320491 X Observation of a new $\Xi_b^-$ resonance -2621083 X Measurement of $D_s^{\pm}$ production asymmetry in $pp$ collisions at $\sqrt{s} =7$ and 8 TeV -2621724 X Measurement of the CKM angle $\gamma$ using $B^\pm\to DK^\pm$ with $D\to K_\text{S}^0\pi^+\pi^-$, $K_\text{S}^0K^+K^-$ decays -2621733 X Measurement of the time-integrated $CP$ asymmetry in $D^0 \rightarrow K^0_S K^0_S$ decays -2622139 . Search for a dimuon resonance in the $\Upsilon$ mass region -2622293 X First measurement of the lifetime of the doubly charmed baryon $\Xi_{cc}^{++}$ -2622688 . Central exclusive production of $J/\psi$ and $\psi(2S)$ mesons in $pp$ collisions at $\sqrt{s}=13~$TeV -2624023 . Measurement of $Z\rightarrow\tau^+\tau^-$ production in proton-proton collisions at $\sqrt{s} = 8$ TeV -2625147 . Observation of the decay $\Lambda^0_b\rightarrow\psi(2S)p\pi^-$ -2626254 . Search for beautiful tetraquarks in the $\Upsilon(1S)\mu^+\mu^-$ invariant-mass spectrum -2627041 . Observation of the decay $\overline{B_s^0} \rightarrow \chi_{c2} K^+ K^- $ -2627588 . Measurement of angular and $C\!P$ asymmetries in $D^0 \to \pi^+\pi^-\mu^+\mu^-$ and $D^0 \to K^+K^-\mu^+\mu^-$ decays -2629320 . Measurement of the $\Omega_c^0$ baryon lifetime -2629322 . First observation of the doubly charmed baryon decay $\Xi_{cc}^{++} \rightarrow \Xi_{c}^{+} \pi^{+}$ -2631451 . Measurement of $\Upsilon$ production in $pp$ collisions at $\sqrt{s}$= 13 TeV -2631638 . Search for $C\!P$ violation in $\Lambda^0_b \to p K^-$ and $\Lambda^0_b \to p \pi^-$ decays -2632773 . Measurement of the relative $B^{-} \rightarrow D^{0} / D^{*0} / D^{**0} \mu^{-} \overline{\nu}_\mu$ branching fractions using $B^{-}$ mesons from $\overline{B}{}_{s2}^{*0}$ decays +865584 . Prompt $K^0_s$ production in $pp$ collisions at $\sqrt{s}=0.9~\rm{TeV}$ +867355 . Measurement of $\sigma(pp \to b \bar{b} X)$ at $\sqrt{s}=7~\rm{TeV}$ in the forward region +886284 ? First observation of $B^0_s \to J/\psi f_0(980)$ decays +886536 ? First observation of $\bar{B}^0_s \to D_{s2}^{*+} X \mu^-\bar{\nu}$ decays +891233 ? Measurement of $J/\psi$ production in $pp$ collisions at $\sqrt{s}=7~\rm{TeV}$ +892495 ? Search for the rare decays $B^0_s \to \mu^+\mu^-$ and $B^0 \to \mu^+\mu^-$ +914506 . Determination of $f_s/f_d$ for $7~\rm{TeV}$ $pp$ collisions and a measurement of the branching fraction of the decay $B_d\to D^-K^+$ +917009 . Measurement of $V^0$ production ratios in $pp$ collisions at $\sqrt{s} = 0.9$ and $7~\rm{TeV}$ +919315 . Measurement of the inclusive $\phi$ cross-section in $pp$ collisions at $\sqrt{s}=$ 7 TeV +926280 X Observation of $J/\psi$ pair production in $pp$ collisions at $\sqrt{s}=7 TeV$ +930219 . Measurements of the Branching fractions for $B_{(s)} \to D_{(s)}\pi\pi\pi$ and $\Lambda_b^0 \to \Lambda_c^+\pi\pi\pi$ +930417 ? Search for the lepton number violating decays $B^{+}\to \pi^- \mu^+ \mu^+$ and $B^{+}\to K^- \mu^+ \mu^+$ +939619 X Absolute luminosity measurements with the LHCb detector at the LHC +940142 X First observation of the decay $\bar{B}^0_s \to D^0 K^{*0}$ and a measurement of the ratio of branching fractions $\frac{{\cal B}(\bar{B}^0_s \to D^0 K^{*0})}{{\cal B}(\bar{B}^0 \to D^0 \rho^0)}$ +940366 X Search for CP violation in $D^{+} \to K^{-}K^{+}\pi^{+}$ decays +944152 . Measurement of the effective $B^0_s\rightarrow K^+K^-$ lifetime +945381 . Measurement of $b$-hadron production fractions in $7~\rm{TeV}$ pp collisions +946440 X First observation of the decay $B^0_s \to K^{*0} \bar{K}^{*0}$ +1079920 ? Evidence for CP violation in time-integrated $D^0 \to h^-h^+$ decay rates +1080385 . Search for the rare decays $B^0_s \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$ +1081268 . Measurement of the CP violating phase $\phi_s$ in $\bar{B}^0_s \to J/\psi f_0(980)$ +1081275 . Measurement of the CP-violating phase $\phi_s$ in the decay $B^0_s\to J/\psi \phi$ +1081581 . Differential branching fraction and angular analysis of the decay $B^{0} \to K^{*0} \mu^+ \mu^-$ +1082063 . Measurement of the $B^0_s - \bar{B}^0_s$ oscillation frequency $\Delta m_s$ in $B^0_s \to D_s^-(3) \pi$ decays +1082327 . Measurement of mixing and CP violation parameters in two-body charm decays +1082328 . Observation of $B_s \to J/\psi f^\prime_2(1525)$ in $J/\psi K^+K^-$ final states +1082369 . Measurement of charged particle multiplicities in $pp$ collisions at ${\sqrt{s} =7}$TeV in the forward region +1082449 . Measurement of $b$-hadron masses +1082706 . Observation of $X(3872) $ production in $pp$ collisions at $\sqrt{s}=7$ TeV +1085516 . First observation of the decays $\bar{B}^0 \to D^{+} K^{-} \pi^{+} \pi^{-}$ and $B^{-} \to D^0 K^{-} \pi^{+} \pi^{-}$ +1085982 ? Searches for Majorana neutrinos in $B^-$ decays +1087907 . Measurement of the cross-section ratio $\sigma(\chi_{c2})/\sigma(\chi_{c1})$ for prompt $\chi_c$ production at $\sqrt{s}=7$ TeV +1089837 . Determination of the sign of the decay width difference in the $B_s$ system +1089993 . Measurement of the $B^\pm$ production cross-section in $pp$ collisions at $\sqrt{s}=7$ TeV +1090061 . Opposite-side flavour tagging of B mesons at the LHCb experiment +1090150 . Search for the $X(4140)$ state in $B^+ \to J/\psi \phi K^+$ decays +1090895 X First evidence of direct $C\!P$ violation in charmless two-body decays of $B^0_s$ mesons +1090962 . Measurement of the ratio of branching fractions $\mathcal{B}(B^0\to K^{*0}\gamma)/\mathcal{B}(B_s^0\to\phi\gamma)$ +1091071 . Measurement of Upsilon production in pp collisions at $\sqrt{s}$ = 7 TeV +1094045 . Measurements of the branching fractions and $C\!P$ asymmetries of $B^{\pm} \to J\!/\!\psi\, \pi^{\pm}$ and $B^{\pm} \to \psi(2S) \pi^{\pm}$ decays +1094080 . Observation of CP violation in $B^\pm \to DK^\pm$ decays +1094383 . Strong constraints on the rare decays $B_s \to \mu^+ \mu^-$ and $B^0 \to \mu^+ \mu^-$ +1097092 . First observation of the decay $B_c^+ \to J/\psi \pi^+\pi^-\pi^+$ +1104751 . Measurements of the branching fractions of the decays $B^{0}_{s} \to D^{\mp}_{s} K^{\pm} $ and $B^{0}_{s} \to D^{-}_{s} \pi^{+}$ +1104754 X Measurement of $\psi(2S)$ meson production in pp collisions at $\sqrt{s}$=7 TeV +1107645 . Measurement of the ratio of prompt $\chi_{c}$ to $J/\psi$ production in $pp$ collisions at $\sqrt{s}=7$ TeV +1107729 . Inclusive $W$ and $Z$ production in the forward region at $\sqrt{s} = 7$ TeV +1110692 X Measurement of the polarization amplitudes and triple product asymmetries in the $B_s^0 \to \phi\phi$ decay +1112264 X Analysis of the resonant components in $B_s \to J/\psi\pi^+\pi^-$ +1112268 X Measurement of the CP-violating phase $\phi_s$ in $\overline{B}^0_s \to J/\psi\pi^+\pi^-$ decays +1113593 ? Measurement of the $D_s^+ - D_s^-$ production asymmetry in 7 TeV $pp$ collisions +1113594 X Measurement of relative branching fractions of B decays to $\psi(2S)$ and $J/\psi$ mesons +1113595 X Measurement of the $B_s^0\to J/\psi K_S^0$ branching fraction +1113596 X Observation of double charm production involving open charm in pp collisions at $\sqrt{s}$ = 7 TeV +1114752 . Measurement of the isospin asymmetry in $B \to K^{(*)}\mu^+\mu^-$ decays +1114753 . Observation of excited $\Lambda_b^0$ baryons +1118162 . Measurement of $b$-hadron branching fractions for two-body decays into charmless charged hadrons +1119400 . Measurement of prompt hadron production ratios in $pp$ collisions at $\sqrt{s} = $ 0.9 and 7 TeV +1121120 X Measurement of the $B_s$ effective lifetime in the $J/\psi f_0(980)$ final state +1123797 X Observation of $B^0 \to \bar{D}^0 K^+ K^-$ and evidence of $B^0_s \to \bar{D}^0 K^+ K^-$ +1123798 . Measurement of the effective $B_s^0 \rightarrow K^+ K^-$ lifetime +1123799 . Study of $D_{sJ}$ decays to $D^+K^0_S$ and $D^0K^+$ final states in $pp$ collisions +1125853 X Measurement of the $B^0_s \rightarrow J/\psi \bar{K}^{*0}$ branching fraction and angular amplitudes +1127719 . Implications of LHCb measurements and future prospects +1184177 . Measurement of the fraction of $\Upsilon(1S)$ originating from $\chi_b(1P)$ decays in $pp$ collisions at $\sqrt{s} = 7$ TeV +1184178 . Measurement of the ratio of branching fractions $BR(B_0 \to K^{\star 0} \gamma)/BR(B_{s0} \to \phi \gamma)$ and the direct CP asymmetry in $B_0 \to K^{\star 0} \gamma$ +1186389 . Search for the rare decay $K_S \to \mu^+ \mu^-$ +1186557 . Differential branching fraction and angular analysis of the $B^{+} \rightarrow K^{+}\mu^{+}\mu^{-}$ decay +1188009 . Measurements of $B_c^+$ production and mass with the $B_c^+ \to J/\psi \pi^+$ decay +1188164 . A model-independent Dalitz plot analysis of $B^\pm \to D K^\pm$ with $D \to K^0_{\rm S} h^+h^-$ ($h=\pi, K$) decays and constraints on the CKM angle $\gamma$ +1189187 . First evidence for the annihilation decay mode $B^{+} \to D_{s}^{+} \phi$ +1189991 . Evidence for the decay $B^0\to J/\psi \omega$ and measurement of the relative branching fractions of $B^0_s$ meson decays to $J/\psi\eta$ and $J/\psi\eta^{'}$ +1189993 . First observation of the decay $B^{+} \rightarrow \pi^{+} \mu^{+} \mu^{-}$ +1190679 X Measurement of the D+/- production asymmetry in 7 TeV pp collisions +1190893 X Measurement of the $C\!P$ asymmetry in $B^0 \to K^{*0} \mu^+ \mu^-$ decays +1192922 . A study of the $Z$ production cross-section in $pp$ collisions at $\sqrt{s} = 7$ TeV using tau final states +1193340 . Measurement of the $B^0$--$\bar B^0$ oscillation frequency $\Delta m_d$ with the decays $B^0 \to D^- \pi^+$ and $B^0 \to J\ \psi K^{*0}$ +1198431 X Observation of $D^0 - \overline{D}^0$ oscillations +1199002 X First observation of the decays $\bar{B}^0_{(s)}\to D_s^+K^-\pi^+\pi^-$ and $\bar{B}^0_s\to D_{s1}(2536)^+\pi^-$ +1202279 X First Evidence for the Decay $B_s^0 \to \mu^+ \mu^-$ +1203846 X First observation of the decay $B_{s2}^*(5840)^0 \to B^{*+} K^-$ and studies of excited $B^0_s$ mesons +1203851 X Measurement of the time-dependent $CP$ asymmetry in $B^0 \to J/\psi K^0_{\rm S}$ decays +1205646 . Measurement of $J/\psi$ production in $pp$ collisions at $\sqrt{s}=2.76$ TeV +1208102 . Measurement of the cross-section for $Z \to e^+e^-$ production in $pp$ collisions at $\sqrt{s}=7$ TeV +1208105 . Measurement of the forward energy flow in $pp$ collisions at $\sqrt{s}=7$ TeV +1208305 . Measurement of CP observables in $B^0 \to D K^{*0}$ with $D \to K^+ K^-$ +1215607 . Measurement of the fragmentation fraction ratio $f_{s}/f_{d}$ and its dependence on $B$ meson kinematics +1215769 ? Analysis of the resonant components in $B^¯+0 \to J/\psi\pi^+\pi^-$ +1216886 . Exclusive $J/\psi$ and $\psi$(2S) production in pp collisions at $ \sqrt{s} = 7$ TeV +1217726 X Measurement of the $\Lambda_b^0$, $\Xi_b^-$ and $\Omega_b^-$ baryon masses +1217862 X Amplitude analysis and the branching fraction measurement of $\bar{B}^0_s \to J/\psi K^+K^-$ +1218996 . Prompt charm production in pp collisions at sqrt(s)=7 TeV +1220792 ? Measurements of the $\Lambda_b^0 \to J/\psi \Lambda$ decay amplitudes and the $\Lambda_b^0$ polarisation in $pp$ collisions at $\sqrt{s} = 7$ TeV +1221043 . First observations of $\bar{B}_s^0 \to D^+D^-$, $D_s^+D^-$ and $D^0\bar{D}^0$ decays +1221245 X Determination of the X(3872) meson quantum numbers +1221248 X Observations of $B^0_s \rightarrow\psi(2S)\eta$ and $B^0_{(s)}\rightarrow\psi(2S)\pi^+\pi^-$ decays +1221251 . Search for the decay $B_s^0 \to D^{*\mp} \pi^\pm$ +1222505 X Search for rare $B^0_{(s)}\rightarrow \mu^+ \mu^- \mu^+ \mu^-$ decays +1222846 X Observation of the decay $B_c^+ \to \psi(2S)\pi^+$ +1223327 X Search for direct CP violation in D0 -> h- h+ modes using semileptonic B decays +1224274 X Observation of the suppressed ADS modes $B^\pm \to [\pi^\pm K^\mp \pi^+\pi^-]_D K^\pm$ and $B^\pm \to [\pi^\pm K^\mp \pi^+\pi^-]_D \pi^\pm$ +1224542 X Search for CP violation in D+ -> phi pi+ and Ds+ -> Ks pi+ decays +1225663 . Study of $B^0 \to D^{*-} \pi^+ \pi^- \pi^+$ and $B^0 \to D^{*-}K^+\pi^-\pi^+$ decays +1225786 X First measurement of the CP-violating phase in $B_s^0 \to \phi \phi$ decays +1225787 . Measurements of the branching fractions of $B^{+} \to p \bar p K^{+}$ decays +1227655 . Limits on neutral Higgs boson production in the forward region in $pp$ collisions at $\sqrt{s} = 7$ TeV +1227656 X Measurement of CP violation and the $B^0_s$ meson decay width difference with $B^0_s$ → $J/ψK^+K^-$ and $B^0_s$ → $J/ψπ^+π^-$ decays +1227805 X Measurement of the $B^0 \rightarrow K^{*0}e^+e^-$ branching fraction at low dilepton mass +1228504 . Measurement of the effective B_s^0 -> J/{\psi} K_S^0 lifetime +1228505 X Searches for violation of lepton flavour and baryon number in tau lepton decays at LHCb +1228506 . Observation of $B^+_c \rightarrow J/\psi D_s^+$ and $B^+_c \rightarrow J/\psi D_s^{*+}$ decays +1228694 . Precision measurement of the $B^{0}_{s}$-$\bar{B}^{0}_{s}$ oscillation frequency with the decay $B^{0}_{s}\rightarrow D^{-}_{s}\pi^{+}$ +1229496 X First observation of $CP$ violation in the decays of $B^0_s$ mesons +1229503 X Measurement of the branching fractions of the decays $B^0_s \to \overline{D}^0K^-\pi^+$ and $B^0 \to \overline{D}^0K^+\pi^-$ +1229504 X Differential branching fraction and angular analysis of the decay $B^{0} \to K^{*0} \mu^{+}\mu^{-}$ +1229506 X Search for D+(s) to pi+ mu+ mu- and D+(s) to pi- mu+ mu+ decays +1230340 X Precision measurement of D meson mass differences +1230344 . Production of J/psi and Upsilon mesons in pp collisions at sqrt(s) = 8 TeV +1232503 X Measurement of the CKM angle $\gamma$ from a combination of $B^{\pm} \to Dh^{\pm}$ analyses +1232507 X Differential branching fraction and angular analysis of the decay $B_s^0\to\phi\mu^{+}\mu^{-}$ +1235028 X Search for the rare decay $D^0 \to \mu^+ \mu^-$ +1235731 X Observation of $B^0_s\rightarrow\chi_{c1}\phi$ decay and study of $B^0\rightarrow\chi_{c1,2}K^{*0}$ decays +1237228 X Measurement of CP violation in the phase space of $B^{\pm} \to K^{\pm} \pi^{+} \pi^{-}$ and $B^{\pm} \to K^{\pm} K^{+} K^{-}$ decays +1237918 X First observation of the decay $B_s^0 \rightarrow \phi \bar{K}^{*0}$ +1238106 ? Measurement of the differential branching fraction of the decay $\Lambda_b^0\rightarrow\Lambda\mu^+\mu^-$ +1238809 . Measurement of B meson production cross-sections in proton-proton collisions at $\sqrt{s}$ = 7 TeV +1239158 . Searches for $B^0_{(s)} \to J/\psi p\bar{p}$ and $B^+ \to J/\psi p\bar{p}\pi^+$ decays +1240498 X First observation of the decay $B_{c}^{+}\to J/\psi K^+$ +1242008 X Precision measurement of the $\Lambda_b$ baryon lifetime +1242126 ? Measurement of the polarization amplitudes in $B^0 \to J/\psi K^{*}(892)^0$ decays +1242869 . Measurement of the relative rate of prompt $\chi_{c0}$, $\chi_{c1}$ and $\chi_{c2}$ production at $\sqrt{s}=7$TeV +1243156 . Study of $D_J$ meson decays to $D^+\pi^-$, $D^0 \pi^+$ and $D^{*+}\pi^-$ final states in pp collision +1243421 X Search for the lepton-flavor violating decays $B^0_s \rightarrow e^{\pm}\mu^{\mp}$ and $B^0 \rightarrow e^{\pm} \mu^{\mp}$ +1243424 X Measurement of the $B^0_s \to \mu^+ \mu^-$ branching fraction and search for $B^0 \to \mu^+ \mu^-$ decays at the LHCb experiment +1244131 . Studies of the decays $B^+ \to p \bar p h^+$ and observation of $B^+ \to \kern 0.1em\bar{\kern -0.1em\Lambda}(1520)p$ +1244315 . Measurement of $J/\psi$ polarization in $pp$ collisions at $\sqrt{s}=7$ TeV +1245025 X Observation of a resonance in $B^+ \to K^+ \mu^+\mu^-$ decays at low recoil +1245030 . Study of $B_{(s)}^0 \to K_{\rm S}^0 h^{+} h^{\prime -}$ decays with first observation of $B_{s}^0 \to K_{\rm S}^0 K^{\pm} \pi^{\mp}$ and $B_{s}^0 \to K_{\rm S}^0 \pi^{+} \pi^{-}$ +1246367 X First evidence for the two-body charmless baryonic decay $B^0 \to p \bar{p}$ +1246368 . Measurement of the flavour-specific CP-violating asymmetry $a_{sl}^s$ in $B_s^0$ decays +1246783 X Branching fraction and CP asymmetry of the decays $B^+ \to K_{\rm \scriptscriptstyle S}^0 \pi^+$ and $B^+ \to K_{\rm \scriptscriptstyle S}^0 K^+$ +1246784 . Observation of $B^0_s$-$\bar{B}^0_s$ mixing and measurement of mixing frequencies using semileptonic B decays +1246785 . Measurement of the $CP$ asymmetry in $B^+ \rightarrow K^+ \mu^+ \mu^-$ decays +1246901 . First measurement of time-dependent $C\!P$ violation in $B^0_s \to K^+K^-$ decays +1247054 . Measurement of Form-Factor-Independent Observables in the Decay $B^{0} \to K^{*0} \mu^+ \mu^-$ +1247810 . Model-independent search for $CP$ violation in $D^{0} \to K^{-}K^{+}\pi^{-}\pi^{+}$ and $D^{0} \to \pi^{-}\pi^{+}\pi^{+}\pi^{-}$ decays +1250004 . Observation of the Decay $B^+_c → B^0_sπ^+$ +1250005 . Observation of the decay $B_s^0\to\bar{D}^0\phi$ +1251062 X First observation of $\bar B^0 \to J/\psi K^+K^-$ and search for $\bar B^0 \to J/\psi\phi$ decays +1251899 . Study of $J/\psi$ production and cold nuclear matter effects in $pPb$ collisions at $\sqrt{s_{NN}} = 5$ TeV +1252556 X Observation of the decay $B_c \rightarrow J/\psi K^+ K^- \pi^+ $ +1254225 ? Measurement of the charge asymmetry in $B^{\pm}\rightarrow \phi K^{\pm}$ and search for $B^{\pm}\rightarrow \phi \pi^{\pm}$ decays +1255432 X Measurement of $D^0–\bar D^0$ Mixing Parameters and Search for $CP$ Violation Using $D^0 \to K^+ \pi^-$ Decays +1257611 . Observation of $\bar{B}_{(s)} \to J/\psi f_1$(1285) Decays and Measurement of the $f_1$(1285) Mixing Angle +1257744 . Search for the decay $D_0 \to \pi^+ \pi^- \mu^+ \mu^-$ +1257745 X Search for the doubly charmed baryon $\Xi_{cc}^+$ +1261027 . Measurement of CP violation in the phase space of $B^{\pm} \rightarrow K^{+} K^{-} \pi^{\pm}$ and $B^{\pm} \rightarrow \pi^{+} \pi^{-} \pi^{\pm}$ decays +1262317 . Measurements of indirect CP asymmetries in $D^0\to K^-K^+$ and $D^0\to\pi^-\pi^+$ decays +1262699 . Search for CP violation in the decay $D^+ \to \pi^-\pi^+\pi^+$ +1262703 . Study of forward Z + jet production in pp collisions at $\sqrt{s} = 7$ TeV +1265071 . Studies of beauty baryon decays to $D^0 p h^-$ and $\Lambda_c^+ h^-$ final states +1267510 X Measurement of the $\bar{B}_s^0\to D_s^-D_s^+$ and $\bar{B}_s^0\to D^-D_s^+$ effective lifetimes +1277075 . Observation of associated production of a Z boson with a D meson in the forward region +1277076 . Updated measurements of exclusive $J/\psi$ and $\psi$(2S) production cross-sections in pp collisions at $\sqrt{s}=7$ TeV +1278342 X Search for Majorana neutrinos in $B^- \to \pi^+\mu^-\mu^-$ decays +1278863 X Measurement of the $B_c^+$ meson lifetime using $B_c^+ \to J\!/\!\psi \mu^+ \nu_{\mu} X$ decays +1280069 X Searches for $\Lambda^0_{b}$ and $\Xi^{0}_{b}$ decays to $K^0_{\rm S} p \pi^{-}$ and $K^0_{\rm S}p K^{-}$ final states with first observation of the $\Lambda^0_{b} \rightarrow K^0_{\rm S}p \pi^{-}$ decay +1280929 . Measurement of $\Upsilon$ production in $pp$ collisions at $\sqrt{s}=2.76$ TeV +1280930 X Measurements of the $B^+, B^0, B^0_s$ meson and $\Lambda^0_b$ baryon lifetimes +1281231 X A study of CP violation in $B^{\pm} \to DK^{\pm}$ and $B^{\pm} \to D\pi^{\pm}$ decays with $D \to K_S^0K^{\pm}\pi^{\mp}$ final states +1281685 . Measurement of charged particle multiplicities and densities in $pp$ collisions at $\sqrt{s}=7\;$TeV in the forward region +1282444 X Precision measurement of the ratio of the $\Lambda^0_b$ to $\overline{B}^0$ lifetimes +1282445 X Measurement of resonant and CP components in $\bar{B}_s^0\to J/\psi\pi^+\pi^-$ decays +1282900 X Observation of Photon Polarization in the b→sγ Transition +1283844 ? Measurement of $\psi(2S)$ polarisation in $pp$ collisions at $\sqrt{s}=7$ TeV +1285485 X Measurement of polarization amplitudes and CP asymmetries in $B^0 \to \phi K^*(892)^0$ +1285949 . Study of beauty hadron decays into pairs of charm hadrons +1287928 X Differential branching fractions and isospin asymmetries of $B \to K^{(*)} \mu^+ \mu^-$ decays +1287929 X Angular analysis of charged and neutral $B \to K \mu^+\mu^-$ decays +1288066 X Evidence for the decay $X(3872)\rightarrow\psi(2S)\gamma$ +1288067 X Evidence for the decay $B_c^+ \rightarrow J/\psi 3\pi^+ 2\pi^-$ +1288881 X Observation of the resonant character of the $Z(4430)^-$ state +1291939 X Measurement of the resonant and CP components in $\overline{B}^0\to J/\psi \pi^+\pi^-$ decays +1294766 X Measurement of the $\Xi_b^-$ and $\Omega_b^-$ baryon lifetimes +1295690 ? Measurement of $CP$ asymmetry in $D^0 \rightarrow K^- K^+$ and $D^0 \rightarrow \pi^- \pi^+$ decays +1295905 X Observation of the $B_s^0 \to J/\psi K_s^0 K^\pm \pi^\mp$ decay +1296831 X Measurement of the CP-violating phase $\phi_s$ in $\overline{B}^0_s\rightarrow J/\psi \pi^+\pi^-$ decays +1297230 . Study of $\Upsilon$ production and cold nuclear matter effects in $p$Pb collisions at $\sqrt{s_{NN}}$=5 TeV +1298273 . Study of the kinematic dependences of $\Lambda_{b}^{0}$ production in pp collisions and a measurement of the $\Lambda_{b}^{0} \to \Lambda_{c}^{+}$ $\pi^{-}$ branching fraction +1298392 X Precision measurement of the mass and lifetime of the $\Xi_b^0$ baryon +1298985 X Observation of the $\Lambda_b^0 \rightarrow J/\psi p \pi^-$ decay +1299995 X Search for CP violation in $D^{\pm}\rightarrow K^0_{\mathrm{S}} K^{\pm}$ and $D^{\pm}_{s}\rightarrow K^0_{\mathrm{S}} \pi^{\pm}$ decays +1300150 X Observation of $Z$ production in proton-lead collisions at LHCb +1301220 . First measurement of the charge asymmetry in beauty-quark pair production +1303108 X Test of lepton universality using $B^{+}\rightarrow K^{+}\ell^{+}\ell^{-}$ decays +1303541 X Effective lifetime measurements in the $B_s^0 → K^+K^− , B^0 → K^+π^−$ and $B_s^0 → π^+K^−$ decays +1305287 X Measurement of the ratio of $B_c^+$ branching fractions to $J/\psi\pi^+$ and $J/\psi\mu^+\nu_\mu$ +1305288 X Measurement of CP violation in $B_s^0 \to \phi \phi$ decays +1307246 X Measurement of the $\bar B_s^0$ meson lifetime in $D_s^+\pi^-$ decays +1307247 X Evidence for CP Violation in $B^+\to p \overline p K^+$ Decays +1307250 ? Observation of charmonium pairs produced exclusively in $pp$ collisions +1307415 X Measurement of CP asymmetry in $B^0_s \rightarrow D^{\mp}_s K^{\pm}$ decays +1307418 X Measurement of $CP$ violation and constraints on the CKM angle $\gamma$ in $B^{\pm}\rightarrow D K^{\pm}$ with $D \rightarrow K_S^0 \pi^+ \pi^-$ decays +1308733 X Observation of overlapping spin-1 and spin-3 $\bar{D}^0 K^-$ resonances at mass $2.86 {\rm GeV}/c^2$ +1308736 X Observation of $B^0_s \to K^{*\pm}K^\mp$ and evidence for $B^0_s \to K^{*-}\pi^+$ decays +1308737 X Dalitz plot analysis of $B_s^0 \rightarrow \bar{D}^0 K^- \pi^+$ decays +1308738 . Study of $\chi _{{\mathrm {b}}}$ meson production in $\mathrm {p} $ $\mathrm {p} $ collisions at $\sqrt{s}=7$ and $8{\mathrm {\,TeV}} $ and observation of the decay $\chi _{{\mathrm {b}}}\mathrm {(3P)} \rightarrow \Upsilon \mathrm {(3S)} {\gamma } $ +1308922 X Measurement of CP violation parameters in $B^0 \to DK^{*0}$ decays +1309439 ? Measurement of the $\bar{B}^0-B^0$ and $\bar{B}^0_s-B^0_s$ production asymmetries in $pp$ collisions at $\sqrt{s}=7$ TeV +1309880 X First observation of a baryonic $B_c^+$ decay +1309881 X Measurement of $C\!P$ asymmetries in the decays $B^0 \rightarrow K^{*0} \mu^+ \mu^-$ and $B^+ \rightarrow K^{+} \mu^+ \mu^-$ +1309994 X First observations of the rare decays $B^+\!\rightarrow K^+\pi^+\pi^-\mu^+\mu^-$ and $B^+\rightarrow\phi K^+\mu^+\mu^-$ +1309999 . Measurement of the track reconstruction efficiency at LHCb +1310000 X Search for $CP$ violation using $T$-odd correlations in $D^0 \to K^+K^-\pi^+\pi^-$ decays +1310654 X Measurement of the CKM angle $\gamma$ using $B^\pm \to D K^\pm$ with $D \to K^0_{\rm S} \pi^+\pi^-, K^0_{\rm S} K^+ K^-$ decays +1311488 ! Measurement of the forward $W$ boson cross-section in $pp$ collisions at $\sqrt{s} = 7 {\rm \, TeV}$ +1311489 X Determination of $\gamma$ and −2$\beta_s$ from charmless two-body decays of beauty mesons +1311994 X Measurements of $CP$ violation in the three-body phase space of charmless $B^{\pm}$ decays +1315113 X Measurement of the $\chi_b(3P)$ mass and of the relative rate of $\chi_{b1}(1P)$ and $\chi_{b2}(1P)$ production +1316329 ? Measurement of the $\eta_c (1S)$ production cross-section in proton-proton collisions via the decay $\eta_c (1S) \rightarrow p \bar{p}$ +1317237 X Measurement of the $CP$-violating phase $\phi_s$ in $\bar{B}^{0}_{s}\to D_{s}^{+}D_{s}^{-}$ decays +1319484 X Search for the lepton flavour violating decay τ$^{−}$ → μ$^{−}$ μ$^{+}$ μ$^{−}$ +1319485 X Precision Measurement of the Mass and Lifetime of the $\Xi_b^-$ Baryon +1319487 X Measurement of the semileptonic $CP$ asymmetry in $B^0-\overline{B}{}^0$ mixing +1319638 X Precision luminosity measurements at LHCb +1322386 X Search for CP violation in $D^0 \to \pi^− \pi^+ \pi^0$ decays with the energy test +1325983 X Study of $\eta-\eta^{\prime}$ mixing from measurement of $B^0_{(s)} \rightarrow J/\psi \eta^{(\prime)}$~decay rates +1326136 ! Measurement of the Z+b-jet cross-section in pp collisions at $ \sqrt{s} $ = 7 TeV in the forward region +1326411 X Measurement of the CP-violating phase $\beta$ in $B^0\rightarrow J/\psi \pi^+\pi^-$ decays and limits on penguin effects +1327230 X Measurement of $B_c^+$ production in proton-proton collisions at $\sqrt{s}=8$ TeV +1327481 X Precision measurement of $CP$ violation in $B_s^0 \to J/\psi K^+K^-$ decays +1328624 X Observation of two new $\Xi_b^-$ baryon resonances +1329958 X Measurement of the lifetime of the $B_c^+$ meson using the $B_c^+\rightarrow J/\psi\pi^+$ decay mode +1333223 . Measurement of the inelastic pp cross-section at a centre-of-mass energy of $ \sqrt{s} $ = 7 TeV +1333397 . Search for long-lived particles decaying to jet pairs +1335135 . LHCb Detector Performance +1335137 X Study of the rare $B_s^0$ and $B^0$ decays into the $\pi^+\pi^-\mu^+\mu^-$ final state +1335499 X Determination of the branching fractions of B$_{S}^{0} \to$ D$_{S}^{∓}$ K$^{∓}$ and B$^{0}\to$  D$_{S}^{−}$ K$^{+}$ +1338587 X Angular analysis of the $B^{0} \to K^{*0} e^{+} e^{−}$ decay in the low-q$^{2}$ region +1341286 X Measurement of indirect $CP$ asymmetries in $D^0\rightarrow K^-K^+$ and $D^0\rightarrow \pi^-\pi^+$ decays using semileptonic $B$ decays +1343514 X Precise measurements of the properties of the $B_1(5721)^{0,+}$ and $B^\ast_2(5747)^{0,+}$ states and observation of $B^{+,0}\pi^{-,+}$ mass structures +1347133 . Measurement of forward $\rm Z\rightarrow e^+e^-$ production at $\sqrt{s}=8$ TeV +1351449 X First observation and amplitude analysis of the $B^{-}\to D^{+}K^{-}\pi^{-}$ decay +1353388 X Measurement of $CP$ asymmetries and polarisation fractions in $B_s^0 \rightarrow K^{*0}\bar{K}{}^{*0}$ decays +1355373 X Measurement of the time-dependent CP asymmetries in $B_s^0\rightarrow J/\psi K_{\rm S}^0$ +1355375 X Measurement of $CP$ violation in $B^0 \rightarrow J/\psi K^0_S$ decays +1355376 X Observation of the decay $\overline{B}_s^0 \rightarrow \psi(2S) K^+ \pi^-$ +1355377 X Differential branching fraction and angular analysis of $\Lambda^{0}_{b} \rightarrow \Lambda \mu^+\mu^-$ decays +1355552 X Observation of the $B^0_s\to\eta'\eta'$ decay +1356281 X Observation of the $B^0 \to \rho^0 \rho^0$ decay from an amplitude analysis of $B^0 \to (\pi^+\pi^-)(\pi^+\pi^-)$ decays +1357203 X First observation and measurement of the branching fraction for the decay $B^0_s \to D_s^{*\mp} K^{\pm}$ +1358215 X Determination of the quark coupling strength $|V_{ub}|$ using baryonic decays +1362487 X A study of $CP$ violation in $B^\mp \rightarrow Dh^\mp$ ($h=K,\pi$) with the modes $D \rightarrow K^\mp \pi^\pm \pi^0$, $D \rightarrow \pi^+\pi^-\pi^0$ and $D \rightarrow K^+K^-\pi^0$ +1364718 X Quantum numbers of the $X(3872)$ state and orbital angular momentum in its $\rho^0 J\psi$ decay +1365284 X Identification of beauty and charm quark jets at LHCb +1367298 X Amplitude analysis of $B^0 \rightarrow \bar{D}^0 K^+ \pi^-$ decays +1367305 X Search for the decay $ {B}_s^0\to {\overline{D}}^0{f}_0(980) $ +1367306 X Dalitz plot analysis of $B^0 \to \overline{D}^0 \pi^+\pi^-$ decays +1369996 X Search for the $\Lambda^0_b \rightarrow \Lambda \eta^\prime$ and $\Lambda^0_b \rightarrow \Lambda \eta$ decays with the LHCb detector +1370436 ! Study of $W$ boson production in association with beauty and charm +1373300 ! Measurement of the forward $Z$ boson production cross-section in $pp$ collisions at $\sqrt{s}=7$ TeV +1373302 X Study of $B^{-}\to DK^-\pi^+\pi^-$ and $B^-\to D\pi^-\pi^+\pi^-$ decays and determination of the CKM angle $\gamma$ +1373746 . Measurement of the exclusive Υ production cross-section in pp collisions at $ \sqrt{s}=7 $ TeV and 8 TeV +1374216 . First observation of top quark production in the forward region +1380182 X Measurement of the ratio of branching fractions $\mathcal{B}(\bar{B}^0 \to D^{*+}\tau^{-}\bar{\nu}_{\tau})/\mathcal{B}(\bar{B}^0 \to D^{*+}\mu^{-}\bar{\nu}_{\mu})$ +1380184 X First observation of the decay B$_{s}^{0}$  → K$_{S}^{0}$ K$^{∗}$(892)$^{0}$ at LHCb +1380188 X Angular analysis and differential branching fraction of the decay $B^0_s\to\phi\mu^+\mu^-$ +1380452 . Search for long-lived heavy charged particles using a ring imaging Cherenkov technique at LHCb +1382595 X Observation of $J/\psi p$ Resonances Consistent with Pentaquark States in $\Lambda_b^0 \to J/\psi K^- p$ Decays +1382599 X Measurement of the branching fraction ratio $\mathcal{B}(B_c^+ \rightarrow \psi(2S)\pi^+)/\mathcal{B}(B_c^+ \rightarrow J/\psi \pi^+)$ +1384027 . Till Moritz Karbach, Scientific Legacy +1385321 X $B$ flavour tagging using charm decays at the LHCb experiment +1386473 X Measurement of the $B_s^0 \to \phi \phi$ branching fraction and search for the decay $B^0 \to \phi \phi$ +1388185 X Search for hidden-sector bosons in $B^0 \!\to K^{*0}\mu^+\mu^-$ decays +1389705 X Measurement of the time-integrated $CP$ asymmetry in $D^0 \to K^0_S K^0_S$ decays +1391317 . Study of the production of $\Lambda_b^0$ and $\overline{B}^0$ hadrons in $pp$ collisions and first measurement of the $\Lambda_b^0\rightarrow J/\psi pK^-$ branching fraction +1391324 X Measurement of CP violation parameters and polarisation fractions in $ {\mathrm{B}}_{\mathrm{s}}^0\to \mathrm{J}/\psi {\overline{\mathrm{K}}}^{\ast 0} $ decays +1391325 X First measurement of the differential branching fraction and $C\!P$ asymmetry of the $B^\pm\to\pi^\pm\mu^+\mu^-$ decay +1391511 . Measurement of forward $J/\psi$ production cross-sections in $pp$ collisions at $\sqrt{s}=13$ TeV +1392456 . Forward production of $\Upsilon$ mesons in $pp$ collisions at $\sqrt{s}=7$ and 8TeV +1394391 X Studies of the resonance structure in $D^0\to K^0_S K^{\pm}\pi^{\mp}$ decays +1394859 ! Measurement of the forward-backward asymmetry in $Z/\gamma^{\ast} \rightarrow \mu^{+}\mu^{-}$ decays and determination of the effective weak mixing angle +1396327 X Model-independent measurement of mixing parameters in D$^{0}$ → K$_{S}^{0}$ π$^{+}$π$^{−}$ decays +1396331 . Measurements of prompt charm production cross-sections in $pp$ collisions at $ \sqrt{s}=13 $ TeV +1396563 X Model-independent confirmation of the $Z(4430)^-$ state +1397639 X Evidence for the strangeness-changing weak decay $\Xi_b^-\to\Lambda_b^0\pi^-$ +1398352 X Search for the rare decays $B^{0}\to J/\psi \gamma$ and $B^{0}_{s} \to J/\psi \gamma$ +1399056 ! Production of associated Y and open charm hadrons in pp collisions at $ \sqrt{s}=7 $ and 8 TeV via double parton scattering +1401225 X First observation of the decay $D^{0}\rightarrow K^{-}\pi^{+}\mu^{+}\mu^{-}$ in the $\rho^{0}$-$\omega$ region of the dimuon mass spectrum +1406555 . Measurement of forward W and Z boson production in $pp$ collisions at $ \sqrt{s}=8 $ TeV +1407482 X Search for the lepton-flavour violating decay $D^0 \to e^\pm\mu^\mp$ +1407486 . Measurements of long-range near-side angular correlations in $\sqrt{s_{\text{NN}}}=5$TeV proton-lead collisions in the forward region +1408740 X First observation of the rare $B^{+}\to D^{+} K^{+} \pi^{-}$ decay +1409497 X Angular analysis of the $B^{0} \to K^{*0} \mu^{+} \mu^{-}$ decay using 3 fb$^{-1}$ of integrated luminosity +1414195 X Study of D$_{sJ}^{(*) +}$ mesons decaying to D$^{∗ +}$ K$_S^0$ and D$^{*0}$ K$^{+}$ final states +1416176 X Observation of the $B_s^0 \rightarrow J/\psi \phi \phi$ decay +1418182 . Study of $\psi(2S)$ production and cold nuclear matter effects in pPb collisions at $\sqrt{s_{NN}}=5~\mathrm{TeV}$ +1420555 X Measurement of the difference of time-integrated CP asymmetries in $D^0 \rightarrow K^{-} K^{+} $ and $D^0 \rightarrow \pi^{-} \pi^{+} $ decays +1420702 X Constraints on the unitarity triangle angle $\gamma$ from Dalitz plot analysis of $B^0 \to D K^+ \pi^-$ decays +1423070 X First observation of $D^0-\bar D^0$ oscillations in $D^0\to K^+\pi^-\pi^+\pi^-$ decays and measurement of the associated coherence parameters +1423074 X A new algorithm for identifying the flavour of $B_s^0$ mesons at LHCb +1423299 X Measurement of the $B_{s}^{0} \rightarrow D_{s}^{(*)+}D_{s}^{(*)-}$ branching fractions +1425547 X Observations of $\Lambda_b^0 \to \Lambda K^+\pi^-$ and $\Lambda_b^0 \to \Lambda K^+K^-$ decays and searches for other $\Lambda_b^0$ and $\Xi_b^0$ decays to $\Lambda h^+h^{\prime -}$ final states +1426694 X Observation of $B^0_s\to\bar{D}^0 K^0_S$ and evidence for $B^0_s\to\bar{D}^{*0} K^0_S$ decays +1426827 X Observation of the $\Lambda_b^0\to\Lambda\phi$ decay +1427724 X Search for violations of Lorentz invariance and $ CPT$ symmetry in $ B^0_{(s)}$ mixing +1432696 X Observation of $ \Lambda_b^0 \to \psi(2S)pK^-$ and $ \Lambda_b^0 \to J/\psi \pi^+ \pi^- pK^-$ decays and a measurement of the $\Lambda_b^0$ baryon mass +1432698 X Search for $B_c^+$ decays to the $p\bar p\pi^+$ final state +1436488 X Measurement of $C\!P$ observables in $B^\pm \rightarrow D K^\pm$ and $B^\pm \rightarrow D \pi^\pm$ with two- and four-body $D$ decays +1444339 X Measurement of the mass and lifetime of the $\Omega_b^-$ baryon +1444343 X Model-independent measurement of the CKM angle $\gamma$ using $B^0 \to D K^{\ast 0}$ decays with $D \to K_{S}^{0} \pi^{+} \pi^{-}$ and $K_{S}^{0} K^{+} K^{-}$ +1445118 X A precise measurement of the $B^0$ meson oscillation frequency +1446752 X Measurement of the properties of the $\Xi_b^{*0}$ baryon +1449086 X Model-independent evidence for $J/\psi p$ contributions to $\Lambda_b^0\to J/\psi p K^-$ decays +1454404 . Measurement of forward $W$ and $Z$ boson production in association with jets in proton-proton collisions at $\sqrt{s}=8$ TeV +1455783 X Measurement of the CKM angle $\gamma$ using $B^0 \rightarrow D K^{*0}$ with $D \rightarrow K^0_S \pi^+ \pi^-$ decays +1466441 X Measurement of the $CP$ asymmetry in $B_s^0-\overline{B}{}_s^0$ mixing +1469448 X Measurements of the S-wave fraction in $B^{0}\rightarrow K^{+}\pi^{-}\mu^{+}\mu^{-}$ decays and the $B^{0}\rightarrow K^{\ast}(892)^{0}\mu^{+}\mu^{-}$ differential branching fraction +1471725 X Evidence for exotic hadron contributions to $\Lambda_b^0 \to J/\psi p \pi^-$ decays +1472310 X Observation of $J/\psi\phi$ structures consistent with exotic states from amplitude analysis of $B^+\to J/\psi \phi K^+$ decays +1472311 X Amplitude analysis of $B^+\to J/\psi \phi K^+$ decays +1477400 X Study of $B_c^+$ decays to the $K^+K^-\pi^+$ final state and evidence for the decay $B_c^+\to\chi_{c0}\pi^+$ +1477402 X Measurement of the $B_{s}^{0} \rightarrow J/\psi \eta$ lifetime +1477405 X Observation of $\eta_{c}(2S) \to p \bar p$ and search for $X(3872) \to p \bar p$ decays +1477581 . Measurement of the forward Z boson production cross-section in pp collisions at $\sqrt{s} = 13$ TeV +1477804 X Measurement of the ratio of branching fractions $\mathcal{B}(B_{c}^{+} \to J/\psi K^{+})/\mathcal{B}(B_{c}^{+} \to J/\psi\pi^{+})$ +1478792 X Search for Structure in the $B_s^0\pi^\pm$ Invariant Mass Spectrum +1479164 X Amplitude analysis of $B^{-} \to D^{+} \pi^{-} \pi^{-}$ decays +1479452 X Search for the suppressed decays $B^{+}\rightarrow K^{+}K^{+}\pi^{-}$ and $B^{+}\rightarrow \pi^{+}\pi^{+}K^{-}$ +1479453 . Measurement of forward $W\to e\nu$ production in $pp$ collisions at $\sqrt{s}=8\,$TeV +1481810 X First study of the CP -violating phase and decay-width difference in $B_s^0\to\psi(2S)\phi$ decays +1482943 X Measurement of $CP$ violation in $B^0 \!\rightarrow D^+ D^-$ decays +1485571 ? First experimental study of photon polarization in radiative $B^{0}_{s}$ decays +1486230 X Search for Higgs-like bosons decaying into long-lived exotic particles +1486676 X Differential branching fraction and angular moments analysis of the decay $B^0 \to K^+ \pi^- \mu^+ \mu^-$ in the $K^*_{0,2}(1430)^0$ region +1487273 X Measurement of matter-antimatter differences in beauty baryon decays +1489630 X Observation of $B^+\rightarrow J/\psi 3\pi^+ 2\pi^-$ and $B^+\rightarrow \psi(2S) \pi^+\pi^+\pi^-$ decays +1490663 . Measurements of prompt charm production cross-sections in pp collisions at $ \sqrt{s}=5 $ TeV +1491381 X Search for the $C\!P$-violating strong decays $\eta \to \pi^+\pi^-$ and $\eta^\prime(958) \to \pi^+\pi^-$ +1492324 X Observation of the decay $B^0_s \to \phi\pi^+\pi^-$ and evidence for $B^0 \to \phi\pi^+\pi^-$ +1492731 X New algorithms for identifying the flavour of ${\mathrm {B}} ^0$ mesons using pions and protons +1494582 . Measurement of forward $t\overline{t}$, $W+b\overline{b}$ and $W+c\overline{c}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV +1494585 X Observation of the annihilation decay mode $B^{0}\to K^{+}K^{-}$ +1495235 X Measurement of $CP$ asymmetry in $D^0\rightarrow K^-K^+$ decays +1496635 X Measurement of the CKM angle $\gamma$ from a combination of LHCb results +1499047 X Measurements of charm mixing and $C\!P$ violation using $D^0 \to K^\pm \pi^\mp$ decays +1499874 X Search for decays of neutral beauty mesons into four muons +1499877 X Evidence for the two-body charmless baryonic decay $ {B}^{+}\to p\overline{\varLambda} $ +1501678 X Search for massive long-lived particles decaying semileptonically in the LHCb detector +1502093 X Observation of the decay $\Xi_b^- \to p K^-K^-$ +1502914 X Search for $CP$ violation in the phase space of $D^0\rightarrow\pi^+\pi^-\pi^+\pi^-$ decays +1504058 ! Measurement of the $b$-quark production cross-section in 7 and 13 TeV $pp$ collisions +1504948 X Measurement of the ratio of branching fractions and difference in $CP$ asymmetries of the decays $B^+\to J/\psi\pi^+$ and $B^+\to J/\psi K^+$ +1505172 X Measurement of the phase difference between short- and long-distance amplitudes in the $B^{+}\to K^{+}\mu^{+}\mu^{-}$ decay +1505591 X Observation of $B_{c}^{+} \to J/\psi D^{(*)} K^{(*)}$ decays +1505592 . Measurement of the J/$\psi$ pair production cross-section in pp collisions at $ \sqrt{s}=13 $ TeV +1505730 X Search for long-lived scalar particles in $B^+ \to K^+ \chi (\mu^+\mu^-)$ decays +1506403 X Search for the $B^{0}_{s} \to \eta^{\prime}\phi$ decay +1508166 X Observation of $B_{c}^{+} \rightarrow D^{0} K^{+}$ decays +1508167 X Measurement of $CP$ asymmetries in $D^{\pm}\rightarrow \eta^{\prime} \pi^{\pm}$ and $D_s^{\pm}\rightarrow \eta^{\prime} \pi^{\pm}$ decays +1509507 . Study of J/ψ Production in Jets +1509918 X Observation of the $\varXi^{-}_{b}\to J/\psi\varLambda K^{-}$ decay +1509922 X Measurement of the $B^{\pm}$ production asymmetry and the $CP$ asymmetry in $B^{\pm} \to J/\psi K^{\pm}$ decays +1511124 X Study of the $D^0 p$ amplitude in $\Lambda_b^0\to D^0 p \pi^-$ decays +1511285 X Observation of the suppressed decay $\Lambda^{0}_{b}\rightarrow p\pi^{-}\mu^{+}\mu^{-}$ +1514549 X Measurement of the $C\!P$ violation parameter $A_\Gamma$ in $D^0 \to K^+K^-$ and $D^0 \to \pi^+\pi^-$ decays +1515201 X Observation of the decay $B_{s}^{0} \to \eta_{c} \phi$ and evidence for $B_{s}^{0} \to \eta_{c} \pi^{+} \pi^{-} $ +1515507 X Observation of the decay $\Lambda^0_b \to p K^- \mu^+ \mu^-$ and a search for $C\!P$ violation +1516410 X Search for the decays $B_s^0\to\tau^+\tau^-$ and $B^0\to\tau^+\tau^-$ +1517483 X Observation of five new narrow $\Omega_c^0$ states decaying to $\Xi_c^+ K^-$ +1517782 X Measurement of the $B^0_s\to\mu^+\mu^-$ branching fraction and effective lifetime and search for $B^0\to\mu^+\mu^-$ decays +1519165 . Measurement of $B^0$, $B^0_s$, $B^+$ and $\Lambda^0_b$ production asymmetries in 7 and 8 TeV proton-proton collisions +1594907 X Observation of the $B^+ \to D^{*-}K^+\pi^+$ decay +1596892 X Observation of the decays $\Lambda_b^0 \to \chi_{c1} p K^-$ and $\Lambda_b^0 \to \chi_{c2} p K^-$ +1596893 . First observation of a baryonic $B_s^0$ decay +1596902 X Resonances and $CP$ violation in $B_s^0$ and $\overline{B}_s^0 \to J/\psi K^+K^-$ decays in the mass region above the $\phi(1020)$ +1597124 X Observation of charmless baryonic decays $B^0_{(s)} \to p \bar{p} h^+ h^{\prime-}$ +1598757 X Measurement of $B^{0}_{s}$ and $D^{-}_{s}$ meson lifetimes +1599846 X Test of lepton universality with $B^{0} \rightarrow K^{*0}\ell^{+}\ell^{-}$ decays +1600787 . Updated search for long-lived particles decaying to jet pairs +1602477 X Improved limit on the branching fraction of the rare decay ${{K} ^0_{\mathrm { \scriptscriptstyle S}}} \rightarrow \mu ^+\mu ^-$ +1606204 ? Study of charmonium production in ${b}$-hadron decays and first evidence for the decay ${{{B}} ^0_{{s}}} \!\rightarrow \phi \phi \phi $ +1606329 ? Prompt and nonprompt J/$\psi$ production and nuclear modification in $p$Pb collisions at $\sqrt{s_{\text{NN}}}= 8.16$ TeV +1608879 X Observation of the doubly charmed baryon $\Xi_{cc}^{++}$ +1608881 . Updated branching fraction measurements of $B^0_{(s)} \to K_{\mathrm{\scriptscriptstyle S}}^0 h^+ h^{\prime -}$ decays +1609255 X Study of prompt D$^{0}$ meson production in $p$Pb collisions at $ \sqrt{s_{\mathrm{NN}}}=5 $ TeV +1611681 X Observation of $D^0$ meson decays to $\pi^+\pi^-\mu^+\mu^-$ and $K^+K^-\mu^+\mu^-$ final states +1614076 . Framework TDR for the LHCb Upgrade +1617762 X Search for Baryon-Number Violating ${\mathrm{\Xi}}_{b}^{0}$ Oscillations +1617765 ! Study of $b\bar{b}$ correlations in high energy proton-proton collisions +1618003 X Measurement of $CP$ observables in $B^\pm \to D^{(*)} K^\pm$ and $B^\pm \to D^{(*)} \pi^\pm$ decays +1620479 X Measurement of the ratio of the $B^0 \to D^{*-} \tau^+ \nu_{\tau}$ and $B^0 \to D^{*-} \mu^+ \nu_{\mu}$ branching fractions using three-prong $\tau$-lepton decays +1621592 X First Observation of the Rare Purely Baryonic Decay $B^0\to p\bar p$ +1621596 . Measurement of the $\Upsilon$ polarizations in $pp$ collisions at $\sqrt{s}=7$ and 8 TeV +1621810 X Bose-Einstein correlations of same-sign charged pions in the forward region in $pp$ collisions at $\sqrt{s}$ = 7 TeV +1621811 X Measurement of the shape of the $\Lambda_b^0\to\Lambda_c^+ \mu^- \overline{\nu}_{\mu}$ differential decay rate +1622743 X First observation of forward $Z \rightarrow b \bar{b}$ production in $pp$ collisions at $\sqrt{s}=8$ TeV +1623025 X Measurement of $CP$ violation in $B^0\rightarrow J/\psi K^0_\mathrm{S}$ and $B^0\rightarrow\psi(2S) K^0_\mathrm{S}$ decays +1623210 X $\chi_{c1}$ and $\chi_{c2}$ Resonance Parameters with the Decays $\chi_{c1,c2}\to J/\psi\mu^+\mu^-$ +1624171 X Measurement of $CP$ observables in $B^{\pm} \rightarrow D K^{*\pm}$ decays using two- and four-body $D$ final states +1629161 . Search for Dark Photons Produced in 13 TeV $pp$ Collisions +1629971 X Search for the lepton-flavour violating decays B$_{(s)}^{0} \to e^{\pm}\mu^{\mp}$ +1630633 . Measurement of the $B^{\pm}$ production cross-section in pp collisions at $\sqrt{s} =$ 7 and 13 TeV +1634432 X Measurements of the branching fractions of $\Lambda_{c}^{+} \rightarrow p \pi^{-} \pi^{+}$, $\Lambda_{c}^{+} \rightarrow p K^{-} K^{+}$, and $\Lambda_{c}^{+} \rightarrow p \pi^{-} K^{+}$ +1634841 . Test of Lepton Flavor Universality by the measurement of the $B^0 \to D^{*-} \tau^+ \nu_{\tau}$ branching fraction using three-prong $\tau$ decays +1636196 X Measurement of branching fractions of charmless four-body $\Lambda_b^0$ and $\Xi_b^0$ decays +1636198 X Measurement of the ratio of branching fractions $\mathcal{B}(B_c^+\,\to\,J/\psi\tau^+\nu_\tau)$/$\mathcal{B}(B_c^+\,\to\,J/\psi\mu^+\nu_\mu)$ +1636199 X First observation of $B^{+} \to D_s^{+}K^{+}K^{-}$ decays and a search for $B^{+} \to D_s^{+}\phi$ decays +1642234 X Updated determination of $D^0$-$\overline{D}{}^0$ mixing and CP violation parameters with $D^0\to K^+\pi^-$ decays +1642726 X Search for excited $B_{c}^{+}$ states +1643022 X Search for $B_c^+$ decays to two charm mesons +1644103 X A measurement of the $CP$ asymmetry difference in $\varLambda_{c}^{+} \to pK^{-}K^{+}$ and $p\pi^{-}\pi^{+}$ decays +1644370 X Measurement of $CP$ asymmetry in $B_s^0 \to D_s^{\mp} K^{\pm}$ decays +1644610 . Search for the rare decay $\Lambda_{c}^{+} \to p\mu^+\mu^-$ +1644616 X Search for weakly decaying $b$-flavored pentaquarks +1644790 X Evidence for the rare decay $\Sigma^+ \to p \mu^+ \mu^-$ +1644791 X Studies of the resonance structure in $D^{0} \rightarrow K^\mp \pi ^\pm \pi ^\pm \pi ^\mp $ decays +1644897 X First measurement of the $CP$-violating phase $\phi_s^{d\overline{d}}$ in $B_s^0\to(K^+\pi^-)(K^-\pi^+)$ decays +1644906 . Amplitude analysis of the decay $\overline{B}^0 \to K_{S}^0 \pi^+ \pi^-$ and first observation of the CP asymmetry in $\overline{B}^0 \to K^{*}(892)^- \pi^+$ +1662483 ! Measurement of forward top pair production in the dilepton channel in $pp$ collisions at $\sqrt{s}=13$ TeV +1665223 ! Measurement of the inelastic $pp$ cross-section at a centre-of-mass energy of 13 TeV +1665225 X Measurement of the $CP$ asymmetry in $B^-\to D_s^-D^0$ and $B^-\to D^-D^0$ decays +1668916 X Evidence for the decay $ {B}_S^0\to {\overline{K}}^{\ast 0}{\mu}^{+}{\mu}^{-} $ +1670013 . Measurement of $\Upsilon$ production in $pp$ collisions at $\sqrt{s}$= 13 TeV +1670022 X Observation of the decay $\Lambda_b^0 \to \Lambda_c^+ p \overline{p} \pi^-$ +1672368 X Measurement of $CP$ violation in $B^{0}\rightarrow D^{\mp}\pi^{\pm}$ decays +1672471 . Search for CP violation using triple product asymmetries in $\Lambda^{0}_{b}\to pK^{-}\pi^{+}\pi^{-}$, $\Lambda^{0}_{b}\to pK^{-}K^{+}K^{-}$ and $\Xi^{0}_{b}\to pK^{-}K^{-}\pi^{+}$ decays +1673686 . Measurement of $C\!P$ asymmetries in two-body $B_{(s)}^{0}$-meson decays to charged pions and kaons +1674704 . Search for a dimuon resonance in the $\Upsilon$ mass region +1674835 X Observation of a new $\Xi_b^-$ resonance +1674916 X Measurement of $D_s^{\pm}$ production asymmetry in $pp$ collisions at $\sqrt{s} =7$ and 8 TeV +1676225 X Measurement of the CKM angle $\gamma$ using $B^\pm\to DK^\pm$ with $D\to K_\text{S}^0\pi^+\pi^-$, $K_\text{S}^0K^+K^-$ decays +1676395 X Measurement of the time-integrated $CP$ asymmetry in $D^0 \rightarrow K^0_S K^0_S$ decays +1676811 X Measurement of the Lifetime of the Doubly Charmed Baryon $\Xi_{cc}^{++}$ +1677283 . Central exclusive production of $J/\psi$ and $\psi(2S)$ mesons in $pp$ collisions at $\sqrt{s}=13~$TeV +1677775 . Measurement of $Z\rightarrow\tau^+\tau^-$ production in proton-proton collisions at $\sqrt{s} = 8$ TeV +1679066 . Observation of the decay $\Lambda^0_b\rightarrow\psi(2S)p\pi^-$ +1679857 . Search for beautiful tetraquarks in the $\Upsilon(1S)\mu^+\mu^-$ invariant-mass spectrum +1680225 . Observation of the decay $ {\overline{B}}_s^0\to {\chi}_{c2}{K}^{+}{K}^{-} $ in the ϕ mass region +1680229 . Measurement of Angular and CP Asymmetries in $D^0\to\pi^+\pi^-\mu^+\mu^-$ and $D^0\to K^+K^-\mu^+\mu^-$ decays +1681011 . First observation of the doubly charmed baryon decay $\Xi_{cc}^{++}\rightarrow \Xi_{c}^{+}\pi^{+}$ +1681144 . Measurement of the $\Omega_c^0$ baryon lifetime +1681145 . Observation of the decay $B_s^0 \to \overline{D}^0 K^+ K^-$ +1681146 . Observation of $B_s^0 \to \overline{D}^{*0} \phi$ and search for $B^0 \to \overline{D}^0 \phi$ decays +1682900 . Search for $C\!P$ violation in $\Lambda^0_b \to p K^-$ and $\Lambda^0_b \to p \pi^-$ decays +1684260 . Measurement of the relative $B^{-} \!\rightarrow D^{0} / D^{*0} / D^{**0} \mu^{-} \overline{\nu}_\mu$ branching fractions using $B^{-}$ mesons from $\overline{B}{}_{s2}^{*0}$ decays +1684712 . Angular moments of the decay $\Lambda_b^0 \rightarrow \Lambda \mu^{+} \mu^{-}$ at low hadronic recoil +1688924 . Measurement of antiproton production in ${\rm p He}$ collisions at $\sqrt{s_{NN}}=110$ GeV +1690146 . Search for lepton-flavour-violating decays of Higgs-like bosons +1691586 . Physics case for an LHCb Upgrade II - Opportunities in flavour physics, and beyond, in the HL-LHC era +1692810 . Prompt $\Lambda^+_c$ production in $p\mathrm{Pb}$ collisions at $\sqrt{s_{NN}} = 5.02$ TeV +1694807 . Observation of two resonances in the $\Lambda_b^0 \pi^\pm$ systems and precise measurement of $\Sigma_b^\pm$ and $\Sigma_b^{*\pm}$ properties +1694990 . Evidence for an $\eta_c(1S) \pi^-$ resonance in $B^0 \to \eta_c(1S) K^+\pi^-$ decays