Skip to content

Commit

Permalink
Removed old countingmodel user component
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Dec 6, 2016
1 parent 904d4a8 commit 1e02007
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/io/io_input.f90
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ subroutine io_input(infile,user)
user%doangle = .true.
user%testtally = .false.
user%killatmaxcrater = .false.
user%countingmodel = "FASSETT"
user%doporosity = .false.
user%soften_factor = 0.9_DP
user%soften_slope = 1.8_DP
Expand Down Expand Up @@ -214,12 +213,6 @@ subroutine io_input(infile,user)
token = line(ifirst:ilast)
read(token,*) user%velfile
ismissing(18)=.false.
case ("COUNTINGMODEL")
ifirst = ilast + 1
call io_get_token(line, ilength, ifirst, ilast, ierr)
token = line(ifirst:ilast)
read(token, *) user%countingmodel
call util_toupper(user%countingmodel)
case ("DEPLIMIT")
ifirst = ilast + 1
call io_get_token(line, ilength, ifirst, ilast, ierr)
Expand Down Expand Up @@ -536,14 +529,6 @@ subroutine io_input(infile,user)
end select
!**************************************************************************

select case(user%countingmodel)
case("FASSETT")
case("HOWL")
case default
write(*,*) 'Unknown counting model ',trim(adjustl(user%countingmodel)),' specified. Using FASSETT instead.'
user%countingmodel = "FASSETT"
end select

if (user%numlayers > MAXLAYER) then
write(*,*) 'NUMLAYERS is too high. Must not exceed ',MAXLAYER
stop
Expand Down

0 comments on commit 1e02007

Please sign in to comment.