| 1 | -------------------------------------------------------------------
|
|---|
| 2 |
|
|---|
| 3 | ==========================================================
|
|---|
| 4 | Geant4 - an Object-Oriented Toolkit for Physics Simulation
|
|---|
| 5 | ==========================================================
|
|---|
| 6 |
|
|---|
| 7 | History file for High Energy Parameterized Models
|
|---|
| 8 | -------------------------------------------------
|
|---|
| 9 |
|
|---|
| 10 | This file should be used to summarize modifications introduced in the
|
|---|
| 11 | code and to keep track of all tags.
|
|---|
| 12 |
|
|---|
| 13 | ---------------------------------------------------------------
|
|---|
| 14 | * Please list in reverse chronological order (last date on top)
|
|---|
| 15 | ---------------------------------------------------------------
|
|---|
| 16 |
|
|---|
| 17 | 23 July 2008 - Dennis Wright for Vladimir Uzhinskiy (hadr-hep-V09-01-04)
|
|---|
| 18 | ------------------------------------------------------------------------
|
|---|
| 19 | G4HEInelastic::HighEnergyCascading: fix bug in momentum sampling which
|
|---|
| 20 | caused oscillatory behavior in spectrum.
|
|---|
| 21 | Replace
|
|---|
| 22 | xval = Amin(1.0, pt*(binl[l-1] + G4UniformRand()*(binl[l]-binl[l-1])/2.));
|
|---|
| 23 | with
|
|---|
| 24 | xval = Amin(1.0, pt*(binl[l-1] + G4UniformRand()*(binl[l]-binl[l-1])));
|
|---|
| 25 |
|
|---|
| 26 | G4HEInelastic::MediumEnergyCascading: same as above
|
|---|
| 27 |
|
|---|
| 28 | 9 July 2008 - Dennis Wright (hadr-hep-V09-01-03)
|
|---|
| 29 | ------------------------------------------------
|
|---|
| 30 | G4HEInelastic::Factorial: replace exit with G4Exception.
|
|---|
| 31 |
|
|---|
| 32 | 9 June 2008 - Dennis Wright (hadr-hep-V09-01-02)
|
|---|
| 33 | ------------------------------------------------
|
|---|
| 34 | G4HEInelastic::NBodyPhaseSpace: remove error message "total mass > total energy"
|
|---|
| 35 | and replace with message only when verbosity is > 1
|
|---|
| 36 |
|
|---|
| 37 | 15 May 2008 - Dennis Wright (hadr-hep-V09-01-01)
|
|---|
| 38 | ------------------------------------------------
|
|---|
| 39 | G4HEInelastic::TuningOfHighEnergyCascade: remove abnormally high pt
|
|---|
| 40 | secondaries due to incident strange particles by prohibiting the
|
|---|
| 41 | assignment of leading particle to anything that goes backward in the
|
|---|
| 42 | CM frame.
|
|---|
| 43 |
|
|---|
| 44 | 17 Mar 2008 - Dennis Wright (hadr-hep-V09-01-00)
|
|---|
| 45 | ------------------------------------------------
|
|---|
| 46 | Add braces around single-statement if/else blocks to fix warning from
|
|---|
| 47 | gcc-4.3 compiler. Nearly all files affected.
|
|---|
| 48 |
|
|---|
| 49 | 19 Nov 2007 - Dennis Wright (hadr-hep-V09-00-01)
|
|---|
| 50 | ------------------------------------------------
|
|---|
| 51 | G4HEInelastic::TuningOfHighEnergyCascading: fixed incorrect assignment
|
|---|
| 52 | of leading particle to low energy backward nucleons and fragments.
|
|---|
| 53 | This bug caused high energy backward particles to be emitted from
|
|---|
| 54 | high energy collisions.
|
|---|
| 55 |
|
|---|
| 56 | 11 Oct 2007 - F.W. Jones (hadr-hep-V09-00-00)
|
|---|
| 57 | ---------------------------------------------
|
|---|
| 58 | G4HEPionMinusInelastic: fixed incorrect Imax (should be Imin) in
|
|---|
| 59 | sampling of charge exchange.
|
|---|
| 60 |
|
|---|
| 61 | 11 April 2007 - Dennis Wright (hadr-hep-V08-02-00)
|
|---|
| 62 | --------------------------------------------------
|
|---|
| 63 | Add model names to all high energy models in order to complete
|
|---|
| 64 | error reporting for hadronic whiteboard. Only .hh files were
|
|---|
| 65 | affected.
|
|---|
| 66 |
|
|---|
| 67 | 22 November 2006 - Dennis Wright (hadr-hep-V08-01-00)
|
|---|
| 68 | -----------------------------------------------------
|
|---|
| 69 | G4HEVector::G4HEVector():
|
|---|
| 70 | change
|
|---|
| 71 | strangeness=aParticle->GetDefinition()->GetQuarkContent(2);
|
|---|
| 72 | to
|
|---|
| 73 | strangeness=aParticle->GetDefinition()->GetQuarkContent(3);
|
|---|
| 74 |
|
|---|
| 75 | In this case, ordering starts from 1, not 0
|
|---|
| 76 |
|
|---|