Ignore:
Timestamp:
Sep 10, 2008, 5:40:37 PM (16 years ago)
Author:
garnier
Message:

geant4.8.2 beta

Location:
trunk/source/particles/utils
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/particles/utils/include/G4HtmlPPReporter.hh

    r824 r850  
    3131//
    3232// $Id: G4HtmlPPReporter.hh,v 1.2 2006/06/29 19:27:46 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/include/G4SimplePPReporter.hh

    r824 r850  
    3131//
    3232// $Id: G4SimplePPReporter.hh,v 1.2 2006/06/29 19:27:48 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/include/G4TextPPReporter.hh

    r824 r850  
    3131//
    3232// $Id: G4TextPPReporter.hh,v 1.2 2006/06/29 19:27:50 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/include/G4TextPPRetriever.hh

    r824 r850  
    3131//
    3232// $Id: G4TextPPRetriever.hh,v 1.2 2006/06/29 19:27:52 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/include/G4VParticlePropertyReporter.hh

    r824 r850  
    3131//
    3232// $Id: G4VParticlePropertyReporter.hh,v 1.2 2006/06/29 19:27:54 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/include/G4VParticlePropertyRetriever.hh

    r824 r850  
    3131//
    3232// $Id: G4VParticlePropertyRetriever.hh,v 1.2 2006/06/29 19:27:56 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/src/G4HtmlPPReporter.cc

    r824 r850  
    3030// and all its terms.
    3131//
    32 // $Id: G4HtmlPPReporter.cc,v 1.5 2007/03/11 07:17:35 kurasige Exp $
    33 // GEANT4 tag $Name: $
     32// $Id: G4HtmlPPReporter.cc,v 1.6 2008/06/08 14:05:33 kurasige Exp $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
     
    9999  outFile << sTD << sLFONT << "Code" << eLFONT<< eTD;
    100100  outFile << sTD << sLFONT << "Name" << eLFONT<< eTD;
     101  outFile << sTD << sLFONT << "Mass" << eLFONT << eTD;
     102  outFile << sTD << sLFONT << "Charge" << eLFONT << eTD;
     103  outFile << sTD << sLFONT << "Life Time" << eLFONT << eTD;
    101104  outFile << sTD << sLFONT << "Anti-Particle" << eLFONT<< eTD;
    102105  outFile << eTR << G4endl;;
    103106 
     107  // Raw #2
     108  outFile << sTR;
     109  outFile << sTD << " " << eTD;
     110  outFile << sTD << " " << eTD;
     111  outFile << sTD <<  " [GeV/c" << sSUP << "2" << eSUP << "]" << eTD;
     112  outFile << sTD << " " << eTD;
     113  outFile << sTD <<  " [ns]" << eTD;
     114  outFile << sTD << " " << eTD;
     115  outFile << eTR << G4endl;;
     116
    104117  for (size_t i=0; i< pList.size(); i++){
    105118    if (pList[i]->GetPDGEncoding()<0) continue;
     
    119132    outFile << name << "</A>" << eTD << G4endl;
    120133   
    121     // column 3 AntiParticle
     134    // column 3 mass
     135    outFile << sTD <<  pList[i]->GetPDGMass()/GeV << eTD << G4endl;
     136
     137    // column 4 charge
     138    outFile << sTD <<  pList[i]->GetPDGCharge()/eplus << eTD << G4endl;
     139
     140    // column 5 life time
     141    outFile << sTD <<  pList[i]->GetPDGLifeTime()/ns << eTD << G4endl;
     142   
     143    // column 6 AntiParticle
    122144    if  ( (pList[i]->GetAntiPDGEncoding()!= 0) &&
    123145          (pList[i]->GetAntiPDGEncoding() != pList[i]->GetPDGEncoding() ) ) {
     
    126148      outFile << sTD <<  anti_particle->GetParticleName() << eTD << G4endl;;
    127149    }
     150
     151    // end raw
    128152    outFile << eTR << G4endl;;
    129153  }
  • trunk/source/particles/utils/src/G4SimplePPReporter.cc

    r824 r850  
    3131//
    3232// $Id: G4SimplePPReporter.cc,v 1.2 2006/06/29 19:28:00 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/src/G4TextPPReporter.cc

    r824 r850  
    3131//
    3232// $Id: G4TextPPReporter.cc,v 1.2 2006/06/29 19:28:02 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/src/G4TextPPRetriever.cc

    r824 r850  
    3131//
    3232// $Id: G4TextPPRetriever.cc,v 1.2 2006/06/29 19:28:04 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
  • trunk/source/particles/utils/src/G4VParticlePropertyReporter.cc

    r824 r850  
    3131//
    3232// $Id: G4VParticlePropertyReporter.cc,v 1.2 2006/06/29 19:28:06 gunter Exp $
    33 // GEANT4 tag $Name: $
     33// GEANT4 tag $Name: HEAD $
    3434//
    3535//
Note: See TracChangeset for help on using the changeset viewer.