Last change
on this file since 5306 was
2,
checked in by lmdz, 25 years ago
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
785 bytes
|
Line | |
---|
1 | SUBROUTINE abort_gcm(modname, message, ierr) |
---|
2 | |
---|
3 | USE IOIPSL |
---|
4 | C |
---|
5 | C Stops the simulation cleanly, closing files and printing various |
---|
6 | C comments |
---|
7 | C |
---|
8 | C Input: modname = name of calling program |
---|
9 | C message = stuff to print |
---|
10 | C ierr = severity of situation ( = 0 normal ) |
---|
11 | |
---|
12 | character*20 modname |
---|
13 | integer ierr |
---|
14 | character*80 message |
---|
15 | |
---|
16 | write(*,*) 'in abort_gcm' |
---|
17 | call histclo |
---|
18 | c call histclo(2) |
---|
19 | c call histclo(3) |
---|
20 | c call histclo(4) |
---|
21 | c call histclo(5) |
---|
22 | write(*,*) 'out of histclo' |
---|
23 | write(*,*) 'Stopping in ', modname |
---|
24 | write(*,*) 'Reason = ',message |
---|
25 | if (ierr .eq. 0) then |
---|
26 | write(*,*) 'Everything is cool' |
---|
27 | else |
---|
28 | write(*,*) 'Houston, we have a problem ', ierr |
---|
29 | endif |
---|
30 | STOP |
---|
31 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.