source: TOOLS/ConsoGENCMIP6/bin/gencmip6_path.py.init @ 2421

Last change on this file since 2421 was 2421, checked in by labetoulle, 9 years ago

copy plots on dods

  • Property svn:executable set to *
File size: 726 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4# this must come first
5from __future__ import print_function, unicode_literals, division
6
7# standard library imports
8import os
9# import os.path
10
11# Application library imports
12from gencmip6 import *
13
14
15ROOT_DIR = os.getcwd()
16
17# Common paths
18DIR = {
19  "ROOT": ROOT_DIR,
20  "DATA": os.path.join(ROOT_DIR, "output"),
21  "SAVE": os.path.join(ROOT_DIR, "save"),
22  "PLOT": os.path.join(ROOT_DIR, "plot"),
23  "DODS": None,
24}
25
26# Common files
27OUT = {
28  "PARAM": "OUT_CONSO_PARAM",
29  "BILAN": "OUT_CONSO_BILAN",
30  "UTHEO": "OUT_CONSO_UTHEO",
31  "LOGIN": "OUT_CONSO_LOGIN",
32  "STORE": "OUT_CONSO_STORE",
33  "CCCMP": "ccc_myproject.dat"
34}
35
36
37if __name__ == "__main__":
38  print(DIR, )
39  print(OUT, )
Note: See TracBrowser for help on using the repository browser.