Rachel GUI
From GOSIA
(→General: Added use of the compile-all.sh script) |
(Changed installation to include forking the git repo.) |
||
Line 3: | Line 3: | ||
[[File:Guisnapshot.png|thumb|right|A snapshot of the alpha version GUI.]] | [[File:Guisnapshot.png|thumb|right|A snapshot of the alpha version GUI.]] | ||
- | For a | + | For a demo of Rachel's capabilities, watch [http://youtu.be/moVVC-GODzQ The Rachel Video on Youtube], or [http://www.pas.rochester.edu/~hayes/beta_rachel/main_ad.html Download the mp4 (9MB)]. |
The Rachel interface facilitates [http://www.pas.rochester.edu/~hayes/beta_rachel/calculation_in_2_minutes.html fast setup of Gosia calculations] and data analysis using push-button controls with guided input and 'plain language' warnings during setup. Rachel is written in Python 2.6 and is expected to be Python 2.7 compliant. It runs under Linux and Unix (OS X) machines. A Windows version is not planned. | The Rachel interface facilitates [http://www.pas.rochester.edu/~hayes/beta_rachel/calculation_in_2_minutes.html fast setup of Gosia calculations] and data analysis using push-button controls with guided input and 'plain language' warnings during setup. Rachel is written in Python 2.6 and is expected to be Python 2.7 compliant. It runs under Linux and Unix (OS X) machines. A Windows version is not planned. | ||
Line 13: | Line 13: | ||
==How to get the Rachel package== | ==How to get the Rachel package== | ||
- | + | Get the latest release version from the [[Gosia#Downloads | Downloads section on the Main Page]]. | |
- | + | ||
- | + | ||
==Version notes== | ==Version notes== | ||
Line 25: | Line 23: | ||
===General=== | ===General=== | ||
- | A script was added by Mitch Allmond that compiles and sets up Rachel, Gosia and Elast in one step. First, un- | + | A script was added by Mitch Allmond that compiles and sets up Rachel, Gosia and Elast in one step. First, un-tar the distribution, or pull the git repo from the [[Gosia#Downloads | Downloads section on the Main Page]]. Please fork it and make pull requests if you have anything to contribute. |
<pre> | <pre> | ||
Line 40: | Line 38: | ||
You will be prompted if any previous setup information needs to be overwritten. | You will be prompted if any previous setup information needs to be overwritten. | ||
- | Rachel has been installed successfully on a number of Linux and OS X systems. Most problems are related to the level scheme graphics. Refer to | + | Rachel has been installed successfully on a number of Linux and OS X systems. Most problems are related to the level scheme graphics. Refer to [http://matplotlib.sourceforge.net/faq/installing_faq.html#backends matplotlib backends] for remedies. You can view or submit detailed installation notes for any particular operating system. (Please link them to a separate Wiki page.) |
If the default python environment set in the rachel.py executable is not appropriate, the following error will appear: | If the default python environment set in the rachel.py executable is not appropriate, the following error will appear: | ||
Line 83: | Line 81: | ||
When changing to version 1.0 or later, users will have to rebuild their sessions, because of major changes in the internal structure that cannot be automatically upgraded. This can be aided by the export/import tools for the level and matrix data. Subsequent versions will have the automatic upgrading reinstated. | When changing to version 1.0 or later, users will have to rebuild their sessions, because of major changes in the internal structure that cannot be automatically upgraded. This can be aided by the export/import tools for the level and matrix data. Subsequent versions will have the automatic upgrading reinstated. | ||
+ | |||
+ | ==Graphics Issues== | ||
+ | |||
+ | If you do not see a level scheme diagram after loading a level scheme or a saved session, click "Examine fig. window" once. The level scheme should then appear. | ||
+ | |||
+ | If it does not, or if the level scheme window buttons (zoom, pan, etc.) do not work, you may need to change the graphics back-end. The matplotlib graphics library used for the level scheme and particle detector layout comes with several choices of back-ends. | ||
+ | |||
+ | *On OS X machines, "macosx" may work best. | ||
+ | *On Ubuntu, GTKAgg works best, but the user must click "Examine fig. window" 'once' after loading a level scheme or saved session. | ||
+ | |||
+ | The back-end is in the matplotlibrc file in the .matplotlib directory, or will be, after you start Rachel for the first time. | ||
+ | |||
+ | <pre> | ||
+ | hayes@Sobchak:~$ cd .matplotlib/ | ||
+ | hayes@Sobchak:~/.matplotlib$ ll | ||
+ | total 116K | ||
+ | drwxr-xr-x 3 hayes hayes 4.0K Nov 5 12:30 ./ | ||
+ | drwxr-xr-x 125 hayes hayes 12K Nov 5 12:53 ../ | ||
+ | -rw-r--r-- 1 hayes hayes 92K Oct 27 13:13 fontList.cache | ||
+ | -rw-r--r-- 1 hayes hayes 17 Aug 19 02:09 matplotlibrc | ||
+ | drwxrwxr-x 2 hayes hayes 4.0K Oct 27 13:13 tex.cache/ | ||
+ | hayes@Sobchak:~/.matplotlib$ cat matplotlibrc | ||
+ | backend : GTKAgg | ||
+ | hayes@Sobchak:~/.matplotlib$ | ||
+ | </pre> | ||
+ | |||
+ | Change the backend line as desired. The choices are found | ||