-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
18 changed files
with
1,089 additions
and
1,472 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
if not User : | ||
User = LocalUser | ||
if Source : | ||
IGCM_OUT_name = '' | ||
else : | ||
IGCM_OUT_name = 'IGCM_OUT' | ||
if not ARCHIVE : | ||
ARCHIVE = os.path.join ( os.path.expanduser ('~'), 'Data' ) | ||
if not SCRATCHDIR : | ||
SCRATCHDIR = os.path.join ( os.path.expanduser ('~'), 'Data' ) | ||
if not R_BUF : | ||
R_BUF = os.path.join ( os.path.expanduser ('~'), 'Data' ) | ||
if not R_FIG : | ||
R_FIG = os.path.join ( os.path.expanduser ('~'), 'Data' ) | ||
|
||
if not STORAGE : | ||
STORAGE = ARCHIVE | ||
if not R_IN : | ||
R_IN = os.path.join ( os.path.expanduser ('~'), 'Data', 'IGCM' ) | ||
if not R_GRAF or 'http' in R_GRAF : | ||
R_GRAF = os.path.join ( os.path.expanduser ('~'), 'GRAF', 'DATA' ) | ||
if not DB : | ||
DB = os.path.join ( os.path.expanduser ('~'), 'marti', 'GRAF', 'DB' ) | ||
if not TmpDir : | ||
TmpDir = os.path.join ( os.path.expanduser ('~'), 'Scratch' ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# -*- coding: utf-8 -*- | ||
''' | ||
libIGCM | ||
author: olivier.marti@lsce.ipsl.fr | ||
This library if a layer under some usefull | ||
environment variables and commands. | ||
All those definitions depend on host particularities. | ||
This software is governed by the CeCILL license under French law and | ||
abiding by the rules of distribution of free software. You can use, | ||
modify and/ or redistribute the software under the terms of the CeCILL | ||
license as circulated by CEA, CNRS and INRIA at the following URL | ||
"http://www.cecill.info". | ||
Warning, to install, configure, run, use any of Olivier Marti's | ||
software or to read the associated documentation you'll need at least | ||
one (1) brain in a reasonably working order. Lack of this implement | ||
will void any warranties (either express or implied). | ||
O. Marti assumes no responsability for errors, omissions, | ||
data loss, or any other consequences caused directly or indirectly by | ||
the usage of his software by incorrectly or partially configured | ||
personal. | ||
''' | ||
|
||
from libIGCM.utils import Container | ||
|
||
from libIGCM import utils | ||
from libIGCM.utils import set_options, get_options, reset_options, push_stack, pop_stack, return_stack | ||
from libIGCM import date | ||
from libIGCM import sys | ||
from libIGCM import post | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.