<div dir="ltr"><div><div><div><div><div><div><div><div><div><div><div>Hi Matt, <br><br></div>That works nicely. The manual setting of the pf reference overrides another (weak) setting - is that it?<br><br></div>It still feels a little hacky though. Maybe we should add an error check to eps_multiplot_yt to check that the <br>
</div>reference is set? <br><br></div>John R<br><br></div>P.S. <br></div>One other question. John when I tried to pull down your fix for the image size using <br>hg pull -r 762ef5f  <a href="https://bitbucket.org/jwise77/yt">https://bitbucket.org/jwise77/yt</a><br>
</div>hg update<br></div><br></div>the eps_writer.py didn't update - should it have? It was only a single line so it was easy to just insert. <br></div>Just curious what I was doing wrong. <br><br></div><br></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Tue, Dec 3, 2013 at 11:07 PM, Matthew Turk <span dir="ltr"><<a href="mailto:matthewturk@gmail.com" target="_blank">matthewturk@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi John and John,<br>
<div class="im"><br>
On Tue, Dec 3, 2013 at 4:06 PM, John Wise <<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>> wrote:<br>
> Yeah, it was surprising to me, also.  I don't know the best way to store the<br>
> pfs somehow without the user manually saving it.<br>
><br>
> When the multi-panel plot is made, the figures are refreshed and that is<br>
> where the pf is needed.  This is to everyone... is there a way to make the<br>
> pf reference in the PlotWindow a "hard" reference instead of a weak one?<br>
><br>
<br>
</div>Yes -- but the reason it's weak is so that we can't leak references,<br>
since they are somewhat circular.  You will have to manually swap it<br>
out, unfortunately, by doing:<br>
<br>
<a href="http://p.pf" target="_blank">p.pf</a> = pf<br>
<br>
That should do it.  Really, you just need a reference to the pf --<br>
doesn't matter where it's kept.<br>
<br>
-Matt<br>
<div class="HOEnZb"><div class="h5"><br>
> Thanks,<br>
> John<br>
><br>
><br>
> On 12/03/2013 03:24 PM, John Regan wrote:<br>
>><br>
>> Hi John,<br>
>><br>
>> Interesting. I didn't realise the proj objects referenced the pf object<br>
>> again during the rendering.<br>
>><br>
>> In that case the API should probably somehow take that information with<br>
>> it since otherwise it is a little inconsistent. How are the pf object<br>
>> and the proj object connected?<br>
>><br>
>> If we can get to each proj from each pf  then the pf is the reference to<br>
>> send.<br>
>><br>
>> Interesting problem. I'd be interested in staying involved in this as<br>
>> part of my yt education! Happy to try to introduce a fix too but I'd<br>
>> need a little guidance I think....<br>
>><br>
>> Cheers,<br>
>> John<br>
>><br>
>> On 3 Dec 2013 21:35, "John Wise" <<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a><br>
>> <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>> wrote:<br>
>><br>
>>     Hi John,<br>
>><br>
>>     I figured out the problem.  When the multiplot routine is called, it<br>
>>     re-renders the image, using the pf weak reference inside of the<br>
>>     PlotWindow.  However in the your script, the pf reference is<br>
>>     overwritten every loop.  Here's a script that worked for me with two<br>
>>     timesteps,<br>
>><br>
>>     fnum = [20,21]<br>
>>     center = None<br>
>>     plots = []<br>
>>     pf = []<br>
>>     L = [0.5, 0.5, 1.0]<br>
>>     for f in fnum:<br>
>>          pf.append(load("DD%4.4d/__output_%4.4d" % (f,f)))<br>
>><br>
>>          if center == None:<br>
>>              value, center = pf[-1].h.find_max('Density')<br>
>><br>
>>          p = OffAxisSlicePlot(pf[-1], L, "Density", center=center,<br>
>>                               axes_unit='unitary', width=(5.0, 'kpc'),<br>
>>                               fontsize=12)<br>
>>          plots.append(p)<br>
>><br>
>>     mp = eps.multiplot_yt(1, 2, plots, bare_axes=False, margins=(1,1))<br>
>>     mp.save_fig('multi', format='eps')<br>
>><br>
>>     Can anyone determine a better workaround than storing the parameter<br>
>>     file objects in some variable?<br>
>><br>
>>     Cheers,<br>
>>     John<br>
>><br>
>>     On 12/03/2013 11:23 AM, John Regan wrote:<br>
>><br>
>>         Hi John,<br>
>><br>
>>         OK I think I have it running now. I rebuilt YT and re pulled<br>
>>         your PR and<br>
>>         it looks like everything is good now.<br>
>>         Unfortunately the code fails in the same way as before<br>
>><br>
>>         Traceback (most recent call last):<br>
>>             File "OffAxisProjection_MultiPlot.__py", line 63, in <module><br>
>><br>
>>               mp = eps.multiplot_yt(1, 2, proj, bare_axes=False,<br>
>>         margins=(0.75,0.75))<br>
>>             File<br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/eps___writer.py",<br>
>><br>
>>         line 1132, in multiplot_yt<br>
>>               figure = multiplot(ncol, nrow, yt_plots=plots,<br>
>>         fields=fields, **kwargs)<br>
>>             File<br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/eps___writer.py",<br>
>><br>
>>         line 980, in multiplot<br>
>>               field=fields[index])<br>
>>             File<br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/eps___writer.py",<br>
>><br>
>>         line 453, in insert_image_yt<br>
>>               plot.refresh()<br>
>>             File<br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/plot___container.py",<br>
>><br>
>>         line 32, in newfunc<br>
>>               args[0]._recreate_frb()<br>
>>             File<br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/plot___window.py",<br>
>><br>
>>         line 266, in _recreate_frb<br>
>>               periodic=self._periodic)<br>
>>             File<br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/fixed___resolution.py",<br>
>>         line 96, in __init__<br>
>>               h.plots.append(weakref.proxy(__self))<br>
>><br>
>>         ReferenceError: weakly-referenced object no longer exists<br>
>><br>
>><br>
>>         The guts of my script is fairly simple:<br>
>><br>
>><br>
>>         GetFileNames(FileNames)<br>
>>         proj = []<br>
>>         for i, fn in enumerate(FileNames):<br>
>>               fn = Path + fn<br>
>>               pf = load(fn) # load data<br>
>>               sp = pf.h.sphere('max', (0.5,'pc'))<br>
>>               L = sp.quantities["__AngularMomentumVector"]()<br>
>>               proj.append(OffAxisSlicePlot(__pf, L, "Density",<br>
>> center="max",<br>
>><br>
>>                                            axes_unit='unitary',<br>
>> width=width,<br>
>>         fontsize=12))<br>
>>               proj[i].set_zlim('all', 1e-13, 1e-8)<br>
>><br>
>>         mp = eps.multiplot_yt(1, 2, proj, bare_axes=False,<br>
>>         margins=(0.75,0.75))<br>
>>         mp.save_fig('multi', format='eps')<br>
>><br>
>>         Rolling back the pull gets me back to the original error with<br>
>>         multiplot_yt (so the changes are being brought in it seems):<br>
>><br>
>>         Traceback (most recent call last):<br>
>>             File "OffAxisProjection_MultiPlot.__py", line 63, in <module><br>
>><br>
>>               mp = eps.multiplot_yt(1, 2, proj, bare_axes=False,<br>
>>         margins=(0.75,0.75))<br>
>>             File<br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/eps___writer.py",<br>
>><br>
>>         line 1043, in multiplot_yt<br>
>>               if len(plot_col.plots) < nrow*ncol:<br>
>>         AttributeError: 'list' object has no attribute 'plots'<br>
>><br>
>>         John<br>
>><br>
>><br>
>>         On Tue, Dec 3, 2013 at 5:05 PM, John Regan<br>
>>         <<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a> <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>><br>
>>         <mailto:<a href="mailto:johnanthonyregan@">johnanthonyregan@</a>__<a href="http://gmail.com" target="_blank">gmail.com</a><br>
>><br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>>>> wrote:<br>
>><br>
>>              No worries. I'll let you know if I figure it out. For some<br>
>>         reason<br>
>>              that module is missing from my version after the pull. I'm<br>
>>         trying to<br>
>>              figure out why now....<br>
>><br>
>><br>
>>              On Tue, Dec 3, 2013 at 5:02 PM, John Wise<br>
>>         <<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a> <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>              <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>>> wrote:<br>
>><br>
>>                  Hi John,<br>
>><br>
>>                  Hmmm, that's odd.  I'm currently in meetings until<br>
>>         mid-afternoon, so<br>
>>                  I'll look at this problem then.<br>
>><br>
>>                  Cheers,<br>
>>                  John<br>
>><br>
>>                  On Tue, 03 Dec 2013 at 16:26 +0200, John Regan wrote:<br>
>>                   >    Hi John,<br>
>>                   ><br>
>>                   >    I'm getting a problem with the profile_plotter.py<br>
>>         file.<br>
>>                   ><br>
>>                   >    Traceback (most recent call last):<br>
>>                   >    � File "OffAxisProjection_MultiPlot.__py", line<br>
>><br>
>>         12, in <module><br>
>>                   >    ��� import yt.visualization.eps_writer as eps<br>
>>                   >    � File<br>
>>                   ><br>
>><br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/eps___writer.py",<br>
>><br>
>>                   >    line 31, in <module><br>
>>                   >    ��� from .profile_plotter import PhasePlot<br>
>>                   >    � File<br>
>>                   ><br>
>><br>
>><br>
>> "/homeappl/home/regan/appl___taito/YT/Dev/yt-x86_64/src/yt-__hg/yt/visualization/profile___plotter.py",<br>
>><br>
>>                   >    line 31, in <module><br>
>>                   >    ��� from .plot_container import \<br>
>>                   >    ImportError: No module named plot_container<br>
>>                   ><br>
>>                   >    John<br>
>>                   ><br>
>>                   >    On Tue, Dec 3, 2013 at 4:09 PM, John Wise<br>
>>                  <[1]<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>>><br>
>>                   >    wrote:<br>
>>                   ><br>
>>                   >      Hi John,<br>
>>                   ><br>
>>                   >      Not a stupid question at all.<br>
>>                   ><br>
>>                   >      You can get my changes by doing<br>
>>                   ><br>
>>                   >      hg pull -r e7aebae<br>
>>         [2]<a href="https://bitbucket.org/__jwise77/yt" target="_blank">https://bitbucket.org/__jwise77/yt</a><br>
>><br>
>>         <<a href="https://bitbucket.org/jwise77/yt" target="_blank">https://bitbucket.org/jwise77/yt</a>><br>
>>                   ><br>
>>                   >      Cheers,<br>
>>                   >      John<br>
>>                   ><br>
>>                   >      On 12/03/2013 08:28 AM, John Regan wrote:<br>
>>                   ><br>
>>                   >        Hi John,<br>
>>                   ><br>
>>                   >        Stupid question now - but how do I get my<br>
>>         hands on<br>
>>                  that PR?<br>
>>                   >        Is there a link somewhere where I can pull<br>
>> from?<br>
>>                   ><br>
>>                   >        John<br>
>>                   ><br>
>>                   >        On Tue, Dec 3, 2013 at 3:10 PM, John Regan<br>
>>                   >        <[3]<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a><br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>><br>
>>                  <mailto:<a href="mailto:johnanthonyregan@">johnanthonyregan@</a>__<a href="http://gmail.com" target="_blank">gmail.com</a><br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>>><br>
>>                   >        <mailto:[4]johnanthonyregan@__<a href="http://gmail.com" target="_blank">gmail.com</a><br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>><br>
>>                  <mailto:<a href="mailto:johnanthonyregan@">johnanthonyregan@</a>__<a href="http://gmail.com" target="_blank">gmail.com</a><br>
>><br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>>>>> wrote:<br>
>>                   ><br>
>>                   >        � � Excellent - I'll pull the changeset and<br>
>>         let you know!<br>
>>                   ><br>
>>                   >        � � On Tue, Dec 3, 2013 at 3:06 PM, John Wise<br>
>>                   >        <[5]<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >        � � <mailto:[6]jwise@physics.__<a href="http://gatech.edu" target="_blank">gatech.edu</a><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>>>> wrote:<br>
>>                   ><br>
>>                   >        � � � � Hi,<br>
>>                   ><br>
>>                   >        � � � � It's funny that you emailed right now<br>
>>         because<br>
>>                  I was just<br>
>>                   >        putting<br>
>>                   >        � � � � the final touches on my changes this<br>
>>         morning!<br>
>>                  �I've just<br>
>>                   >        � � � � submitted a pull request<br>
>>                   ><br>
>>                   >        � � � �<br>
>><br>
>>         [7]<a href="https://bitbucket.org/yt_____analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt_____analysis/yt/pull-request/661/</a><br>
>>         <<a href="https://bitbucket.org/yt___analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt___analysis/yt/pull-request/661/</a>><br>
>>                   >        � � � �<br>
>><br>
>>         <[8]<a href="https://bitbucket.org/yt___analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt___analysis/yt/pull-request/661/</a><br>
>><br>
>>         <<a href="https://bitbucket.org/yt_analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt_analysis/yt/pull-request/661/</a>>><br>
>>                   ><br>
>>                   >        � � � � which has an example in the<br>
>>         description. �If<br>
>>                  you could test it<br>
>>                   >        � � � � out, that would be great!<br>
>>                   ><br>
>>                   >        � � � � Cheers,<br>
>>                   >        � � � � John<br>
>>                   ><br>
>>                   >        � � � � On 12/03/2013 07:48 AM, John Regan<br>
>> wrote:<br>
>>                   ><br>
>>                   >        � � � � � � Hi John,<br>
>>                   ><br>
>>                   >        � � � � � � Cool. Sounds good.<br>
>>                   ><br>
>>                   >        � � � � � � Let me know if there is anything<br>
>>         I can<br>
>>                  help with.<br>
>>                   ><br>
>>                   >        � � � � � � Cheers,<br>
>>                   >        � � � � � � John<br>
>>                   ><br>
>>                   >        � � � � � � On Tue, Dec 3, 2013 at 2:44 PM,<br>
>>         John Wise<br>
>>                   >        � � � � � � <[9]<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >        <mailto:[10]jwise@physics.__<a href="http://gatech.edu" target="_blank">gatech.edu</a><br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>>><br>
>>                   >        � � � � � �<br>
>>         <mailto:[11]jwise@physics.__gatech.__edu<br>
>>                   >        � � � � � �<br>
>>         <mailto:[12]jwise@physics.__<a href="http://gatech.edu" target="_blank">gatech.edu</a><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>>>>> wrote:<br>
>>                   ><br>
>>                   >        � � � � � � � � �Hi John,<br>
>>                   ><br>
>>                   >        � � � � � � � � �Last week, I discovered that<br>
>>         I didn't<br>
>>                  extend the<br>
>>                   >        � � � � � � capabilities of<br>
>>                   >        � � � � � � � � �eps_writer's multiplot to<br>
>> handle<br>
>>                  PlotWindows. �I'm<br>
>>                   >        � � � � � � working on this<br>
>>                   >        � � � � � � � � �right now, and hopefully<br>
>>         I'll have<br>
>>                  something soon.<br>
>>                   ><br>
>>                   >        � � � � � � � � �Cheers,<br>
>>                   >        � � � � � � � � �JOhn<br>
>>                   ><br>
>>                   >        � � � � � � � � �On 12/03/2013 07:43 AM, John<br>
>>         Regan wrote:<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �Hi All,<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �Not sure whether this is<br>
>>                  currently possible but<br>
>>                   >        I'd<br>
>>                   >        � � � � � � like to create a<br>
>>                   >        � � � � � � � � � � �multiplot eps figure<br>
>>         containing a<br>
>>                  selection of<br>
>>                   >        � � � � � � projections.<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �I first of all create my<br>
>>         list of<br>
>>                   >        � � � � � � OffAxisProjectionPlots (proj)<br>
>>                   >        � � � � � � � � � � �and then<br>
>>                   >        � � � � � � � � � � �call<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �ep = eps.multiplot(1, 2,<br>
>>         proj,<br>
>>                  bare_axes=True).<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �where proj is a list of<br>
>>                  plot_window objects.<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �I'm using the YT dev<br>
>>         branch and<br>
>>                  it's falling over<br>
>>                   >        � � � � � � with the error:<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �Traceback (most recent<br>
>>         call last):<br>
>>                   >        � � � � � � � � � � � � �File<br>
>>                  "OffAxisProjection_MultiPlot.______py",<br>
>><br>
>>                   >        line<br>
>>                   >        � � � � � � 64, in <module><br>
>>                   ><br>
>>                   >        � � � � � � � � � � � � � �ep =<br>
>>         eps.multiplot(1, 2, proj,<br>
>>                   >        bare_axes=True)<br>
>>                   >        � � � � � � � � � � � � �File<br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> "/homeappl/home/regan/appl_______taito/YT/Dev/yt-x86_64/src/__yt-____hg/yt/visualization/__eps_____writer.py",<br>
>>                   >        � � � � � � � � � � �line 934, in multiplot<br>
>>                   >        � � � � � � � � � � � � �<br>
>>                  �d.insert_image_yt(yt_plots[______index],<br>
>>                   >        � � � � � � pos=(xpos, ypos))<br>
>>                   >        � � � � � � � � � � � � �File<br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> "/homeappl/home/regan/appl_______taito/YT/Dev/yt-x86_64/src/__yt-____hg/yt/visualization/__eps_____writer.py",<br>
>><br>
>>                   ><br>
>>                   >        � � � � � � � � � � �line 424, in<br>
>> insert_image_yt<br>
>>                   >        � � � � � � � � � � � � � �plot.refresh()<br>
>>                   >        � � � � � � � � � � � � �File<br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> "/homeappl/home/regan/appl_______taito/YT/Dev/yt-x86_64/src/__yt-____hg/yt/visualization/__plot_____container.py",<br>
>><br>
>>                   ><br>
>>                   >        � � � � � � � � � � �line 32, in newfunc<br>
>>                   >        � � � � � � � � � � � � �<br>
>>         �args[0]._recreate_frb()<br>
>>                   >        � � � � � � � � � � � � �File<br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> "/homeappl/home/regan/appl_______taito/YT/Dev/yt-x86_64/src/__yt-____hg/yt/visualization/__plot_____window.py",<br>
>><br>
>>                   ><br>
>>                   >        � � � � � � � � � � �line 266, in _recreate_frb<br>
>>                   >        � � � � � � � � � � � � �<br>
>>         �periodic=self._periodic)<br>
>>                   >        � � � � � � � � � � � � �File<br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> "/homeappl/home/regan/appl_______taito/YT/Dev/yt-x86_64/src/__yt-____hg/yt/visualization/__fixed_____resolution.py",<br>
>>                   >        � � � � � � � � � � �line 96, in __init__<br>
>>                   >        � � � � � � � � � � � � �<br>
>>                  �h.plots.append(weakref.proxy(______self))<br>
>><br>
>>                   ><br>
>>                   >        � � � � � � � � � � �ReferenceError:<br>
>>         weakly-referenced<br>
>>                  object no<br>
>>                   >        longer<br>
>>                   >        � � � � � � exists<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �If anyone knows what's<br>
>>         happening<br>
>>                  let me know.<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �Thanks in advance!<br>
>>                   ><br>
>>                   >        � � � � � � � � � � �John<br>
>>                   ><br>
>>                   >        � � � � � � � � � �<br>
>>                   ><br>
>>           �_____________________________________________________<br>
>>                   >        � � � � � � � � � � �yt-users mailing list<br>
>>                   >        � � � � � �<br>
>>         [13]yt-users@lists.spacepope.__org<br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >        � � � � � �<br>
>>         <mailto:[14]yt-users@lists.__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>>><br>
>>                   >        � � � � � �<br>
>>                  <mailto:[15]yt-users@lists.__[__16]<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <<a href="http://spacepope.org" target="_blank">http://spacepope.org</a>><br>
>>                  <<a href="http://spacepope.org" target="_blank">http://spacepope.org</a>><br>
>>                   >        � � � � � �<br>
>>         <mailto:[17]yt-users@lists.__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>>>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> [18]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/____listinfo.cgi/<a href="http://yt-users-______spacepope.org" target="_blank">yt-users-______spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[19]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/__listinfo.cgi/<a href="http://yt-users-____spacepope.org" target="_blank">yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>>><br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[20]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/__listinfo.cgi/<a href="http://yt-users-____spacepope.org" target="_blank">yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[21]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/listinfo.cgi/<a href="http://yt-users-__spacepope.org" target="_blank">yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>>>><br>
>>                   ><br>
>>                   >        � � � � � � � � �--<br>
>>                   >        � � � � � � � � �John Wise<br>
>>                   >        � � � � � � � � �Assistant Professor of Physics<br>
>>                   >        � � � � � � � � �Center for Relativistic<br>
>>         Astrophysics,<br>
>>                  Georgia Tech<br>
>>                   >        � � � � � � [22]<a href="http://cosmo.gatech.edu" target="_blank">http://cosmo.gatech.edu</a><br>
>>                   >        � � � � � � � �<br>
>>                  �_____________________________________________________<br>
>>                   >        � � � � � � � � �yt-users mailing list<br>
>>                   >        � � � � � �<br>
>>         [23]yt-users@lists.spacepope.__org<br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >        � � � � � �<br>
>>         <mailto:[24]yt-users@lists.__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>>><br>
>>                   >        � � � � � �<br>
>>                  <mailto:[25]yt-users@lists.__[__26]<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <<a href="http://spacepope.org" target="_blank">http://spacepope.org</a>><br>
>>                  <<a href="http://spacepope.org" target="_blank">http://spacepope.org</a>><br>
>>                   >        � � � � � �<br>
>>         <mailto:[27]yt-users@lists.__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>>>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> [28]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/____listinfo.cgi/<a href="http://yt-users-______spacepope.org" target="_blank">yt-users-______spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[29]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/__listinfo.cgi/<a href="http://yt-users-____spacepope.org" target="_blank">yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>>><br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[30]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/__listinfo.cgi/<a href="http://yt-users-____spacepope.org" target="_blank">yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[31]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/listinfo.cgi/<a href="http://yt-users-__spacepope.org" target="_blank">yt-users-__spacepope.org</a><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>>>><br>
>>                   ><br>
>>                   >        � � � � � �<br>
>>                  ___________________________________________________<br>
>>                   >        � � � � � � yt-users mailing list<br>
>>                   >        � � � � � �<br>
>>         [32]yt-users@lists.spacepope.__org<br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >        � � � � � �<br>
>>         <mailto:[33]yt-users@lists.__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> [34]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/__listinfo.cgi/<a href="http://yt-users-____spacepope.org" target="_blank">yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >        � � � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[35]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/listinfo.cgi/<a href="http://yt-users-__spacepope.org" target="_blank">yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>>><br>
>>                   ><br>
>>                   >        � � � � --<br>
>>                   >        � � � � John Wise<br>
>>                   >        � � � � Assistant Professor of Physics<br>
>>                   >        � � � � Center for Relativistic Astrophysics,<br>
>>         Georgia Tech<br>
>>                   >        � � � � [36]<a href="http://cosmo.gatech.edu" target="_blank">http://cosmo.gatech.edu</a><br>
>>                   >        � � � �<br>
>>         ___________________________________________________<br>
>>                   >        � � � � yt-users mailing list<br>
>>                   >        � � � � [37]yt-users@lists.spacepope.__org<br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >        <mailto:[38]yt-users@lists.__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>>><br>
>>                   >        � � � �<br>
>>                   ><br>
>><br>
>><br>
>> [39]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/__listinfo.cgi/<a href="http://yt-users-____spacepope.org" target="_blank">yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >        � � � �<br>
>>                   ><br>
>><br>
>><br>
>> <[40]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/listinfo.cgi/<a href="http://yt-users-__spacepope.org" target="_blank">yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>>><br>
>>                   ><br>
>>                   ><br>
>> _________________________________________________<br>
>>                   >        yt-users mailing list<br>
>>                   >        [41]yt-users@lists.spacepope.__org<br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   ><br>
>><br>
>><br>
>> [42]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/listinfo.cgi/<a href="http://yt-users-__spacepope.org" target="_blank">yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>>                   ><br>
>>                   >      --<br>
>>                   >      John Wise<br>
>>                   >      Assistant Professor of Physics<br>
>>                   >      Center for Relativistic Astrophysics, Georgia<br>
>> Tech<br>
>>                   >      [43]<a href="http://cosmo.gatech.edu" target="_blank">http://cosmo.gatech.edu</a><br>
>>                   >      _________________________________________________<br>
>>                   >      yt-users mailing list<br>
>>                   >      [44]yt-users@lists.spacepope.__org<br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   ><br>
>><br>
>><br>
>> [45]<a href="http://lists.spacepope." target="_blank">http://lists.spacepope.</a>__org/listinfo.cgi/<a href="http://yt-users-__spacepope.org" target="_blank">yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>>                   ><br>
>>                   > References<br>
>>                   ><br>
>>                   >    Visible links<br>
>>                   >    1. mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >    2. <a href="https://bitbucket.org/jwise77/__yt" target="_blank">https://bitbucket.org/jwise77/__yt</a><br>
>>         <<a href="https://bitbucket.org/jwise77/yt" target="_blank">https://bitbucket.org/jwise77/yt</a>><br>
>>                   >    3. mailto:<a href="mailto:johnanthonyregan@gmail.">johnanthonyregan@gmail.</a>__com<br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>><br>
>>                  <mailto:<a href="mailto:johnanthonyregan@">johnanthonyregan@</a>__<a href="http://gmail.com" target="_blank">gmail.com</a><br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>>><br>
>>                   >    4. mailto:<a href="mailto:johnanthonyregan@gmail.">johnanthonyregan@gmail.</a>__com<br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>><br>
>>                  <mailto:<a href="mailto:johnanthonyregan@">johnanthonyregan@</a>__<a href="http://gmail.com" target="_blank">gmail.com</a><br>
>>         <mailto:<a href="mailto:johnanthonyregan@gmail.com">johnanthonyregan@gmail.com</a>>><br>
>>                   >    5. mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >    6. mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >    7.<br>
>>         <a href="https://bitbucket.org/yt_____analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt_____analysis/yt/pull-request/661/</a><br>
>>         <<a href="https://bitbucket.org/yt___analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt___analysis/yt/pull-request/661/</a>><br>
>>                   >    8.<br>
>>         <a href="https://bitbucket.org/yt___analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt___analysis/yt/pull-request/661/</a><br>
>>         <<a href="https://bitbucket.org/yt_analysis/yt/pull-request/661/" target="_blank">https://bitbucket.org/yt_analysis/yt/pull-request/661/</a>><br>
>>                   >    9. mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >   10. mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >   11. mailto:<a href="mailto:jwise@physics.gatech">jwise@physics.gatech</a><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech">jwise@physics.gatech</a>> <mailto:<a href="mailto:jwise@physics.gatech">jwise@physics.gatech</a><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech">jwise@physics.gatech</a>>><br>
>>                   >   12. mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>><br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>><br>
>>                  <mailto:<a href="mailto:jwise@physics.gatech.">jwise@physics.gatech.</a>__edu<br>
>>         <mailto:<a href="mailto:jwise@physics.gatech.edu">jwise@physics.gatech.edu</a>>><br>
>>                   >   13. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   14. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   15. mailto:<a href="mailto:yt-users@lists">yt-users@lists</a> <mailto:<a href="mailto:yt-users@lists">yt-users@lists</a>><br>
>>         <mailto:<a href="mailto:yt-users@lists">yt-users@lists</a> <mailto:<a href="mailto:yt-users@lists">yt-users@lists</a>>><br>
>>                   >   16. <a href="http://spacepope.org/" target="_blank">http://spacepope.org/</a><br>
>>                   >   17. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   18.<br>
>><br>
>> <a href="http://lists.spacepope.org/______listinfo.cgi/yt-users-______spacepope.org" target="_blank">http://lists.spacepope.org/______listinfo.cgi/yt-users-______spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a>><br>
>>                   >   19.<br>
>><br>
>> <a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >   20.<br>
>><br>
>> <a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >   21.<br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>>                   >   22. <a href="http://cosmo.gatech.edu/" target="_blank">http://cosmo.gatech.edu/</a><br>
>>                   >   23. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   24. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   25. mailto:<a href="mailto:yt-users@lists">yt-users@lists</a> <mailto:<a href="mailto:yt-users@lists">yt-users@lists</a>><br>
>>         <mailto:<a href="mailto:yt-users@lists">yt-users@lists</a> <mailto:<a href="mailto:yt-users@lists">yt-users@lists</a>>><br>
>>                   >   26. <a href="http://spacepope.org/" target="_blank">http://spacepope.org/</a><br>
>>                   >   27. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   28.<br>
>><br>
>> <a href="http://lists.spacepope.org/______listinfo.cgi/yt-users-______spacepope.org" target="_blank">http://lists.spacepope.org/______listinfo.cgi/yt-users-______spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a>><br>
>>                   >   29.<br>
>><br>
>> <a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >   30.<br>
>><br>
>> <a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >   31.<br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>>                   >   32. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   33. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   34.<br>
>><br>
>> <a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >   35.<br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>>                   >   36. <a href="http://cosmo.gatech.edu/" target="_blank">http://cosmo.gatech.edu/</a><br>
>>                   >   37. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   38. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   39.<br>
>><br>
>> <a href="http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org" target="_blank">http://lists.spacepope.org/____listinfo.cgi/yt-users-____spacepope.org</a><br>
>><br>
>> <<a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a>><br>
>>                   >   40.<br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>>                   >   41. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   42.<br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>>                   >   43. <a href="http://cosmo.gatech.edu/" target="_blank">http://cosmo.gatech.edu/</a><br>
>>                   >   44. mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   >   45.<br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>><br>
>>                   > _________________________________________________<br>
>>                   > yt-users mailing list<br>
>>                   > <a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>                  <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>                   ><br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>><br>
>><br>
>>                  --<br>
>>                  John Wise<br>
>>                  Assistant Professor of Physics<br>
>>                  Center for Relativistic Astrophysics, Georgia Tech<br>
>>                  _________________________________________________<br>
>><br>
>>                  yt-users mailing list<br>
>>         <a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>         <mailto:<a href="mailto:yt-users@lists.">yt-users@lists.</a>__<a href="http://spacepope.org" target="_blank">spacepope.org</a><br>
>>         <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>>><br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>><br>
>><br>
>><br>
>><br>
>><br>
>>         _________________________________________________<br>
>>         yt-users mailing list<br>
>>         <a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a> <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>         <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>>         <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>><br>
>><br>
>>     --<br>
>>     John Wise<br>
>>     Assistant Professor of Physics<br>
>>     Center for Relativistic Astrophysics, Georgia Tech<br>
>>     <a href="http://cosmo.gatech.edu" target="_blank">http://cosmo.gatech.edu</a><br>
>>     _________________________________________________<br>
>><br>
>>     yt-users mailing list<br>
>>     <a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a> <mailto:<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a>><br>
>>     <a href="http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org" target="_blank">http://lists.spacepope.org/__listinfo.cgi/yt-users-__spacepope.org</a><br>
>><br>
>>     <<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a>><br>
>><br>
>><br>
>><br>
>> _______________________________________________<br>
>> yt-users mailing list<br>
>> <a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
>> <a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
>><br>
><br>
> --<br>
> John Wise<br>
> Assistant Professor of Physics<br>
> Center for Relativistic Astrophysics, Georgia Tech<br>
> <a href="http://cosmo.gatech.edu" target="_blank">http://cosmo.gatech.edu</a><br>
> _______________________________________________<br>
> yt-users mailing list<br>
> <a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
> <a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
</div></div></blockquote></div><br></div>