source: sasmodels/example/fit_sesans.py @ bc248f8

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since bc248f8 was d7cd7d1, checked in by Paul Kienzle <pkienzle@…>, 8 years ago

allow command line bumps from fit_sesans driver

  • Property mode set to 100755
File size: 576 bytes
Line 
1#!/usr/bin/env python
2import os
3import sys
4
5# Need to fix the paths to sasmodels and sasview if no eggs present
6ONEUP=os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
7PROJECTS=os.path.dirname(ONEUP)
8SASMODELS=os.path.join(PROJECTS, 'sasmodels')
9SASVIEW=os.path.join(PROJECTS, 'sasview', 'src')
10BUMPS=os.path.join(PROJECTS, 'bumps')
11
12sys.path.insert(0, BUMPS)
13sys.path.insert(0, SASVIEW)
14sys.path.insert(0, SASMODELS)
15
16if sys.argv[-1].startswith('-'):
17    from bumps.cli import main as run_bumps
18else:
19    from bumps.gui.gui_app import main as run_bumps
20run_bumps()
Note: See TracBrowser for help on using the repository browser.