Changeset 1347 for trunk/source/particles
- Timestamp:
- Dec 22, 2010, 3:52:27 PM (15 years ago)
- Location:
- trunk/source/particles/test
- Files:
-
- 15 edited
-
checkParticles/checkParticles.cc (modified) (2 diffs)
-
checkParticles/include/tstParticleConstructor.hh (modified) (1 diff)
-
checkParticles/src/tstParticleConstructor.cc (modified) (1 diff)
-
printMassTable/include/tst2ParticleConstructor.hh (modified) (1 diff)
-
printMassTable/printMassTable.cc (modified) (1 diff)
-
printMassTable/src/tst2ParticleConstructor.cc (modified) (1 diff)
-
reportParticleTable/include/tst2ParticleConstructor.hh (modified) (1 diff)
-
reportParticleTable/reportParticles.cc (modified) (3 diffs)
-
reportParticleTable/src/tst2ParticleConstructor.cc (modified) (1 diff)
-
retriveParticleTable/include/tst2ParticleConstructor.hh (modified) (1 diff)
-
retriveParticleTable/retrieveParticles.cc (modified) (1 diff)
-
retriveParticleTable/src/tst2ParticleConstructor.cc (modified) (1 diff)
-
storeParticleTable/include/tst2ParticleConstructor.hh (modified) (1 diff)
-
storeParticleTable/src/tst2ParticleConstructor.cc (modified) (1 diff)
-
storeParticleTable/storeParticles.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/particles/test/checkParticles/checkParticles.cc
r1315 r1347 25 25 // 26 26 // 27 // $Id: checkParticles.cc,v 1.1 2 2009/10/09 14:31:11kurasige Exp $28 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$27 // $Id: checkParticles.cc,v 1.13 2010/10/01 02:41:44 kurasige Exp $ 28 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 29 29 // 30 30 // … … 49 49 // see http://www-pdg.lbl.gov/computer_read.html 50 50 std::ifstream pdgFile; 51 G4String pdgFileName = "mass_width_20 08.mc";51 G4String pdgFileName = "mass_width_2010.mcd"; 52 52 if (argc > 1) pdgFileName = argv[1]; 53 53 -
trunk/source/particles/test/checkParticles/include/tstParticleConstructor.hh
r1315 r1347 31 31 // 32 32 // $Id: tstParticleConstructor.hh,v 1.5 2006/06/29 19:27:24 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/checkParticles/src/tstParticleConstructor.cc
r1315 r1347 31 31 // 32 32 // $Id: tstParticleConstructor.cc,v 1.5 2006/06/29 19:27:26 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/printMassTable/include/tst2ParticleConstructor.hh
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.hh,v 1.1 2009/05/02 07:23:11 kurasige Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/printMassTable/printMassTable.cc
r1315 r1347 26 26 // 27 27 // $Id: printMassTable.cc,v 1.3 2009/09/15 14:34:39 kurasige Exp $ 28 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$28 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 29 29 // 30 30 // -
trunk/source/particles/test/printMassTable/src/tst2ParticleConstructor.cc
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.cc,v 1.1 2009/05/02 07:23:11 kurasige Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/reportParticleTable/include/tst2ParticleConstructor.hh
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.hh,v 1.5 2006/06/29 19:27:30 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/reportParticleTable/reportParticles.cc
r1315 r1347 25 25 // 26 26 // 27 // $Id: reportParticles.cc,v 1.1 1 2009/09/15 14:40:26kurasige Exp $28 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$27 // $Id: reportParticles.cc,v 1.12 2010/10/11 03:08:03 kurasige Exp $ 28 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 29 29 // 30 30 // … … 86 86 if (type=="lepton") { 87 87 aPPR = pLepton; 88 88 89 } else if (type=="meson") { 89 90 aPPR = pMeson; … … 92 93 aPPR = pBaryon; 93 94 94 } else if ( type=="nucleus"){95 } else if ( (type=="nucleus") ||(type=="anti_nucleus") ){ 95 96 aPPR = pIon; 96 97 -
trunk/source/particles/test/reportParticleTable/src/tst2ParticleConstructor.cc
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.cc,v 1.6 2006/06/29 19:27:32 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/retriveParticleTable/include/tst2ParticleConstructor.hh
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.hh,v 1.2 2006/06/29 19:27:36 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/retriveParticleTable/retrieveParticles.cc
r1315 r1347 26 26 // 27 27 // $Id: retrieveParticles.cc,v 1.3 2009/09/15 14:38:47 kurasige Exp $ 28 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$28 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 29 29 // 30 30 // -
trunk/source/particles/test/retriveParticleTable/src/tst2ParticleConstructor.cc
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.cc,v 1.2 2006/06/29 19:27:38 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/storeParticleTable/include/tst2ParticleConstructor.hh
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.hh,v 1.2 2006/06/29 19:27:42 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/storeParticleTable/src/tst2ParticleConstructor.cc
r1315 r1347 31 31 // 32 32 // $Id: tst2ParticleConstructor.cc,v 1.2 2006/06/29 19:27:44 gunter Exp $ 33 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$33 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 34 34 // 35 35 // -
trunk/source/particles/test/storeParticleTable/storeParticles.cc
r1315 r1347 26 26 // 27 27 // $Id: storeParticles.cc,v 1.3 2009/09/15 14:36:31 kurasige Exp $ 28 // GEANT4 tag $Name: geant4-09-04- beta-cand-01$28 // GEANT4 tag $Name: geant4-09-04-ref-00 $ 29 29 // 30 30 //
Note:
See TracChangeset
for help on using the changeset viewer.
