Ignore:
Timestamp:
Nov 5, 2010, 3:45:55 PM (14 years ago)
Author:
garnier
Message:

update ti head

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/particles/shortlived/src/G4ExcitedSigmaConstructor.cc

    r1337 r1340  
    2525//
    2626//
    27 // $Id: G4ExcitedSigmaConstructor.cc,v 1.11 2006/10/12 10:59:45 kurasige Exp $
    28 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     27// $Id: G4ExcitedSigmaConstructor.cc,v 1.12 2010/10/01 02:41:44 kurasige Exp $
     28// GEANT4 tag $Name: particles-V09-03-15 $
    2929//
    3030//
     
    569569}
    570570
     571
     572G4double G4ExcitedSigmaConstructor::GetMass(G4int iState, G4int iso3)
     573{
     574  G4double fmass = mass[iState];
     575  if (iState == 0 ) {
     576    if (iso3== +2)       fmass -= 0.9*MeV;  // sigma+
     577    else if (iso3== -2) fmass += 3.5*MeV;  // sigma-
     578  }
     579  return fmass;
     580}
     581
     582G4double G4ExcitedSigmaConstructor::GetWidth(G4int iState, G4int iso3)
     583{
     584  G4double fw=width[iState];
     585  if (iState == 0 ) {
     586    if (iso3== +2)       fw = 35.8*MeV;  // sigma+
     587    else if (iso3== -2)  fw = 39.4*MeV;  // sigma-
     588  }
     589  return fw;
     590}
     591
    571592const char* G4ExcitedSigmaConstructor::name[] = {
    572593  "sigma(1385)","sigma(1660)","sigma(1670)","sigma(1750)","sigma(1775)",
     
    580601
    581602const G4double G4ExcitedSigmaConstructor::width[] = {
    582    35.8*MeV, 100.0*MeV,  60.0*MeV,  90.0*MeV, 120.0*MeV,
     603   36.0*MeV, 100.0*MeV,  60.0*MeV,  90.0*MeV, 120.0*MeV,
    583604  120.0*MeV, 220.0*MeV, 180.0*MeV
    584605};
Note: See TracChangeset for help on using the changeset viewer.