Event Generators

Total Page:16

File Type:pdf, Size:1020Kb

Event Generators Event generators Introduction Event generators generate simulated high-energy them are performed using Monte Carlo methods. physics events. Despite the simple structure of The final-state particles generated by event gen- the tree-level perturbative quantum field theory erators can be fed into a detector simulation, al- description of the collision and decay processes lowing a precise prediction and verification for the in an event, the observed high-energy process entire system of experimental setup. However, as usually contains significant amount of modifica- the detector simulation is usually a complex and tions, like photon and gluon bremsstrahlung or computationally expensive task, simple event anal- loop diagram corrections, that usually are too ysis techniques are also performed directly on event complex to be easily evaluated in real calcula- generator results. tions directly on the diagrammatic level. Any realistic test of the underlying physical process A typical hadronic event generator simulates the in a particle accelerator experiment, therefore, following subprocesses: Initial-state composition and substructure requires an adequate inclusion of these complex • Initial-state radiation behaviors surrounding the actual process. Based • The hard process on the fact that in most processes, a factoriza- • Resonance decay tion of the full process into individual problems • Final-state radiation is possible (which means a negligible effect from • interference), these individual processes are cal- Accompanying semi-hard processes • culated separately, and the probabilistic branch- Hadronization and further decay • ing between Spring 2010 COMPUTING METHODS IN HIGH ENERGY PHYSICS (page 1) S. Lehti and V.Karim¨aki Lecture 8 Event generators A typical heavy ion event generator usually can generator should be in the form of events, with the be less strict in simulating the rare and rather same average behavior and the same fluctuations negligible processes found in a hadronic genera- as real data. tor, but it would need to simulate the following subprocesses, in addition to those in a hadronic Event generators can be used in many different generator: ways. The five main applications are probably the following: Nuclear initial-state • High multiplicity, soft processes To give a feeling for the kind of events one • • may expect/hope to find, and at what rates In-medium energy loss • As a help in the planning of a new detector, Collective behavior of the medium (not • so that detector performance is optimized, • handled properly by any generators so far) within other constraints, for the study of in- The major event generators that are used by cur- teresting physics scenarios. rent experiments are e.g.: As a tool for devising the analysis strategies Pythia • that should be used with real data, to opti- • Herwig mize signal-to-background conditions • Isajet As a method for estimating detector accep- • • Alpgen tance corrections that have to be applied to • MC@NLO (Next to Leading Order) raw data • CompHEP As a convenient framework within which to • • TopReX interpret the observed phenomena in terms • As the name indicates, the output of an event of a more fundamental underlying theory Spring 2010 COMPUTING METHODS IN HIGH ENERGY PHYSICS (page 2) S. Lehti and V.Karim¨aki Lecture 8 Event generators a few optional interfaces. PYTHIA All default settings and particle and process data The PYTHIA program is frequently used for are stored in BLOCK DATA PYDATA. This sub- event generation in high-energy physics. The program must be linked at the beginning of the emphasis is on multiparticle production in colli- main program for the proper functioning of other sions between elementary particles. This in par- routines − ticular means hard interactions in e+e , pp and EXTERNAL PYDATA ep colliders, although also other applications are The program philosophy of PYTHIA is that the envisaged. The program is intended to generate Monte Carlo program is built as a slave system, and complete events, in as much detail as experimen- the user has to supply the main program. The de- tally observables ones, within the bounds of our tails how the program should perform specific tasks current understanding of the underlying physics. is done by setting common block variables. By calling subroutines the program is told to generate The documentation is extensive, and extremely events according to rules established by the user. useful, and it can be found in To extract information on the generated events, http://www.thep.lu.se/~torbjorn/Pythia.html one can look at common block PYJETS, or to call The PYTHIA package is completely self- various functions and subroutines to analyse the contained. In addition interfaces to externally events. defined subprocesses, PDF libraries, τ decay li- In the core process generation machinery, like se- braries and a time routine are provided, plus lection of hard process kinematics, a sizable Spring 2010 COMPUTING METHODS IN HIGH ENERGY PHYSICS (page 3) S. Lehti and V.Karim¨aki Lecture 8 Event generators In the initialization step all basic characteristics of amount of initialization is performed in the the coming generation are specified. This includes PYINIT call, and thereafter the events gener- the selection of required processes, the selection ated by PYEVNT all obey rules established at of kinematics, definition of the underlying physics that point. The common block variables speci- scenario, e.g. the Higgs mass, selection of PDF's, fying methods and constraints to be used have switching off of generation parts not needed, and to be set before calling PYINIT. initialization of the event generation procedure. PYTHIA is extremely versatile, but the price to In the event loop the events are generated and be paid for this is having a large number of ad- studied. The generation of next event is done with justable parameters and switches for alternative call modes of operation. Since all these parameters CALL PYEVNT and switches are assigned sensible default values, The events are then saved on disk, or interfaced to there is no reason to worry about them until the a detector simulation. need arises. Unless explicitly stated, all switches and parameters can be changed independently In the final step, in addition to producing output, of each other. the events can be normalized to expected rates as the number of events simulated is not always the The normal usage of PYTHIA can be subdivided number of events expected. For example a process into three steps: with a very large cross section may be expected to initialization • give millions of events, while simulating that many event generation loop • events may not always be feasible. In that case the printing and histogramming • events must be given weights. Spring 2010 COMPUTING METHODS IN HIGH ENERGY PHYSICS (page 4) S. Lehti and V.Karim¨aki Lecture 8 Event generators Example 1: How to get particle listing Example 2: Simulating Z boson production In PYTHIA every particle is given a unique Let's assume we want to study the Z boson in µ+µ− code, a KF code. This code is needed e.g. final state. For that we need to initialize PYTHIA when forcing decays, or when you want to se- to produce Z bosons, and then force them to de- lect a particle in your analysis for some reason. cay into muons, as there is no need to include the To get a full list of the KF codes, one can call other decay modes producing very different signa- PYLIST: tures in the detector. The initialization step looks like following: Main program: MSEL=0 CALL PYLIST(12) MSUB(1)=1 CKIN(1) = 80 END DO IDC=MDCY(22,2),MDCY(22,2)+MDCY(22,3)-1 This list is so useful that you might want to MDME(IDC,1)=MIN(0,MDME(IDC,1)) save the output on your disk or even print it. ENDDO In the listing the decay modes (IDC) for each DO IDC=MDCY(23,2),MDCY(23,2)+MDCY(23,3)-1 particle are also included. These can be used MDME(IDC,1)=MIN(0,MDME(IDC,1)) for switching decay modes on and off. Note ENDDO that while the KF code is not changed between MDME(171,1)=1 PYTHIA versions, the IDC code for decays may MDME(184,1)=1 change (and have changed) when new potential decay modes are included. CALL PYINIT('CMS','P','P',14000.D0) Spring 2010 COMPUTING METHODS IN HIGH ENERGY PHYSICS (page 5) S. Lehti and V.Karim¨aki Lecture 8 Event generators The first line MSEL=0 switches all channels off The event loop consists of a loop over as many giving full user control. events as we want. Choosing too low a value MSUB(1)=1 sets the process 1 on. The pro- for the number of simulated events results in poor cesses are listed in the PYTHIA manual, here statistics, but choosing too large a value will make ¯ ∗ we select the subprocess fifi γ =Z the simulation computationally expensive and very ! CKIN(1) sets the lower limit for m^ = ps. We time consuming. Within the event loop the events are not interested in the Z/γ∗ production well are generated by calling subroutine PYEVNT below the Z mass, it has huge cross section and The final step consists of event normalization. If the kinematical selection excludes it anyway. we assume an integrated luminosity of 30 fb−1, the The Z boson KF code is 23, the γ KF code is normalization factor (event weight) will be 22, the DO loops switch all the decay channels CNOR = PARI(2)*10.**12 *NEV*LUMI off. Once they are all off, we set the muon chan- where PARI(2) is the total integrated cross section nel open using MDME(IDC,1)=1. The particle divided by number of events, NEV is the number of listing (Example 1) gives IDC=171 for γ µµ events and LUMI the chosen luminosity.
Recommended publications
  • Introduction to Parton-Shower Event Generators
    SLAC-PUB 16160 Introduction to parton-shower event generators Stefan H¨oche1 1 SLAC National Accelerator Laboratory, Menlo Park, CA 94025, USA Abstract: This lecture discusses the physics implemented by Monte Carlo event genera- tors for hadron colliders. It details the construction of parton showers and the matching of parton showers to fixed-order calculations at higher orders in per- turbative QCD. It also discusses approaches to merge calculations for a varying number of jets, the interface to the underlying event and hadronization. 1 Introduction Hadron colliders are discovery machines. The fact that proton beams can be accelerated to higher kinetic energy than electron beams favors hadron colliders over lepton colliders when it comes to setting the record collision energy. But it comes at a cost: Because of the composite nature of the beam particles, the event structure at hadron colliders is significantly more complex than at lepton colliders, and the description of full final states necessitates involved multi-particle calculations. The high-dimensional phase space leaves Monte-Carlo integration as the only viable option. Over the past three decades, this led to the introduction and development of multi-purpose Monte-Carlo event generators for hadron collider physics [1, 2]. This lecture series discusses some basic aspects in the construction of these computer programs. 1.1 Stating the problem The search for new theories of nature which explain the existence of dark matter and dark energy is the arXiv:1411.4085v2 [hep-ph] 18 Jun 2015 focus of interest of high-energy particle physics today. One possible discovery mode is the creation of dark matter candidates at ground-based collider experiments like the Large Hadron Collider (LHC).
    [Show full text]
  • Monte Carlo Event Generators
    Durham University Monte Carlo Event Generators Lecture 1: Basic Principles of Event Generation Peter Richardson IPPP, Durham University CTEQ School July 06 1 • So the title I was given for these lectures was ‘Event Generator Basics’ • However after talking to some of you yesterday evening I realised it should probably be called ‘Why I Shouldn’t Just Run PYTHIA’ CTEQ School July 06 2 Plan • Lecture 1: Introduction – Basic principles of event generation – Monte Carlo integration techniques – Matrix Elements • Lecture 2: Parton Showers – Parton Shower Approach – Recent advances, CKKW and MC@NLO • Lecture 3: Hadronization and Underlying Event – Hadronization Models – Underlying Event Modelling CTEQ School July 06 3 Plan • I will concentrate on hadron collisions. • There are many things I will not have time to cover – Heavy Ion physics – B Production – BSM Physics – Diffractive Physics • I will concentrate on the basic aspects of Monte Carlo simulations which are essential for the Tevatron and LHC. CTEQ School July 06 4 Plan • However I will try and present the recent progress in a number of areas which are important for the Tevatron and LHC – Matching of matrix elements and parton showers • Traditional Matching Techniques • CKKW approach • MC@NLO – Other recent progress • While I will talk about the physics modelling in the different programs I won’t talk about the technical details of running them. CTEQ School July 06 5 Other Lectures and Information • Unfortunately there are no good books or review papers on Event Generator physics. • However
    [Show full text]
  • Nuwro - Neutrino MC Event Generator
    NuWro - neutrino MC event generator Tomasz Golan 28.04.2017, UW HEP Seminar Outline Neutrino source νe Detector ′ α 1. Motivation να νµ ντ 2. NuWro event generator 3. Final State Interactions 3500 MB data Total 3000 EL on carbon np-nh 2500 EL on hydrogen Irreducible background 2000 Other backgrounds 1500 4. MB NCEL data analysis No. of events 1000 500 0 0 100 200 300 400 500 600 700 Reconstructed kinetic energy (MeV) Tomasz Golan NuWro @ HEP UW 2 / 61 Introduction Basic properties of neutrinos ■ 1 Three generations 2 -spin, no electric charge, small mass Introduction of fermions H Neutrino properties (extremely hard to detect) I II III PMNS matrix Probability of oscillation u c t γ Neutrino oscillation ■ Measurement idea Interactions with elementary particles Example: T2K BOSONS QUARKS s g Energy reconstruction → electroweak theory (Standard Model) d b MC generators ■ ν νµ ν 0 NuWro Interactions with nucleons e τ Z Final state interactions → form factors e µ τ ± MB NCEL analysis → parton distribution functions LEPTONS W Backup slides ■ Interactions with nuclei → nuclear effects ■ The neutrino flavor state is a superposition of the mass states: |ναi = i Uαi |νii νe The neutrino producedP in α state να νβ νµ ντ can be measured in β state. The phenomenon is called neutrino oscillation. Tomasz Golan NuWro @ HEP UW 4 / 61 Pontecorvo-Maki-Nakagawa-Sakata matrix The PMNS matrix defines the mass mixing in the lepton sector: −iδ 1 0 0 c13 0 s13e c12 s12 0 U = 0 c23 s23 0 1 0 −s12 c12 0 iδ 0 −s23 c23 −s13e 0 c13 0 0 1 cij = cos θij sij = sin θij θij - mixing angels δ - CP phase factor Measurements: 2 ■ Solar, reactor and accelerator: sin (2θ12) = 0.846 ± 0.021 2 ■ Atmospheric: sin (2θ23) > 0.92 2 ■ Reactor: sin (2θ13) = 0.093 ± 0.008 δ can be measured if and only if all mixing angles are nonzero.
    [Show full text]
  • Event Generators
    Event Generators XI SERC School on Experimental High-Energy Physics NISER Bhubaneswar, November 07-27, 2017 Event Generators Session 1 Introduction IntroductionIntroduction Typical high energy event (p+p collision) and possible processes: Long Island, New York, USA Typical highTypical energy high event energy ( eventp+p collision)(p+p collision) and and possible possible processes: processes: M. H. Seymour and M. Marx, arXiv:1304.6677 [hep-ph] 1. Hard process 1. Hard process 2. Parton shower 2. Parton shower 3. Hadronization 3. Hadronization 4. Underlying event 4. Underlying event 5. Unstable particle decays 5. Unstable particle decays If we could create a model that rightly incorporates most physics processes and rightly predicts the physics results… Helps Increase the physics understanding of the high energy collisions2 and data results obtained 2 2 Event Generators – In General Long Island, New York, USA ü Computer programs to generate physics events, as realistic as could be using a wide range of physics processes. ü Use Monte Carlo techniques to select all relevant variables according to the desired probability distributions and to ensure randomness in final events. ü Give access to various physics observables ü Different from theoretical calculations which mostly is restricted to one particular physics observable ü The output of event generators could be used to check the behavior of detectors – how particles traverse the detector and what physics processes they undergo -- simulated in programs such as GEANT. 3 Need of Event Generators Long Island, New York, USA ü Interpret the observed phenomena in data in terms of a more fundamental underlying theory; Give physics predictions for experimental data analysis.
    [Show full text]
  • Isolated Electrons and Muons in Events with Missing Transverse Momentum at HERA
    Physics Letters B 561 (2003) 241–257 www.elsevier.com/locate/npe Isolated electrons and muons in events with missing transverse momentum at HERA H1 Collaboration V. Andreev x,B.Andrieuaa, T. Anthonis d,A.Astvatsatourovai,A.Babaevw,J.Bährai, P. Baranov x, E. Barrelet ab, W. Bartel j, S. Baumgartner aj, J. Becker ak, M. Beckingham u, A. Beglarian ah,O.Behnkem,A.Belousovx,Ch.Bergera,T.Berndtn,J.C.Bizotz, J. Böhme j, V. Boudry aa,J.Braciniky, W. Braunschweig a,V.Brissonz, H.-B. Bröker b, D.P. Brown j,D.Brunckop,F.W.Büsserk,A.Bunyatyanl,ah,A.Burrager, G. Buschhorn y, L. Bystritskaya w, A.J. Campbell j,S.Carona, F. Cassol-Brunner v, V. Chekelian y, D. Clarke e,C.Collardd,J.G.Contrerasg,1, Y.R. Coppens c, J.A. Coughlan e, M.-C. Cousinou v,B.E.Coxu,G.Cozzikai, J. Cvach ac, J.B. Dainton r, W.D. Dau o, K. Daum ag,2, M. Davidsson t, B. Delcourt z, N. Delerue v, R. Demirchyan ah, A. De Roeck j,3,E.A.DeWolfd,C.Diaconuv, J. Dingfelder m,P.Dixons, V. Dodonov l, J.D. Dowell c,A.Dubaky,C.Duprelb,G.Eckerlinj,D.Ecksteinai, V. Efremenko w, S. Egli af,R.Eichleraf,F.Eiselem,M.Ellerbrockm,E.Elsenj, M. Erdmann j,4,5, W. Erdmann aj, P.J.W. Faulkner c,L.Favartd,A.Fedotovw,R.Felstj, J. Ferencei j, S. Ferron aa,M.Fleischerj, P. Fleischmann j,Y.H.Flemingc,G.Fluckej, G. Flügge b, A. Fomenko x,I.Forestiak, J.
    [Show full text]
  • Introduction to Monte Carlo for Particle Physics Study
    Introduction to Monte Carlo for Particle Physics Study N. SRIMANOBHAS (Dept. of Physics, Faculty of Science, Chulalongkorn University) 1st CERN School Thailand October 4, 2010 1 วันจันทร์ที่ 4 ตุลาคม 2010 Credit where credit is due I collected (stole) most of my slide from Tomasz Wlodek (Monte Carlo methods in HEP) Concezio Bozzi (Monte Carlo simulation in Particle Physics) P. Richardson CERN-Fermilab school 2009 Geant4 school 2009 2 วันจันทร์ที่ 4 ตุลาคม 2010 Monte Carlo (MC) [From Tomasz Wlodek slides] General idea is “Instread of performing long complex calculations, perform large number of experiments using random number generation and see what happens” Problem: Calculate the area of this shape Any idea? 3 วันจันทร์ที่ 4 ตุลาคม 2010 10x10 40x40 Area = (# Hits)/(# Total) x total area 4 วันจันทร์ที่ 4 ตุลาคม 2010 History Method formally developed by John Neumann during the World War II, but already known before. It was used to study radiation shielding and distance that neutrons would likely travel through material. Von Neumann chose the codename "Monte Carlo". The name is a reference to the Monte Carlo Casino in Monaco where Ulam's uncle would borrow money to gamble. 5 วันจันทร์ที่ 4 ตุลาคม 2010 Why Monte Carlo? Monte Carlo assumes the system is described by probability density functions (PDF) which can be modeled. It does not need to write down and solve equation analytically/numerically. PDF comes from - Data driven - Theory driven - Data + Theory fitting 6 วันจันทร์ที่ 4 ตุลาคม 2010 Particle physics uses MC for (1) Detector design and optimization Complicate and huge detector Very expensive (2) Simulation of particle interactions with detector’s material (3) Physics analysis New predicted physics: SUSY, UED, ..
    [Show full text]
  • A New Monte Carlo Event Generator for High Energy Physics
    Computer Physics Communications 41 (1986) 127—153 127 North-Holland, Amsterdam A NEW MONTE CARLO EVENT GENERATOR FOR HIGH ENERGY PHYSICS S. KAWABATA National Laboratory for High Energy Physics, Tsukuba, Ibaraki, Japan Received 3 August 1985; in revised form 7 December 1985 PROGRAM SUMMARY Title of program: BASES/SPRING No. of lines in combined program and test deck: 2750 Catalogue number: AAFW Keywords: Multidimensional numerical integration, Monte Carlo simulation, event generation and four momentum vector Program obtainable from: CPC Program Library, Queen’s Uni- generation versity of Belfast, N. Ireland (see application form in this issue) Nature of physical problem In high energy physics experiments, it is necessary to generate Computer for which the program is designed and others on which events by the Monte Carlo method for the processes of interest it is operable: FACOM, HITAC, IBM and others with a in order to know the detection efficiencies. It is desirable to FORTRAN77 compiler have such a program that can generate events efficiently once we have the differential cross section of any process. It will be Computer: FACOM-M382, HITAC-M280; Installation: Na- a very powerful tool for the high energy physics experimenta- tional Laboratory for High Energy Physics (KEK), Tsukuba, list. Ibaraki, Japan Method of solution Operating system: OSIV/F4 MSP (FACOM), VOS3 (HITAC) A pair of program packages BASES and SPRING is developed for solving such a problem. By BASES, the differential cross Programming language used: FORTRAN77 section is integrated and a probability distribution is produced. By SPRING, four momentum vectors of events are generated High speed storage required: 145 Kwords each for BASES and according to the probability distribution mad~eby BASES.
    [Show full text]
  • The PYTHIA Event Generator: Past, Present and Future∗
    LU TP 19-31 MCnet-19-16 July 2019 The PYTHIA Event Generator: Past, Present and Future∗ Torbj¨ornSj¨ostrand Theoretical Particle Physics, Department of Astronomy and Theoretical Physics, Lund University, S¨olvegatan 14A, SE-223 62 Lund, Sweden Abstract The evolution of the widely-used Pythia particle physics event generator is outlined, from the early days to the current status and plans. The key decisions and the development of the major physics components are put in arXiv:1907.09874v1 [hep-ph] 23 Jul 2019 context. ∗submitted to 50 Years of Computer Physics Communications: a special issue focused on computational science software 1 Introduction The Pythia event generator is one of the most commonly used pieces of software in particle physics and related areas, either on its own or \under the hood" of a multitude of other programs. The program is designed to simulate the physics processes that can occur in collisions between high-energy particles, e.g. at the LHC collider at CERN. Monte Carlo methods are used to represent the quantum mechanical variability that can give rise to wildly different multiparticle final states under fixed simple initial conditions. A combi- nation of perturbative results and models for semihard and soft physics | many of them developed in the Pythia context | are combined to trace the evolution towards complex final states. The program roots stretch back over forty years to the Jetset program, with which it later was fused. Twelve manuals for the two programs have been published in Computer Physics Communications (CPC), Table 1, together collecting over 20 000 citations in the Inspire database.
    [Show full text]
  • Event Generator Physics
    Event Generator Physics Peter Skands (CERN) Joliot Curie School 2013, Frejus, France In these two lectures, we will discuss the physics of Monte Carlo event generators and their mathematical foundations, at an introductory level. We shall attempt to convey the main ideas as clearly as possible without burying them in an avalanche of technical details. References to more detailed discussions are included where applicable. We assume a basic familiarity with QCD, which will also be covered at the school in the lectures by Y. Dokshitzer. The task of a Monte Carlo event generator is to calculate everything that happens in a high-energy collision, starting from the two initial beam particles at t ! −∞ and ending with a complicated multi-particle final state that hits an imagined dector at t ! +1 (which could, e.g., be represented by a detector simulation, such as FLUKA or GEANT, but that goes beyond the scope of these lectures). This requires some compromises to be made. General-purpose generators like Herwig, Pythia, and Sherpa, start from low-order (LO or NLO) matrix-element descriptions of the hard physics and then attempt to include the “most significant” corrections, such as higher- order matrix-element corrections and parton showers, resonance decays, underlying event (via multiple parton interactions), beam remnants, hadronization, etc. Each of the generators had slightly different origins, which carries through to the em- phasis placed on various physics aspects today: • Pythia. Successor to Jetset (begun in 1978). Originated in hadronization studies. Main feature: the Lund string fragmentation model. At the time of writing the most recent version is Pythia 8.175.
    [Show full text]
  • Leptoninjector and Leptonweighter: a Neutrino Event Generator and Weighter for Neutrino Observatories
    LeptonInjector and LeptonWeighter: A neutrino event generator and weighter for neutrino observatories R. Abbasiq, M. Ackermannbe, J. Adamsr, J. A. Aguilarl, M. Ahlersv, M. Ahrensav, C. Alispachab, A. A. Alves Jr.ae, N. M. Aminao, R. Ann, K. Andeenam, T. Andersonbb, I. Ansseaul, G. Antonz, C. Argüellesn, S. Axanio, X. Baias, A. Balagopal V.ak, A. Barbanoab, S. W. Barwickad, B. Bastianbe, V. Basuak, V. Baumal, S. Baurl, R. Bayh, J. J. Beattyt,u, K.-H. Beckerbd, J. Becker Tjusk, C. Bellenghiaa, S. BenZviau, D. Berleys, E. Bernardinibe,1, D. Z. Bessonaf,2, G. Binderh,i, D. Bindigbd, E. Blaufusss, S. Blotbe, S. Böseral, O. Botnerbc, J. Böttchera, E. Bourbeauv, J. Bourbeauak, F. Bradasciobe, J. Braunak, S. Bronab, J. Brostean-Kaiserbe, A. Burgmanbc, R. S. Bussean, M. A. Campanaar, C. Chenf, D. Chirkinak, S. Choiax, B. A. Clarkx, K. Clarkag, L. Classenan, A. Colemanao, G. H. Collino, J. M. Conrado, P. Coppinm, P. Corream, D. F. Cowenba,bb, R. Crossau, P. Davef, C. De Clercqm, J. J. DeLaunaybb, H. Dembinskiao, K. Deoskarav, S. De Ridderac, A. Desaiak, P. Desiatiak, K. D. de Vriesm, G. de Wasseigem, M. de Withj, T. DeYoungx, S. Dharania, A. Diazo, J. C. Díaz-Vélezak, H. Dujmovicae, M. Dunkmanbb, M. A. DuVernoisak, E. Dvorakas, T. Ehrhardtal, P. Elleraa, R. Engelae, J. Evanss, P. A. Evensonao, S. Faheyak, A. R. Fazelyg, S. Fiedlschusterz, A.T. Fienbergbb, K. Filimonovh, C. Finleyav, L. Fischerbe, D. Foxba, A. Franckowiakk,be, E. Friedmans, A. Fritzal, P. Fürsta, T. K. Gaisserao, J. Gallagheraj, E. Ganstera, S. Garrappabe, L. Gerhardti, A. Ghadimiaz, C.
    [Show full text]
  • CERN–2005–014 DESY–PROC–2005–001 14 December 2005 Geneva 2005
    CERN–2005–014 DESY–PROC–2005–001 14 December 2005 Geneva 2005 Organizing Committee: G. Altarelli (CERN), J. Blumlein¨ (DESY), M. Botje (NIKHEF), J. Butterworth (UCL), A. De Roeck (CERN) (chair), K. Eggert (CERN), H. Jung (DESY) (chair), M. Mangano (CERN), A. Morsch (CERN), P. Newman (Birmingham), G. Polesello (INFN), O. Schneider (EPFL), R. Yoshida (ANL) Advisory Committee: J. Bartels (Hamburg), M. Della Negra (CERN), J. Ellis (CERN), J. Engelen (CERN), G. Gustafson (Lund), G. Ingelman (Uppsala), P. Jenni (CERN), R. Klanner (DESY), M. Klein (DESY), L. McLerran (BNL), T. Nakada (CERN), D. Schlatter (CERN), F. Schrempp (DESY), J. Schukraft (CERN), J. Stirling (Durham), W.K. Tung (Michigan State), A. Wagner (DESY), R. Yoshida (ANL) Contents VI Working Group 5: Monte Carlo Tools 565 Introduction to Monte Carlo tools 567 V. Lendermann, A. Nikitenko, E. Richter-Was, P. Robbe, M. H. Seymour The Les Houches Accord PDFs (LHAPDF) and LHAGLUE 575 M.R. Whalley, D. Bourilkov, R.C. Group THEPEG: Toolkit for High Energy Physics Event Generation 582 L. Lonnblad¨ PYTHIA 585 T. Sjostrand¨ HERWIG 586 M.H. Seymour Herwig++ 588 S. Gieseke The event generator SHERPA 590 T. Gleisberg, S. Hoche,¨ F. Krauss, A. Schalicke,¨ S. Schumann, J. Winter ARIADNE at HERA and at the LHC 592 L. Lonnblad¨ The Monte Carlo event generator AcerMC and package AcerDET 596 B. Kersevan, E. Richter-Was RAPGAP 601 H. Jung CASCADE 603 H. Jung Leading proton production in ep and pp experiments: how well do high-energy physics Monte Carlo generators reproduce the data? 605 G. Bruni, G. Iacobucci, L. Rinaldi, M.
    [Show full text]
  • Summary of Workshop on Common Neutrino Event Generator Tools
    Summary of Workshop on Common Neutrino Event Generator Tools Josh Barrow1, Minerba Betancourt2, Linda Cremonesi3, Steve Dytman4, Laura Fields2, Hugh Gallagher5, Steven Gardiner2, Walter Giele2, Robert Hatcher2, Joshua Isaacson2, Teppei Katori6, Pedro Machado2, Kendall Mahn7, Kevin McFarland8, Vishvas Pandey9, Afroditi Papadopoulou10, Cheryl Patrick11, Gil Paz12, Luke Pickering7, Noemi Rocco2,13, Jan Sobczyk14, Jeremy Wolcott5, and Clarence Wret8 1University of Tennessee, Knoxville, TN 37996, USA 2Fermi National Accelerator Laboratory, Batavia, Illinois 60510, USA 3Queen Mary University of London, London E1 4NS, United Kingdom 4 University of Pittsburgh, Pittsburgh, Pennsylvania 15260, USA 5Tufts University, Medford, Massachusetts 02155, USA 6King's College London, London WC2R 2LS, UK 7Michigan State University, East Lansing, Michigan 48824, USA 8University of Rochester, Rochester, New York 14627 USA 9 University of Florida, Gainesville, FL 32611, USA 10Massachusetts Institute of Technology, Cambridge, Massachusetts 02139, USA 11University College London, Gower Street, London WC1E 6BT, United Kingdom 12Wayne State University, Detroit, Michigan 48201, USA 13Argonne National Lab, Argonne IL 60439, USA 14Wroclaw University, 50-204 Wroclaw, Poland August 18, 2020 arXiv:2008.06566v1 [hep-ex] 14 Aug 2020 1 Introduction Neutrino event generators are a critical component of the simulation chains of many current and planned neutrino experiments, including the Deep Underground Neutrino Experiment (DUNE) [1] and Hyper-Kamiokande (HK) [2]. Simulating neutrino interactions with nuclei is particularly complex for accelerator-based neutrino experiments, which typically use neutrino beams with energy ranging between hundreds of MeV to tens of GeV. The dominant neutrino- nucleus interaction changes across this energy range, from relatively simple quasi-elastic scattering at the lowest energies, to deep inelastic scattering at the highest energies.
    [Show full text]