Changeset 1340 for trunk/source/particles/hadrons/ions
- Timestamp:
- Nov 5, 2010, 3:45:55 PM (15 years ago)
- Location:
- trunk/source/particles/hadrons/ions
- Files:
-
- 6 edited
-
GNUmakefile (modified) (1 diff)
-
src/G4Alpha.cc (modified) (2 diffs)
-
src/G4Deuteron.cc (modified) (3 diffs)
-
src/G4He3.cc (modified) (3 diffs)
-
src/G4IonConstructor.cc (modified) (3 diffs)
-
src/G4Triton.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/particles/hadrons/ions/GNUmakefile
r824 r1340 1 # $Id: GNUmakefile,v 1. 2 2004/06/11 14:25:23gcosmo Exp $1 # $Id: GNUmakefile,v 1.4 2010/10/27 07:47:04 gcosmo Exp $ 2 2 # -------------------------------------------------------------- 3 3 # GNUmakefile for ions library. Gabriele Cosmo, 18/9/96. -
trunk/source/particles/hadrons/ions/src/G4Alpha.cc
r1337 r1340 25 25 // 26 26 // 27 // $Id: G4Alpha.cc,v 1.1 5 2009/02/26 23:34:02kurasige Exp $28 // GEANT4 tag $Name: geant4-09-04-beta-01$27 // $Id: G4Alpha.cc,v 1.16 2010/10/11 03:33:56 kurasige Exp $ 28 // GEANT4 tag $Name: particles-V09-03-15 $ 29 29 // 30 30 // … … 72 72 "nucleus", 0, +4, 1000020040, 73 73 true, -1.0, NULL, 74 false, "static", 0,74 false, "static", -1000020040, 75 75 0.0 76 76 ); 77 77 78 78 } 79 80 //No Anti particle registered81 anInstance->SetAntiPDGEncoding(0);82 79 83 80 theInstance = reinterpret_cast<G4Alpha*>(anInstance); -
trunk/source/particles/hadrons/ions/src/G4Deuteron.cc
r1337 r1340 25 25 // 26 26 // 27 // $Id: G4Deuteron.cc,v 1.1 4 2007/03/11 07:17:35kurasige Exp $28 // GEANT4 tag $Name: geant4-09-04-beta-01$27 // $Id: G4Deuteron.cc,v 1.15 2010/10/09 10:36:02 kurasige Exp $ 28 // GEANT4 tag $Name: particles-V09-03-15 $ 29 29 // 30 30 // … … 72 72 "nucleus", 0, +2, 1000010020, 73 73 true, -1.0, NULL, 74 false, "static",0,74 false, "static", -1000010020, 75 75 0.0 76 76 ); … … 81 81 82 82 } 83 //No Anti particle registered84 anInstance->SetAntiPDGEncoding(0);85 83 86 84 theInstance = reinterpret_cast<G4Deuteron*>(anInstance); -
trunk/source/particles/hadrons/ions/src/G4He3.cc
r1337 r1340 25 25 // 26 26 // 27 // $Id: G4He3.cc,v 1.1 5 2009/02/26 23:34:02 kurasige Exp $28 // GEANT4 tag $Name: geant4-09-04-beta-01$27 // $Id: G4He3.cc,v 1.16 2010/10/09 10:36:02 kurasige Exp $ 28 // GEANT4 tag $Name: particles-V09-03-15 $ 29 29 // 30 30 // … … 72 72 "nucleus", 0, +3, 1000020030, 73 73 true, -1.0, NULL, 74 false, "static", 0,74 false, "static", -1000020030, 75 75 0.0 76 76 ); … … 81 81 82 82 } 83 //No Anti particle registered84 anInstance->SetAntiPDGEncoding(0);85 83 86 84 theInstance = reinterpret_cast<G4He3*>(anInstance); -
trunk/source/particles/hadrons/ions/src/G4IonConstructor.cc
r1337 r1340 25 25 // 26 26 // 27 // $Id: G4IonConstructor.cc,v 1. 4 2006/06/29 19:18:02 gunterExp $28 // GEANT4 tag $Name: geant4-09-04-beta-01$27 // $Id: G4IonConstructor.cc,v 1.5 2010/10/09 10:36:02 kurasige Exp $ 28 // GEANT4 tag $Name: particles-V09-03-15 $ 29 29 // 30 30 // … … 43 43 #include "G4He3.hh" 44 44 #include "G4GenericIon.hh" 45 // AntiNuclei 46 #include "G4AntiAlpha.hh" 47 #include "G4AntiDeuteron.hh" 48 #include "G4AntiTriton.hh" 49 #include "G4AntiHe3.hh" 45 50 46 51 G4IonConstructor::G4IonConstructor() … … 65 70 G4Triton::TritonDefinition(); 66 71 G4He3::He3Definition(); 72 // anti_nuclei 73 G4AntiAlpha::AntiAlphaDefinition(); 74 G4AntiDeuteron::AntiDeuteronDefinition(); 75 G4AntiTriton::AntiTritonDefinition(); 76 G4AntiHe3::AntiHe3Definition(); 67 77 // generic ion 68 78 G4GenericIon::GenericIonDefinition(); -
trunk/source/particles/hadrons/ions/src/G4Triton.cc
r1337 r1340 25 25 // 26 26 // 27 // $Id: G4Triton.cc,v 1.1 6 2009/02/26 23:34:02 kurasige Exp $28 // GEANT4 tag $Name: geant4-09-04-beta-01$27 // $Id: G4Triton.cc,v 1.17 2010/10/09 10:36:02 kurasige Exp $ 28 // GEANT4 tag $Name: particles-V09-03-15 $ 29 29 // 30 30 // … … 72 72 "nucleus", 0, +3, 1000010030, 73 73 true, -1.0, NULL, 74 false, "static", 0,74 false, "static", -1000010030, 75 75 0.0 76 76 ); … … 81 81 82 82 } 83 //No Anti particle registered84 anInstance->SetAntiPDGEncoding(0);85 83 86 84 theInstance = reinterpret_cast<G4Triton*>(anInstance);
Note:
See TracChangeset
for help on using the changeset viewer.
