File tree 4 files changed +17
-8
lines changed
models/generator/de_excitation/src
4 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 1
- $Id: History,v 2.29 1998/12/11 18:13:16 kurasige Exp $
1
+ $Id: History,v 1.3 1999/02/03 16:26:41 johna Exp $
2
2
-------------------------------------------------------------------
3
3
4
4
=========================================================
@@ -16,6 +16,13 @@ committal in the CVS repository !
16
16
----------------------------------------------------------
17
17
* Reverse chronological order (last date on top), please *
18
18
----------------------------------------------------------
19
+
20
+ - Feb 4, 99 H.Kurashige (particles-01-00-01)
21
+ - Re-fixed bugs in destrction of ions (Hisaya)
22
+
23
+ - Dec. 15, 98 H.Kurashige(particles-00-04-08)
24
+ - Fixed bugs in destrction of ions (Hisaya)
25
+
19
26
- Dec 11, 98 H.Kurashige (particles-00-04-07a)
20
27
- Fixed bugs in G4IonTable::GetIonMass (Hisaya)
21
28
Original file line number Diff line number Diff line change 5
5
// based on the Program) you indicate your acceptance of this statement,
6
6
// and all its terms.
7
7
//
8
- // $Id: G4IonTable.cc,v 2.17 1998/12/11 17:56:37 kurasige Exp $
9
- // GEANT4 tag $Name: geant4-00 $
8
+ // $Id: G4IonTable.cc,v 1.2 1999/01/08 11:23:51 gunter Exp $
9
+ // GEANT4 tag $Name: particles-01-00-01 $
10
10
//
11
11
//
12
12
// --------------------------------------------------------------
@@ -60,6 +60,8 @@ G4IonTable::~G4IonTable()
60
60
} else if (name == " triton" ) {
61
61
62
62
} else if (name == " He3" ) {
63
+
64
+ } else if (name == " GenericIon" ) {
63
65
64
66
} else {
65
67
// delete if not static objects
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ G4FragmentVector * G4Be8FermiFragment::GetFragment(const G4LorentzVector & aMome
67
67
// 2.0*G4NucleiPropertiesTable::GetMassExcess(2,4); // alphas
68
68
G4double AvalKineticE = sqrt (aMomentum.e ()*aMomentum.e () -
69
69
aMomentum.vect ().mag2 ()) -// Be8
70
- 2.0 *AtomNum [0 ]; // alphas
70
+ 2.0 *Masses [0 ]; // alphas
71
71
72
72
73
73
RWTPtrOrderedVector<G4LorentzVector> * SubFragsMomentum =
Original file line number Diff line number Diff line change 5
5
// based on the Program) you indicate your acceptance of this statement,
6
6
// and all its terms.
7
7
//
8
- // $Id: G4Nucleus.cc,v 2.6 1998/10/05 09:12:40 pia Exp $
9
- // GEANT4 tag $Name: geant4-00 $
8
+ // $Id: G4Nucleus.cc,v 1.2 1999/01/20 17:55:58 hpw Exp $
9
+ // GEANT4 tag $Name: hadronic-01-00-00-01 $
10
10
//
11
11
// original by H.P. Wellisch
12
12
// modified by J.L. Chuma, TRIUMF, 19-Nov-1996
108
108
109
109
G4int myZ = G4int (Z + 0.5 );
110
110
G4int myA = G4int (A + 0.5 );
111
- if ( myZ < 0 )return 0.0 ;
112
- if ( myZ > myA )return 0.0 ;
111
+ if ( myA <= 0 )return DBL_MAX ;
112
+ if ( myZ > myA)return DBL_MAX ;
113
113
if ( myA == 1 )
114
114
{
115
115
if ( myZ == 0 )return neutron_mass*MeV;
You can’t perform that action at this time.
0 commit comments