https://github.com/geodynamics/citcoms
Revision dcb51dc13986342da9206b805e3166f7cda504df authored by Eh Tan on 26 July 2007, 22:02:43 UTC, committed by Eh Tan on 26 July 2007, 22:02:43 UTC
1 parent 154b603
Raw File
Tip revision: dcb51dc13986342da9206b805e3166f7cda504df authored by Eh Tan on 26 July 2007, 22:02:43 UTC
Fixed a bug in stable timestep
Tip revision: dcb51dc
citcoms_datadir
#!/usr/bin/env python

def get_var():
    # get your username on this machine, and make it upper case
    import os
    var = os.environ.get("USER")
    return var.upper()


# invariant prefix of datadir
prefix = "/scratch/"

# invariant suffix of datadir
suffix = ""

# get the machine-dependent part of datadir
var_path = get_var()

# construct the full string for datadir
print "%s%s%s" % ( prefix, var_path, suffix )
back to top