Show
Ignore:
Timestamp:
05/04/08 03:22:22 (8 months ago)
Author:
gary
Message:

BUGFIX - prt_comment.cpp & prt_lines_helium.cpp - fixes to code committed yesterday
*.in - test suite runs cleanly

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/source/prt_comment.cpp

    r2017 r2019  
    369369        else  
    370370        { 
    371         /* check on continuum pumping of Balmer lines */ 
    372                 flur = relfl/HBeta; 
    373                 if( flur > 0.1 ) 
    374                 { 
    375                         sprintf( chLine, "  !Continuum fluorescent production of H-beta was very important." ); 
    376                         bangin(chLine); 
    377                 } 
    378                 else if(flur > 0.01 ) 
    379                 { 
    380                         sprintf( chLine, "   Continuum fluorescent production of H-beta was significant." ); 
    381                         notein(chLine); 
     371                /* check on continuum pumping of Balmer lines */ 
     372                if( HBeta>SMALLFLOAT ) 
     373                { 
     374                        flur = relfl/HBeta; 
     375                        if( flur > 0.1 ) 
     376                        { 
     377                                sprintf( chLine, "  !Continuum fluorescent production of H-beta was very important." ); 
     378                                bangin(chLine); 
     379                        } 
     380                        else if(flur > 0.01 ) 
     381                        { 
     382                                sprintf( chLine, "   Continuum fluorescent production of H-beta was significant." ); 
     383                                notein(chLine); 
     384                        } 
    382385                } 
    383386        }