Replaced a few instances of msg with message.

This commit is contained in:
Paul Romano 2011-11-07 09:57:06 -05:00
parent e01a3be606
commit 134847fbcc
2 changed files with 2 additions and 4 deletions

View file

@ -54,7 +54,6 @@ contains
integer :: i_cycle ! cycle index
integer(8) :: i_particle ! history index
character(MAX_LINE_LEN) :: msg ! output/error message
type(Particle), pointer :: p => null()
if (master) call header("BEGIN SIMULATION", 1)
@ -69,7 +68,7 @@ contains
! Start timer for computation
call timer_start(time_compute)
msg = "Simulating cycle " // trim(int_to_str(i_cycle)) // "..."
message = "Simulating cycle " // trim(int_to_str(i_cycle)) // "..."
call write_message(8)
! Set all tallies to zero

View file

@ -30,9 +30,8 @@ contains
real(8) :: E ! outgoing energy
real(8) :: p_min(3) ! minimum coordinates of source
real(8) :: p_max(3) ! maximum coordinates of source
character(MAX_LINE_LEN) :: msg ! error message
msg = 'Initializing source particles...'
message = "Initializing source particles..."
call write_message(6)
! Determine maximum amount of particles to simulate on each processor