https://github.com/geodynamics/citcoms
Raw File
Tip revision: f97ae655a50bdbd6dac1923a3471ee4dae178fbd authored by Eric Heien on 15 October 2014, 00:59:55 UTC
Fix up manual
Tip revision: f97ae65
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