Difference between revisions of "Sample scripts.relax disp.return offset data"

From relax wiki
Jump to navigation Jump to search
(No difference)

Revision as of 21:38, 6 March 2014

How to

# Python module imports.
from os import sep
import sys

# relax module imports.
from status import Status; status = Status()

# Add to sys path
sys.path.append(status.install_path+sep+"sample_scripts"+sep+"relax_disp")

# Import the script, which have different functions in them
import return_offset_data

# Execute one of the scripts
return_offset_data.generate_theta_dic()

See also