2,514 research outputs found
B-physics: new states, rare decays and branching ratios in CDF
We present results and prospects for searches for rare B and D meson decays
with final state dimuons, including B_s\to\mu\mu, B_d\to\mu\mu, and D\to\mu\mu.
Upper limits on the branching fractions are compared to previous CDF
measurements, recent results from the B factories and theoretical expectations.
We also report on new measurements of production and decay properties of the
X(3872) particle, discovered in 2003 by the Belle Collaboration. New results on
the measurement of the relative branching fraction for the Cabibbo suppressed
decay B^+\to J/\psi\pi^+ Br(B^+\to J/\psi\pi^+)/Br(B^+\to J/\psi K^+) are
presented too. The presented results are based on the analyses of 70 to 220
pb^-1 of data collected by the CDF II detector in p\bar p collisions at
\sqrt{s} = 1.96 GeV at Fermilab Tevatron.Comment: Presented at the 6th International Conference on Hyperons, Charm &
Beauty Hadrons (BEACH04), Chicago, IL, June 27 - July 03 2004. 5 page
Searches for Large Extra Dimensions at the Tevatron
The presence of extra dimensions can be probed in high energy collisions via
the production or exchange of gravitons. The former corresponds to signatures
with missing energy while the latter corresponds to modifications of the final
state spectra. Here I review results of analyses performed by the CDF and D0
Collaborations on ppbar collisions at 1.96 TeV in signatures sensitive to large
extra dimensions. These include analyses of photon+(missing transverse energy)
and jet+(missing transverse energy) as signatures of graviton production as
well as analyses of dilepton and diboson final states sensitive to graviton
exchange.Comment: 5 pages, not using DIS2008 typesetting. In proceedings of the XVI
International Workshop on Deep-Inelastic Scattering and Related Subjects, DIS
2008, 7-11 April 2008, University College Londo
Parallelized and Vectorized Tracking Using Kalman Filters with CMS Detector Geometry and Events
The High-Luminosity Large Hadron Collider at CERN will be characterized by
greater pileup of events and higher occupancy, making the track reconstruction
even more computationally demanding. Existing algorithms at the LHC are based
on Kalman filter techniques with proven excellent physics performance under a
variety of conditions. Starting in 2014, we have been developing
Kalman-filter-based methods for track finding and fitting adapted for many-core
SIMD processors that are becoming dominant in high-performance systems.
This paper summarizes the latest extensions to our software that allow it to
run on the realistic CMS-2017 tracker geometry using CMSSW-generated events,
including pileup. The reconstructed tracks can be validated against either the
CMSSW simulation that generated the hits, or the CMSSW reconstruction of the
tracks. In general, the code's computational performance has continued to
improve while the above capabilities were being added. We demonstrate that the
present Kalman filter implementation is able to reconstruct events with
comparable physics performance to CMSSW, while providing generally better
computational performance. Further plans for advancing the software are
discussed
Generalizing mkFit and its Application to HL-LHC
mkFit is an implementation of the Kalman filter-based track reconstruction
algorithm that exploits both thread- and data-level parallelism. In the past
few years the project transitioned from the R&D phase to deployment in the
Run-3 offline workflow of the CMS experiment. The CMS tracking performs a
series of iterations, targeting reconstruction of tracks of increasing
difficulty after removing hits associated to tracks found in previous
iterations. mkFit has been adopted for several of the tracking iterations,
which contribute to the majority of reconstructed tracks. When tested in the
standard conditions for production jobs, speedups in track pattern recognition
are on average of the order of 3.5x for the iterations where it is used (3-7x
depending on the iteration).
Multiple factors contribute to the observed speedups, including vectorization
and a lightweight geometry description, as well as improved memory management
and single precision. Efficient vectorization is achieved with both the icc and
the gcc (default in CMSSW) compilers and relies on a dedicated library for
small matrix operations, Matriplex, which has recently been released in a
public repository. While the mkFit geometry description already featured levels
of abstraction from the actual Phase-1 CMS tracker, several components of the
implementations were still tied to that specific geometry. We have further
generalized the geometry description and the configuration of the run-time
parameters, in order to enable support for the Phase-2 upgraded tracker
geometry for the HL-LHC and potentially other detector configurations. The
implementation strategy and high-level code changes required for the HL-LHC
geometry are presented. Speedups in track building from mkFit imply that track
fitting becomes a comparably time consuming step of the tracking chain
Reconstruction of Charged Particle Tracks in Realistic Detector Geometry Using a Vectorized and Parallelized Kalman Filter Algorithm
One of the most computationally challenging problems expected for the
High-Luminosity Large Hadron Collider (HL-LHC) is finding and fitting particle
tracks during event reconstruction. Algorithms used at the LHC today rely on
Kalman filtering, which builds physical trajectories incrementally while
incorporating material effects and error estimation. Recognizing the need for
faster computational throughput, we have adapted Kalman-filter-based methods
for highly parallel, many-core SIMD and SIMT architectures that are now
prevalent in high-performance hardware. Previously we observed significant
parallel speedups, with physics performance comparable to CMS standard
tracking, on Intel Xeon, Intel Xeon Phi, and (to a limited extent) NVIDIA GPUs.
While early tests were based on artificial events occurring inside an idealized
barrel detector, we showed subsequently that our mkFit software builds tracks
successfully from complex simulated events (including detector pileup)
occurring inside a geometrically accurate representation of the CMS-2017
tracker. Here, we report on advances in both the computational and physics
performance of mkFit, as well as progress toward integration with CMS
production software. Recently we have improved the overall efficiency of the
algorithm by preserving short track candidates at a relatively early stage
rather than attempting to extend them over many layers. Moreover, mkFit
formerly produced an excess of duplicate tracks; these are now explicitly
removed in an additional processing step. We demonstrate that with these
enhancements, mkFit becomes a suitable choice for the first iteration of CMS
tracking, and eventually for later iterations as well. We plan to test this
capability in the CMS High Level Trigger during Run 3 of the LHC, with an
ultimate goal of using it in both the CMS HLT and offline reconstruction for
the HL-LHC CMS tracker
Line Segment Tracking in the High-luminosity LHC
The Large Hadron Collider (LHC) will be upgraded to Highluminosity LHC, increasing the number of simultaneous proton-proton collisions (pileup, PU) by several-folds. The harsher PU conditions lead to exponentially increasing combinatorics in charged particle tracking, placing a large demand on the computing resources. The projection on required computing resources exceeds the computing budget with the current algorithms running on single-thread CPUs. Motivated by the rise of heterogeneous computing in high-performance computing centers, we present Line Segment Tracking (LST), a highly parallelizeable algorithm that can run efficiently on GPUs and is being integrated to the CMS experiment central software. The usage of Alpaka framework for the algorithm implementation allows better portability of the code to run on different types of commercial parallel processors allowing flexibility on which processors to purchase for the experiment in the future. To verify a similar computational performance with a native solution, the Alpaka implementation is compared with a CUDA one on a NVIDIA Tesla V100 GPU. The algorithm creates short track segments in parallel, and progressively form higher level objects by linking segments that are consistent with genuine physics track hypothesis. The computing and physics performance are on par with the latest, multi-CPU versions of existing CMS tracking algorithms
Generalizing mkFit and its Application to HL-LHC
mkFit is an implementation of the Kalman filter-based track reconstruction algorithm that exploits both threadand data-level parallelism. In the past few years the project transitioned from the R&D phase to deployment in the Run-3 offline workflow of the CMS experiment. The CMS tracking performs a series of iterations, targeting reconstruction of tracks of increasing difficulty after removing hits associated to tracks found in previous iterations. mkFit has been adopted for several of the tracking iterations, which contribute to the majority of reconstructed tracks. When tested in the standard conditions for production jobs, speedups in track pattern recognition are on average of the order of 3.5x for the iterations where it is used (3-7x depending on the iteration). Multiple factors contribute to the observed speedups, including vectorization and a lightweight geometry description, as well as improved memory management and single precision. Efficient vectorization is achieved with both the icc and the gcc (default in CMSSW) compilers and relies on a dedicated library for small matrix operations, Matriplex, which has recently been released in a public repository. While the mkFit geometry description already featured levels of abstraction from the actual Phase-1 CMS tracker, several components of the implementations were still tied to that specific geometry. We have further generalized the geometry description and the configuration of the run-time parameters, in order to enable support for the Phase-2 upgraded tracker geometry for the HL-LHC and potentially other detector configurations. The implementation strategy and high-level code changes required for the HL-LHC geometry are presented. Speedups in track building from mkFit imply that track fitting becomes a comparably time consuming step of the tracking chain. Prospects for an mkFit implementation of the track fit are also discussed
Differential cross section measurements for the production of a W boson in association with jets in proton–proton collisions at √s = 7 TeV
Measurements are reported of differential cross sections for the production of a W boson, which decays into a muon and a neutrino, in association with jets, as a function of several variables, including the transverse momenta (pT) and pseudorapidities of the four leading jets, the scalar sum of jet transverse momenta (HT), and the difference in azimuthal angle between the directions of each jet and the muon. The data sample of pp collisions at a centre-of-mass energy of 7 TeV was collected with the CMS detector at the LHC and corresponds to an integrated luminosity of 5.0 fb[superscript −1]. The measured cross sections are compared to predictions from Monte Carlo generators, MadGraph + pythia and sherpa, and to next-to-leading-order calculations from BlackHat + sherpa. The differential cross sections are found to be in agreement with the predictions, apart from the pT distributions of the leading jets at high pT values, the distributions of the HT at high-HT and low jet multiplicity, and the distribution of the difference in azimuthal angle between the leading jet and the muon at low values.United States. Dept. of EnergyNational Science Foundation (U.S.)Alfred P. Sloan Foundatio
- …