Skip to content

Commit ddbbe41

Browse files
committed
clean up
1 parent 3c34119 commit ddbbe41

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/cosp_stats.F90

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -333,17 +333,9 @@ SUBROUTINE COSP_DIAG_WARMRAIN( Npoints, Ncolumns, Nlevels, & !! in
333333
real(wp), dimension(Npoints,Ncolumns,Nlevels) :: icod !! in-cloud optical depth (ICOD)
334334
logical :: octop, ocbtm, oslwc
335335
integer, dimension(Npoints,Ncolumns,Nlevels) :: fracout_int !! fracout (decimal to integer)
336-
!integer, dimension(Npoints,Ncolumns,Nlevels) :: fracout_int2 !! fracout (decimal to integer)
337-
fracout_int(:,:,:) = NINT( fracout(:,:,:) ) !! assign an integer subpixcel ID (0=clear-sky; 1=St; 2=Cu)
338-
print *, "fracout(5:10,5:10,5:10):", fracout(5:10,5:10,5:10)
339-
print *, "fracout_int(5:10,5:10,5:10):", fracout_int(5:10,5:10,5:10)
340336
fracout_int(:,:,:) = 0
341337
where ((fracout(:,:,:) .ge. 0.5_wp) .and. (fracout(:,:,:) .lt. 1.5_wp )) fracout_int(:,:,:) = 1
342338
where ((fracout(:,:,:) .ge. 1.5_wp) .and. (fracout(:,:,:) .lt. 2.5_wp )) fracout_int(:,:,:) = 2
343-
!where (fracout(:,:,:) .eq. 1._wp) fracout_int2(:,:,:) = 1
344-
!where (fracout(:,:,:) .eq. 2._wp) fracout_int2(:,:,:) = 2
345-
!print *, "fracout_int2(5:10,5:10,5:10):", fracout_int2(5:10,5:10,5:10)
346-
!where (fracout /= fracout2) print *, fracout
347339
!! initialize
348340
do i = 1, Npoints
349341
if ( lwp(i) .eq. R_UNDEF ) then ! for non-sunlit columns

0 commit comments

Comments
 (0)