[yt-svn] commit/yt-3.0: 327 new changesets

Bitbucket commits-noreply at bitbucket.org
Tue Jan 15 12:37:51 PST 2013


327 new commits in yt-3.0:

https://bitbucket.org/yt_analysis/yt-3.0/commits/1f7f8e250e2b/
changeset:   1f7f8e250e2b
branch:      yt
user:        alrosen
date:        2012-11-16 22:52:49
summary:     Fixed orion derived fields by changing add_orion_field() to add_field().
affected #:  1 file

diff -r 914bda39f0e12f856e23a915003cbdc3637ed67d -r 1f7f8e250e2bda85a3b271123e6acde9fef72049 yt/frontends/orion/fields.py
--- a/yt/frontends/orion/fields.py
+++ b/yt/frontends/orion/fields.py
@@ -126,7 +126,7 @@
         data["x-velocity"]**2.0
         + data["y-velocity"]**2.0
         + data["z-velocity"]**2.0 )
-add_orion_field("ThermalEnergy", function=_ThermalEnergy,
+add_field("ThermalEnergy", function=_ThermalEnergy,
                 units=r"\rm{ergs}/\rm{cm^3}")
 
 def _Pressure(field,data):
@@ -134,11 +134,11 @@
        NB: this will need to be modified for radiation
     """
     return (data.pf["Gamma"] - 1.0)*data["ThermalEnergy"]
-add_orion_field("Pressure", function=_Pressure, units=r"\rm{dyne}/\rm{cm}^{2}")
+add_field("Pressure", function=_Pressure, units=r"\rm{dyne}/\rm{cm}^{2}")
 
 def _Temperature(field,data):
     return (data.pf["Gamma"]-1.0)*data.pf["mu"]*mh*data["ThermalEnergy"]/(kboltz*data["Density"])
-add_orion_field("Temperature",function=_Temperature,units=r"\rm{Kelvin}",take_log=False)
+add_field("Temperature",function=_Temperature,units=r"\rm{Kelvin}",take_log=False)
 
 # particle fields
 


https://bitbucket.org/yt_analysis/yt-3.0/commits/0d174ee8b5e8/
changeset:   0d174ee8b5e8
branch:      yt
user:        MatthewTurk
date:        2012-11-19 20:35:57
summary:     Merged in alrosen/yt-rosen (pull request #344)
affected #:  1 file

diff -r e0004f1bce411f5b19faa125fcaa23ab68d5fd6c -r 0d174ee8b5e8f822ed62c1819569633b6b798164 yt/frontends/orion/fields.py
--- a/yt/frontends/orion/fields.py
+++ b/yt/frontends/orion/fields.py
@@ -126,7 +126,7 @@
         data["x-velocity"]**2.0
         + data["y-velocity"]**2.0
         + data["z-velocity"]**2.0 )
-add_orion_field("ThermalEnergy", function=_ThermalEnergy,
+add_field("ThermalEnergy", function=_ThermalEnergy,
                 units=r"\rm{ergs}/\rm{cm^3}")
 
 def _Pressure(field,data):
@@ -134,11 +134,11 @@
        NB: this will need to be modified for radiation
     """
     return (data.pf["Gamma"] - 1.0)*data["ThermalEnergy"]
-add_orion_field("Pressure", function=_Pressure, units=r"\rm{dyne}/\rm{cm}^{2}")
+add_field("Pressure", function=_Pressure, units=r"\rm{dyne}/\rm{cm}^{2}")
 
 def _Temperature(field,data):
     return (data.pf["Gamma"]-1.0)*data.pf["mu"]*mh*data["ThermalEnergy"]/(kboltz*data["Density"])
-add_orion_field("Temperature",function=_Temperature,units=r"\rm{Kelvin}",take_log=False)
+add_field("Temperature",function=_Temperature,units=r"\rm{Kelvin}",take_log=False)
 
 # particle fields
 


https://bitbucket.org/yt_analysis/yt-3.0/commits/08ce935c137a/
changeset:   08ce935c137a
branch:      yt
user:        samskillman
date:        2012-11-20 05:52:51
summary:     Adding an assertion wrapper, h/t to matt.  Now the names assigned to the shock
tests are not filled with the arrays themselves!
affected #:  2 files

diff -r e0004f1bce411f5b19faa125fcaa23ab68d5fd6c -r 08ce935c137a88d0f8d3aa66f947a90374e02c0b yt/frontends/enzo/answer_testing_support.py
--- a/yt/frontends/enzo/answer_testing_support.py
+++ b/yt/frontends/enzo/answer_testing_support.py
@@ -35,7 +35,8 @@
      GridValuesTest, \
      ProjectionValuesTest, \
      ParentageRelationshipsTest, \
-     temp_cwd
+     temp_cwd, \
+     AssertWrapper
 
 def requires_outputlog(path = ".", prefix = ""):
     def ffalse(func):
@@ -94,9 +95,10 @@
             for xmin, xmax in zip(self.left_edges, self.right_edges):
                 mask = (position >= xmin)*(position <= xmax)
                 exact_field = np.interp(position[mask], exact['pos'], exact[k]) 
+                myname = "ShockTubeTest_%s" % k
                 # yield test vs analytical solution 
-                yield assert_allclose, field[mask], exact_field, \
-                    self.rtol, self.atol
+                yield AssertWrapper(myname, assert_allclose, field[mask], 
+                                    exact_field, self.rtol, self.atol)
 
     def get_analytical_solution(self):
         # Reads in from file 

diff -r e0004f1bce411f5b19faa125fcaa23ab68d5fd6c -r 08ce935c137a88d0f8d3aa66f947a90374e02c0b yt/utilities/answer_testing/framework.py
--- a/yt/utilities/answer_testing/framework.py
+++ b/yt/utilities/answer_testing/framework.py
@@ -554,3 +554,18 @@
                     yield PixelizedProjectionValuesTest(
                         pf_fn, axis, field, weight_field,
                         ds)
+
+class AssertWrapper(object):
+    """
+    Used to wrap a numpy testing assertion, in order to provide a useful name
+    for a given assertion test.
+    """
+    def __init__(self, description, *args):
+        # The key here is to add a description attribute, which nose will pick
+        # up.
+        self.args = args
+        self.description = description
+
+    def __call__(self):
+        self.args[0](*self.args[1:])
+


https://bitbucket.org/yt_analysis/yt-3.0/commits/3771c9459829/
changeset:   3771c9459829
branch:      yt
user:        samskillman
date:        2012-11-20 05:53:30
summary:     Merging
affected #:  1 file

diff -r 08ce935c137a88d0f8d3aa66f947a90374e02c0b -r 3771c94598296eeb47988f1ee31d54064f5e0a7f yt/frontends/orion/fields.py
--- a/yt/frontends/orion/fields.py
+++ b/yt/frontends/orion/fields.py
@@ -126,7 +126,7 @@
         data["x-velocity"]**2.0
         + data["y-velocity"]**2.0
         + data["z-velocity"]**2.0 )
-add_orion_field("ThermalEnergy", function=_ThermalEnergy,
+add_field("ThermalEnergy", function=_ThermalEnergy,
                 units=r"\rm{ergs}/\rm{cm^3}")
 
 def _Pressure(field,data):
@@ -134,11 +134,11 @@
        NB: this will need to be modified for radiation
     """
     return (data.pf["Gamma"] - 1.0)*data["ThermalEnergy"]
-add_orion_field("Pressure", function=_Pressure, units=r"\rm{dyne}/\rm{cm}^{2}")
+add_field("Pressure", function=_Pressure, units=r"\rm{dyne}/\rm{cm}^{2}")
 
 def _Temperature(field,data):
     return (data.pf["Gamma"]-1.0)*data.pf["mu"]*mh*data["ThermalEnergy"]/(kboltz*data["Density"])
-add_orion_field("Temperature",function=_Temperature,units=r"\rm{Kelvin}",take_log=False)
+add_field("Temperature",function=_Temperature,units=r"\rm{Kelvin}",take_log=False)
 
 # particle fields
 


https://bitbucket.org/yt_analysis/yt-3.0/commits/9bf97cfe3489/
changeset:   9bf97cfe3489
branch:      yt
user:        samskillman
date:        2012-09-19 21:20:14
summary:     A few fixes for the Athena frontend.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/73945f90a90a/
changeset:   73945f90a90a
branch:      yt
user:        samskillman
date:        2012-09-19 23:32:51
summary:     Ugh, we need to round left and right edges to deal with insufficient accuracy on the dds in the vtk files.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/54794ae59def/
changeset:   54794ae59def
branch:      yt
user:        stonnes
date:        2012-09-13 23:06:39
summary:     Attempting to allow for different ActiveDimensions in each vtk file in an Athena parallel run
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/a0dede47e556/
changeset:   a0dede47e556
branch:      yt
user:        stonnes
date:        2012-09-13 23:31:12
summary:     Merged my change of data_structures.py.  Trying to allow for grids with
different ActiveDimensions in athena reader
affected #:  117 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1de523fbab36/
changeset:   1de523fbab36
branch:      yt
user:        stonnes
date:        2012-09-14 04:24:02
summary:     fixed cli so that slices will work again.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6ef9e876bddc/
changeset:   6ef9e876bddc
branch:      yt
user:        stonnes
date:        2012-09-24 21:42:03
summary:     changed io file so that the offsets reflect actual grid dimensions
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7c672dc52bfc/
changeset:   7c672dc52bfc
branch:      yt
user:        samskillman
date:        2012-09-25 08:24:21
summary:     Merging
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f050fa88e0b8/
changeset:   f050fa88e0b8
branch:      yt
user:        samskillman
date:        2012-09-25 08:32:02
summary:     Get rid of double get_read_table_offest.  It was getting stuck in a while loop
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/a0a177a3ccb9/
changeset:   a0a177a3ccb9
branch:      yt
user:        samskillman
date:        2012-09-26 00:08:20
summary:     A few more fixes to get arbitrary athena vtk datasets to work.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/09b3006ae72f/
changeset:   09b3006ae72f
branch:      yt
user:        samskillman
date:        2012-09-26 17:37:07
summary:     Fixed an issue where the grid left index was getting set twice, causing the grid to have the incorrect start and end indicies.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/13f17b5eade6/
changeset:   13f17b5eade6
branch:      yt
user:        samskillman
date:        2012-11-16 00:05:55
summary:     Merging mainline into athena development fork
affected #:  94 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b02c04e5b033/
changeset:   b02c04e5b033
branch:      yt
user:        MatthewTurk
date:        2012-11-20 21:02:37
summary:     Merged in samskillman/yt-athena (pull request #343)
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d00afdd643c6/
changeset:   d00afdd643c6
branch:      yt
user:        jzuhone
date:        2012-11-17 15:52:33
summary:     Depth-first search for leaf grids given a set of positions.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d2343b2cc852/
changeset:   d2343b2cc852
branch:      yt
user:        jzuhone
date:        2012-11-20 03:49:28
summary:     Adding Cythonized GridTree for assigning points to grids
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3283e02e6f55/
changeset:   3283e02e6f55
branch:      yt
user:        jzuhone
date:        2012-11-20 05:30:05
summary:     Update to the GridTree. We should check each particle one-by-one and go down the the tree instead of checking each grid against lists of particles.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/cc4fffdea959/
changeset:   cc4fffdea959
branch:      yt
user:        jzuhone
date:        2012-11-20 05:48:29
summary:     Making the Cythonized GridTree the way we find points
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2f8e236ca52d/
changeset:   2f8e236ca52d
branch:      yt
user:        jzuhone
date:        2012-11-20 17:36:55
summary:     Generalization to hierarchies which are patch-based.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7e31170e0544/
changeset:   7e31170e0544
branch:      yt
user:        jzuhone
date:        2012-11-20 18:55:46
summary:     Verified that this works for patch-based refinement schemes.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6d6b74fd852f/
changeset:   6d6b74fd852f
branch:      yt
user:        jzuhone
date:        2012-11-20 15:58:08
summary:     Merging
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/852a6d0b3ac3/
changeset:   852a6d0b3ac3
branch:      yt
user:        jzuhone
date:        2012-11-20 17:37:27
summary:     Merging
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/967446e53154/
changeset:   967446e53154
branch:      yt
user:        jzuhone
date:        2012-11-20 18:58:21
summary:     Merging
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/82c32faef934/
changeset:   82c32faef934
branch:      yt
user:        jzuhone
date:        2012-11-20 19:04:37
summary:     Undoing a change that wasn't ready yet
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/05d098ee846f/
changeset:   05d098ee846f
branch:      yt
user:        jzuhone
date:        2012-11-20 20:28:11
summary:     Tests for GridTree
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/26e7f66ee689/
changeset:   26e7f66ee689
branch:      yt
user:        jzuhone
date:        2012-11-20 21:16:55
summary:     Merging
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1ea61855c847/
changeset:   1ea61855c847
branch:      yt
user:        jzuhone
date:        2012-11-20 21:42:49
summary:     Small fixes to get 1D/2D data working with Sam's new changes.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9784180f48b2/
changeset:   9784180f48b2
branch:      yt
user:        ngoldbaum
date:        2012-11-22 00:32:37
summary:     Adding a barebones set of tests for PlotWindow plots.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/87237e244a95/
changeset:   87237e244a95
branch:      yt
user:        ngoldbaum
date:        2012-11-22 02:12:32
summary:     Only removing files created by the plotwindow tests.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/35c2708a4937/
changeset:   35c2708a4937
branch:      yt
user:        sskory
date:        2012-11-03 00:23:46
summary:     Some changes to rockstar, mostly works but could be prettier.
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f54ceec283f5/
changeset:   f54ceec283f5
branch:      yt
user:        sskory
date:        2012-11-05 22:55:20
summary:     Can now write Rockstar halos to the common text output format.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/123f2d4f33b0/
changeset:   123f2d4f33b0
branch:      yt
user:        sskory
date:        2012-11-06 17:48:07
summary:     Rockstar halos are now read in using binary, not text, which is
more accurate. Particles are not read in yet.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1a856afd60f7/
changeset:   1a856afd60f7
branch:      yt
user:        sskory
date:        2012-11-06 22:56:44
summary:     Can now pull particle data out of Rockstar binary files.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/131448599aa4/
changeset:   131448599aa4
branch:      yt
user:        sskory
date:        2012-11-07 23:53:20
summary:     Modifying how halos are read into yt.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/99609dc959d1/
changeset:   99609dc959d1
branch:      yt
user:        sskory
date:        2012-11-08 00:31:40
summary:     Added tag rockstar fixes for changeset 131448599aa4
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/913166f0d5fa/
changeset:   913166f0d5fa
branch:      yt
user:        sskory
date:        2012-11-08 00:34:30
summary:     Removed tag rockstar fixes
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2edcaa422d6d/
changeset:   2edcaa422d6d
branch:      yt
user:        sskory
date:        2012-11-08 00:34:37
summary:     Removed tag hop callback
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d0ed284a43e1/
changeset:   d0ed284a43e1
branch:      yt
user:        sskory
date:        2012-11-08 17:38:33
summary:     Adding force_res as a parameter to Rockstar.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d7d8bb037880/
changeset:   d7d8bb037880
branch:      yt
user:        sskory
date:        2012-11-10 00:45:27
summary:     This fixes the duplicate halo problem. Readers now only allocate
enough space for the particles they will read in, not the
TOTAL_PARTICLES. Also, grids are now assigned to readers cyclically,
rather than by block, which prevents one reader from being assigned
to read in a disproportionate share of the root level grids
(in Enzo at least, I doubt that this affects other codes
negatively).
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3766fdf792f6/
changeset:   3766fdf792f6
branch:      yt
user:        sskory
date:        2012-11-10 01:03:08
summary:     Making readers with NUM_BLOCKS=1 revert to TOTAL_PARTICLES
and not read grid data twice.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/326ed6a5545c/
changeset:   326ed6a5545c
branch:      yt
user:        sskory
date:        2012-11-12 20:46:23
summary:     Auto-setting the force resolution for Rockstar.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/814bd453bbfe/
changeset:   814bd453bbfe
branch:      yt
user:        sskory
date:        2012-11-12 20:55:54
summary:     Small typo re: Rockstar.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6607999ff68e/
changeset:   6607999ff68e
branch:      yt
user:        sskory
date:        2012-11-12 21:00:34
summary:     Merge.
affected #:  5 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ccaac7809283/
changeset:   ccaac7809283
branch:      yt
user:        sskory
date:        2012-11-12 21:11:45
summary:     Small change to LoadRockstarHalos.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f3996425874c/
changeset:   f3996425874c
branch:      yt
user:        sskory
date:        2012-11-13 23:36:50
summary:     More changes to Rockstar re:Matt's comments.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/faa73cec6e0f/
changeset:   faa73cec6e0f
branch:      yt
user:        sskory
date:        2012-11-14 01:16:26
summary:     Removing some stuff that unused or that I'm unsure about in Rockstar.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9842a9ed5144/
changeset:   9842a9ed5144
branch:      yt
user:        sskory
date:        2012-11-14 20:45:22
summary:     Merge.
affected #:  5 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d861b2ff9431/
changeset:   d861b2ff9431
branch:      yt
user:        sskory
date:        2012-11-15 21:12:13
summary:     Fixed the top communicator issue in Rockstar. Rockstar also works inline with Enzo now.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ba01a9998070/
changeset:   ba01a9998070
branch:      yt
user:        sskory
date:        2012-11-15 21:22:47
summary:     Forgot this small change.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b4e8a1ce6fad/
changeset:   b4e8a1ce6fad
branch:      yt
user:        sskory
date:        2012-11-15 21:23:06
summary:     Merge.
affected #:  12 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1a1455873e16/
changeset:   1a1455873e16
branch:      yt
user:        sskory
date:        2012-11-20 23:34:42
summary:     Merging.
affected #:  18 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3151dc581d9a/
changeset:   3151dc581d9a
branch:      yt
user:        sskory
date:        2012-11-25 17:05:12
summary:     Merging.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4db3f718f0cc/
changeset:   4db3f718f0cc
branch:      yt
user:        sskory
date:        2012-11-25 17:50:40
summary:     Adding Rockstar to the install script.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8ff6de25b99e/
changeset:   8ff6de25b99e
branch:      yt
user:        sskory
date:        2012-11-25 23:23:49
summary:     Making Rockstar optional upon install (default true).
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9ff211d7f9a5/
changeset:   9ff211d7f9a5
branch:      yt
user:        sskory
date:        2012-11-26 17:06:31
summary:     Setting up a rockstar.cfg file.
affected #:  6 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/999745ab95c6/
changeset:   999745ab95c6
branch:      yt
user:        sskory
date:        2012-11-26 17:14:42
summary:     Small changes to Rockstar setup stuff.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9f7c233dfb07/
changeset:   9f7c233dfb07
branch:      yt
user:        sskory
date:        2012-11-26 17:30:12
summary:     Rockstar setup.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/96d93dbff73c/
changeset:   96d93dbff73c
branch:      yt
user:        sskory
date:        2012-11-26 19:05:41
summary:     Adding a step to copy the Rockstar lib to $DEST_DIR/lib.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f1c742ebe3a1/
changeset:   f1c742ebe3a1
branch:      yt
user:        brittonsmith
date:        2012-11-26 19:01:19
summary:     Adding some exceptions for error cases in get_time_series and fixing a
spot where another error could occur.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f7edfc242413/
changeset:   f7edfc242413
branch:      yt
user:        brittonsmith
date:        2012-11-26 19:13:28
summary:     Merged.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b1ba33518f0b/
changeset:   b1ba33518f0b
branch:      yt
user:        mqk
date:        2012-11-26 22:46:05
summary:     Fixing a bug in can_run_pf() in answer_testing/framework.py.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/89c703f10af1/
changeset:   89c703f10af1
branch:      yt
user:        ngoldbaum
date:        2012-11-26 22:54:19
summary:     Adding a level keyword to the grid callback which allows a user to only
draw grids that live at or above a given level.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6132c2f9c4ba/
changeset:   6132c2f9c4ba
branch:      yt
user:        ngoldbaum
date:        2012-11-26 22:55:40
summary:     Merging.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8667d061b22e/
changeset:   8667d061b22e
branch:      yt
user:        ngoldbaum
date:        2012-11-26 23:07:45
summary:     Adding a min_level and max_level keyowrd to the grid callback.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3939099bf5f3/
changeset:   3939099bf5f3
branch:      yt
user:        ngoldbaum
date:        2012-11-26 23:28:38
summary:     Simplifying the logic in the grid callback.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1597098bb078/
changeset:   1597098bb078
branch:      yt
user:        ngoldbaum
date:        2012-11-27 00:07:54
summary:     This should be pf.h.max_level
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8ffecc43df6a/
changeset:   8ffecc43df6a
branch:      yt
user:        Christopher Moody
date:        2012-08-16 20:30:01
summary:     Added alternative stereo pair camera (still in progress)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0e9dfbd9ee0c/
changeset:   0e9dfbd9ee0c
branch:      yt
user:        Christopher Moody
date:        2012-08-16 20:30:25
summary:     Fixed OVELAP LENGTH error
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0c9a443b7e4f/
changeset:   0c9a443b7e4f
branch:      yt
user:        Christopher Moody
date:        2012-08-16 20:32:00
summary:     Updates in the ART frontend
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/066808c66bc2/
changeset:   066808c66bc2
branch:      yt
user:        Christopher Moody
date:        2012-08-16 23:50:17
summary:     Fixed bug where all data files were marked as ART
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/39375b0ce832/
changeset:   39375b0ce832
branch:      yt
user:        Christopher Moody
date:        2012-08-16 23:52:02
summary:     Updating the Rockstar python manager as well
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f99c10f24f2f/
changeset:   f99c10f24f2f
branch:      yt
user:        Christopher Moody
date:        2012-08-17 01:02:49
summary:     Fixed indentation
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0ad23331bd22/
changeset:   0ad23331bd22
branch:      yt
user:        Christopher Moody
date:        2012-08-17 20:30:37
summary:     return how many stars the sunrise exporter is using
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/dbe1c5e556ec/
changeset:   dbe1c5e556ec
branch:      yt
user:        Christopher Moody
date:        2012-08-17 20:33:07
summary:     removed pdb
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/a0e342f55b33/
changeset:   a0e342f55b33
branch:      yt
user:        Christopher Moody
date:        2012-08-17 21:20:17
summary:     fixing conflict in rockstar.py
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9b6303c19f1c/
changeset:   9b6303c19f1c
branch:      yt
user:        Christopher Moody
date:        2012-08-18 00:45:25
summary:     Making the changes Matt has recommended including removing print funcs, and excessive explicit fields in ART IO
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8dd74a5ab7df/
changeset:   8dd74a5ab7df
branch:      yt
user:        Christopher Moody
date:        2012-09-18 01:55:55
summary:     small fixes to rockstar
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8780c913832f/
changeset:   8780c913832f
branch:      yt
user:        Christopher Moody
date:        2012-10-12 22:14:11
summary:     Merging with yt_analysis/yt tip
affected #:  156 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/79a04b9de7bf/
changeset:   79a04b9de7bf
branch:      yt
user:        Christopher Moody
date:        2012-10-12 23:55:16
summary:     modified io to use a lookup dictionary
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ff309c8b0d07/
changeset:   ff309c8b0d07
branch:      yt
user:        Christopher Moody
date:        2012-10-13 00:04:29
summary:     putting field dict in the Grid definition not in the IO
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f529db5c7531/
changeset:   f529db5c7531
branch:      yt
user:        Christopher Moody
date:        2012-10-13 00:06:42
summary:     Removing the field dict from IO
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2eea26144564/
changeset:   2eea26144564
branch:      yt
user:        Christopher Moody
date:        2012-10-13 01:09:01
summary:     na->np
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/559e3b8e5168/
changeset:   559e3b8e5168
branch:      yt
user:        Christopher Moody
date:        2012-10-13 01:09:10
summary:     na->np
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/17e4d917be49/
changeset:   17e4d917be49
branch:      yt
user:        Christopher Moody
date:        2012-10-13 01:34:32
summary:     Removed total particles from rockstar.py; it's updated in the cython code
Finishing particles in ART
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0ab0943550ef/
changeset:   0ab0943550ef
branch:      yt
user:        Christopher Moody
date:        2012-10-13 01:36:09
summary:     removed commented out lines
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/52dca3a2655a/
changeset:   52dca3a2655a
branch:      yt
user:        Christopher Moody
date:        2012-10-19 04:31:25
summary:     io to a dict field
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ede4ebb071e5/
changeset:   ede4ebb071e5
branch:      yt
user:        Christopher Moody
date:        2012-10-19 05:05:11
summary:     fixed up field access in grids
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/533c263cacf7/
changeset:   533c263cacf7
branch:      yt
user:        Christopher Moody
date:        2012-10-19 05:09:08
summary:     na->np
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7963775e8a8a/
changeset:   7963775e8a8a
branch:      yt
user:        Christopher Moody
date:        2012-10-19 05:29:34
summary:     the total metal density should be a sum of SNIa and SNII
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c4721d6438db/
changeset:   c4721d6438db
branch:      yt
user:        Christopher Moody
date:        2012-10-23 09:30:19
summary:     re-enabled stars
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3d857fa07ccd/
changeset:   3d857fa07ccd
branch:      yt
user:        Christopher Moody
date:        2012-10-23 09:30:53
summary:     fixed star access in IO
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/149daa338564/
changeset:   149daa338564
branch:      yt
user:        Christopher Moody
date:        2012-10-23 09:31:57
summary:     now imposes a super oct tree structure if you'd like to export more than a single root cell across. cleaned up old comments
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0598f1fd62de/
changeset:   0598f1fd62de
branch:      yt
user:        Christopher Moody
date:        2012-11-01 01:46:10
summary:     Velocity fields did not have appropriate arguments of field,data
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8cd61c83df97/
changeset:   8cd61c83df97
branch:      yt
user:        Christopher Moody
date:        2012-11-07 23:06:06
summary:     added basic particle fields
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6f3d3274c898/
changeset:   6f3d3274c898
branch:      yt
user:        Christopher Moody
date:        2012-11-07 23:07:14
summary:     can now export across multiple cells
removed camera positions / incorrect math went it
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f41ffc7702a0/
changeset:   f41ffc7702a0
branch:      yt
user:        Christopher Moody
date:        2012-11-07 23:08:18
summary:     total particles actually set
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b4617fbc3b18/
changeset:   b4617fbc3b18
branch:      yt
user:        Christopher Moody
date:        2012-11-07 23:09:16
summary:     can now set the force resolution
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/abc2a575b177/
changeset:   abc2a575b177
branch:      yt
user:        Christopher Moody
date:        2012-11-07 23:20:15
summary:     added particle count field
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b25bf1498a9a/
changeset:   b25bf1498a9a
branch:      yt
user:        juxtaposicion
date:        2012-11-26 20:06:14
summary:     Merge
affected #:  9 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/45c4b5dd02c2/
changeset:   45c4b5dd02c2
branch:      yt
user:        Christopher Moody
date:        2012-11-26 21:03:45
summary:     updating definitions
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/47dca7608ac6/
changeset:   47dca7608ac6
branch:      yt
user:        Christopher Moody
date:        2012-11-26 21:04:12
summary:     cleaned up the datastructures
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f045eea08410/
changeset:   f045eea08410
branch:      yt
user:        Christopher Moody
date:        2012-11-26 22:07:52
summary:     fluids wprk; particles are not yet gridded
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1413a16ee876/
changeset:   1413a16ee876
branch:      yt
user:        Christopher Moody
date:        2012-11-26 23:19:05
summary:     assigned all particles to the root grid
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c94dedb96da3/
changeset:   c94dedb96da3
branch:      yt
user:        juxtaposicion
date:        2012-11-26 23:27:46
summary:     merge
affected #:  10 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d965c7412bdd/
changeset:   d965c7412bdd
branch:      yt
user:        juxtaposicion
date:        2012-11-26 23:36:35
summary:     cleaned up data_structures
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/572b60dd7353/
changeset:   572b60dd7353
branch:      yt
user:        juxtaposicion
date:        2012-11-26 23:37:08
summary:     cleaned up the new IO
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7f3606d458da/
changeset:   7f3606d458da
branch:      yt
user:        juxtaposicion
date:        2012-11-26 23:37:31
summary:     moved ART constants and file structures to definition
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/085a37148950/
changeset:   085a37148950
branch:      yt
user:        juxtaposicion
date:        2012-11-26 23:51:54
summary:     added **kwargs to timer series; gets passed to load()
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0195527b3385/
changeset:   0195527b3385
branch:      yt
user:        juxtaposicion
date:        2012-11-27 00:01:49
summary:     Merge
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e6840f9099dd/
changeset:   e6840f9099dd
branch:      yt
user:        juxtaposicion
date:        2012-11-27 00:09:49
summary:     removed the empty particle grid setup
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/45d9b67f03da/
changeset:   45d9b67f03da
branch:      yt
user:        juxtaposicion
date:        2012-11-27 00:24:17
summary:     Merge
affected #:  10 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d45af85d7404/
changeset:   d45af85d7404
branch:      yt
user:        juxtaposicion
date:        2012-11-27 00:35:12
summary:     reverting rockstar to stephen's commits.
reverting setup.cfg
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/fdc4c1e77d6c/
changeset:   fdc4c1e77d6c
branch:      yt
user:        Christopher Moody
date:        2012-11-27 05:51:01
summary:     finished removing references to _setup_aprticle_grids
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/01662d3efcd3/
changeset:   01662d3efcd3
branch:      yt
user:        Christopher Moody
date:        2012-11-27 06:05:11
summary:     adding particle_index field
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/bd0ac35d628e/
changeset:   bd0ac35d628e
branch:      yt
user:        MatthewTurk
date:        2012-11-27 11:17:43
summary:     Merged in juxtaposicion/yt-dev (pull request #247)
affected #:  10 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d85812546e5d/
changeset:   d85812546e5d
branch:      yt
user:        jzuhone
date:        2012-11-24 05:28:14
summary:     1) Adding CICSample_3, which performs the reverse operation of CICDeposit_3. 1st-order interpolation of values on the grid to particle positions. Also added a test which interpolates the grid coordinates to the particle positions. Since the coordinates vary linearly, the interpolation and the actual value of the particle coordinate should be identical in this case.

2) Added a couple new fluid operators for the beta model and the NFW model, common fitting functions for galaxy cluster gas profiles and dark matter halo profiles.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c1d3b872cec6/
changeset:   c1d3b872cec6
branch:      yt
user:        jzuhone
date:        2012-11-26 23:56:23
summary:     Getting types consistent with each other and using fclip
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/523b01bbce78/
changeset:   523b01bbce78
branch:      yt
user:        jzuhone
date:        2012-11-27 00:01:53
summary:     Fixing tabs
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4a6750aa4709/
changeset:   4a6750aa4709
branch:      yt
user:        MatthewTurk
date:        2012-11-27 11:40:19
summary:     Merged in jzuhone/yt (pull request #347)
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7a96cb818bae/
changeset:   7a96cb818bae
branch:      yt
user:        Christopher Moody
date:        2012-11-27 18:38:13
summary:     setup conversion factors for particle velocity and mass
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d0e15acbacaf/
changeset:   d0e15acbacaf
branch:      yt
user:        Christopher Moody
date:        2012-11-27 22:35:11
summary:     particle masses and velocity units are correct now
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e15e521170a3/
changeset:   e15e521170a3
branch:      yt
user:        Christopher Moody
date:        2012-11-27 23:12:03
summary:     typing the particle index; this cut down a 100-second loop to milliseconds...
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/271a1313d9be/
changeset:   271a1313d9be
branch:      yt
user:        MatthewTurk
date:        2012-11-27 23:22:21
summary:     Merged in juxtaposicion/yt-dev (pull request #351)
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/da2c74ebeffa/
changeset:   da2c74ebeffa
branch:      yt
user:        MatthewTurk
date:        2012-11-28 03:56:35
summary:     Disabling Rockstar by default in install_script for now.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/bcc9a9de41a1/
changeset:   bcc9a9de41a1
branch:      yt
user:        samskillman
date:        2012-11-28 05:21:02
summary:     Disabling GridValuesTest (bitwise) in the enzo frontend answer_testing_support for now until it can be controlled with a
--bitwise flag.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/33bfca118708/
changeset:   33bfca118708
branch:      yt
user:        samskillman
date:        2012-11-28 05:21:40
summary:     Merging.
affected #:  14 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/608d640f3c68/
changeset:   608d640f3c68
branch:      yt
user:        chummels
date:        2012-11-29 02:02:26
summary:     Adding in support for a run-time tolerance (for comparison precision) to be set in the enzo testing suite.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b95774ff296b/
changeset:   b95774ff296b
branch:      yt
user:        chummels
date:        2012-11-29 23:00:32
summary:     Adding in flags to answer testing to allow for --answer-store, --answer-name, and shortening --local-store to --local.  Also putting in some sensible defaults.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2ced9ee17d7c/
changeset:   2ced9ee17d7c
branch:      yt
user:        samskillman
date:        2012-11-30 00:47:01
summary:     Use overlap_proj for dim<3 simulations.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/17ae6611e6b0/
changeset:   17ae6611e6b0
branch:      yt
user:        MatthewTurk
date:        2012-11-30 00:54:21
summary:     Allowing the file passed to extract_isocontours to also be a file-like object.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c7f2e2f38932/
changeset:   c7f2e2f38932
branch:      yt
user:        samskillman
date:        2012-11-30 03:02:09
summary:     Changing the weight field from field to weight_field.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d6adb60cc148/
changeset:   d6adb60cc148
branch:      yt
user:        MatthewTurk
date:        2012-11-30 00:58:38
summary:     Adding Stream items to yt.mods and also fixing slices for the Stream handler.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e48ea3fd0507/
changeset:   e48ea3fd0507
branch:      yt
user:        jzuhone
date:        2012-11-30 05:56:57
summary:     Merged in MatthewTurk/yt (pull request #357)
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/22db916e3bc2/
changeset:   22db916e3bc2
branch:      yt
user:        jzuhone
date:        2012-11-27 20:16:38
summary:     Should be allowed to directly update the grid data in the field handler
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/787cf887d824/
changeset:   787cf887d824
branch:      yt
user:        jzuhone
date:        2012-11-27 22:43:30
summary:     Decided to move this to StreamHierarchy. It now loops over all grids in the hierarchy.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/592cf5fd7b89/
changeset:   592cf5fd7b89
branch:      yt
user:        jzuhone
date:        2012-11-28 18:02:07
summary:     Particles should now work for all implementations of the stream frontend so far. Also added a couple of tests.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/25c5dc0982b4/
changeset:   25c5dc0982b4
branch:      yt
user:        jzuhone
date:        2012-11-28 20:12:35
summary:     Particle generator classes
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6e157ece026c/
changeset:   6e157ece026c
branch:      yt
user:        jzuhone
date:        2012-11-30 06:54:42
summary:     Removed whitespace and added docstrings. Removed particle generator for now.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e053d21a0f8a/
changeset:   e053d21a0f8a
branch:      yt
user:        MatthewTurk
date:        2012-11-30 13:07:44
summary:     Merged in jzuhone/yt (pull request #354)
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c9b4cd40d3d4/
changeset:   c9b4cd40d3d4
branch:      yt
user:        MatthewTurk
date:        2012-11-30 13:24:13
summary:     Updating yt to gold003 for answer testing.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7274061dec79/
changeset:   7274061dec79
branch:      yt
user:        samskillman
date:        2012-11-30 19:03:42
summary:     Adding attempt to retrieve cloud data several times if first try fails.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/476e82a5518f/
changeset:   476e82a5518f
branch:      yt
user:        samskillman
date:        2012-11-30 19:34:07
summary:     Fixing up the answer retrieval trying a bit.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e6b633a403dd/
changeset:   e6b633a403dd
branch:      yt
user:        samskillman
date:        2012-11-30 19:37:08
summary:     Moving the sleep.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/59114fb09b62/
changeset:   59114fb09b62
branch:      yt
user:        MatthewTurk
date:        2012-11-30 19:40:38
summary:     Merged in samskillman/yt (pull request #358)
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ecfb819035d8/
changeset:   ecfb819035d8
branch:      yt
user:        Yuan Li
date:        2012-11-27 21:34:32
summary:     change Numberdensity to HydrogenDensity
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/75b57438a580/
changeset:   75b57438a580
branch:      yt
user:        yl2501
date:        2012-11-30 05:42:03
summary:     Use H_NumberDensity from Britton
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/5473ca3383a7/
changeset:   5473ca3383a7
branch:      yt
user:        yl2501
date:        2012-11-30 20:47:16
summary:     define field in yt/frontends/enzo/fields.py
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4d260047b882/
changeset:   4d260047b882
branch:      yt
user:        yl2501
date:        2012-11-30 20:47:35
summary:     define H_NumberDensity here
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e80bdcb82b42/
changeset:   e80bdcb82b42
branch:      yt
user:        yl2501
date:        2012-11-30 20:51:02
summary:     remove import
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ab6b8a938ca3/
changeset:   ab6b8a938ca3
branch:      yt
user:        brittonsmith
date:        2012-11-30 20:56:45
summary:     Merged in yl2501/yt (pull request #352)
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/5aa2808a7cf9/
changeset:   5aa2808a7cf9
branch:      yt
user:        ngoldbaum
date:        2012-11-30 21:17:35
summary:     Only doing ProjectionValuesTests along active dimensions.  Throwing a more useful error when an answer can't be found in the answer dict.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/18feb7c37f90/
changeset:   18feb7c37f90
branch:      yt
user:        ngoldbaum
date:        2012-11-30 21:36:19
summary:     Streamling a bit.  Thanks Matt!
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4f88d432d0da/
changeset:   4f88d432d0da
branch:      yt
user:        MatthewTurk
date:        2012-11-30 21:39:55
summary:     Merged in ngoldbaum/yt (pull request #359)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ba5bdf622566/
changeset:   ba5bdf622566
branch:      yt
user:        ngoldbaum
date:        2012-11-30 23:27:29
summary:     Skipping the weight_field comparison is the weight field is None.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d0d4240f066b/
changeset:   d0d4240f066b
branch:      yt
user:        ngoldbaum
date:        2012-11-30 23:28:12
summary:     Merging.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e9fc5728572f/
changeset:   e9fc5728572f
branch:      yt
user:        ngoldbaum
date:        2012-12-02 01:00:35
summary:     Pointing the install script at the new enzo stable location.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6b5394f0f728/
changeset:   6b5394f0f728
branch:      yt
user:        jzuhone
date:        2012-11-30 22:13:07
summary:     Particle generation classes. Bugfix for update_data in the stream frontend.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7eef966e21e6/
changeset:   7eef966e21e6
branch:      yt
user:        jzuhone
date:        2012-11-30 22:15:47
summary:     Another bugfix for update_data. Added particle generation tests.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/711e95aff04b/
changeset:   711e95aff04b
branch:      yt
user:        MatthewTurk
date:        2012-12-03 19:00:21
summary:     Merged in jzuhone/yt (pull request #361)
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/38156b81fa92/
changeset:   38156b81fa92
branch:      yt
user:        jzuhone
date:        2012-12-03 20:24:40
summary:     Cosmetic fixes
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/fa360d6c81c3/
changeset:   fa360d6c81c3
branch:      yt
user:        jzuhone
date:        2012-12-03 20:25:52
summary:     Merging
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2cc1aa41184e/
changeset:   2cc1aa41184e
branch:      yt
user:        MatthewTurk
date:        2012-12-03 21:17:30
summary:     This updates yt to embed the mercurial hash (and branch) in a file named
__hg_version__.py when installing.  I believe I have fixed the locations where
this is used to correctly use it.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/61f553c23c6a/
changeset:   61f553c23c6a
branch:      yt
user:        MatthewTurk
date:        2012-12-03 21:26:38
summary:     Fixing a couple camelCase issues.  Note that target_dir is not currently used.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4e841522ff45/
changeset:   4e841522ff45
branch:      yt
user:        MatthewTurk
date:        2012-11-28 13:20:16
summary:     This canges the rockstar interface to work with 0.99.6.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/74161ead4b7f/
changeset:   74161ead4b7f
branch:      yt
user:        MatthewTurk
date:        2012-11-28 14:18:15
summary:     First pass at streamlining Rockstar halo finding:

 * Remove parsing of the server.h file in favor of two different Cython methods
 * Move several calls to the ytcfg object outside of loops and conditionals
 * Fix split_work() to avoid any loops
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9239d5a8c5dd/
changeset:   9239d5a8c5dd
branch:      yt
user:        MatthewTurk
date:        2012-11-28 14:59:38
summary:     Going back to using ProcessorPools instead of the pool.comm stuff.  Removing
the print_rockstar_settings routine.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ce4a238aa912/
changeset:   ce4a238aa912
branch:      yt
user:        MatthewTurk
date:        2012-11-28 15:03:31
summary:     Changing docstring to reflect new TimeSeries initialization
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/27fa49e34965/
changeset:   27fa49e34965
branch:      yt
user:        MatthewTurk
date:        2012-11-29 21:03:23
summary:     Change Rockstar halo finding to use readers *only* for reading data.  This
allows the readers to be the only ones that instantiate hierarchies, unless
they have previously been instantiated before calling Rockstar.

This leads to the point that we will at some point need to swap out
communicators for these items, as we are adding new topcomms during Rockstar
halo finding.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ee235fb2046e/
changeset:   ee235fb2046e
branch:      yt
user:        sskory
date:        2012-11-30 20:29:46
summary:     These Halo attachments need to go here, otherwise they're identical for all halos.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1b2b0d4e334b/
changeset:   1b2b0d4e334b
branch:      yt
user:        sskory
date:        2012-11-30 20:33:22
summary:     Merged in Matt's changes.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8deb84e38f1d/
changeset:   8deb84e38f1d
branch:      yt
user:        sskory
date:        2012-11-30 22:34:54
summary:     Updating Rockstar to work with 0.99.6.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3ebd7a48bd38/
changeset:   3ebd7a48bd38
branch:      yt
user:        sskory
date:        2012-11-30 22:35:39
summary:     Merge.
affected #:  14 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/88f17e5ee177/
changeset:   88f17e5ee177
branch:      yt
user:        sskory
date:        2012-11-30 22:39:18
summary:     Updating the install_script for Rockstar 0.99.6.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/aac45ed6d4e8/
changeset:   aac45ed6d4e8
branch:      yt
user:        sskory
date:        2012-12-03 21:39:14
summary:     A few changes for inline Rockstar.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4d7f451f048a/
changeset:   4d7f451f048a
branch:      yt
user:        sskory
date:        2012-12-03 21:39:38
summary:     Merge.
affected #:  5 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/cf1db8d604f0/
changeset:   cf1db8d604f0
branch:      yt
user:        sskory
date:        2012-12-03 23:29:20
summary:     Simplifying the inline logic.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b5ca396e761c/
changeset:   b5ca396e761c
branch:      yt
user:        sskory
date:        2012-12-03 23:31:26
summary:     Forgot to remove split_work lower down.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c65043d32eb2/
changeset:   c65043d32eb2
branch:      yt
user:        sskory
date:        2012-12-04 01:28:30
summary:     Adding the total_particles and dm_only flags to Rockstar, which address issue #469 and issue #468, respectively.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3ffe2b24d1a7/
changeset:   3ffe2b24d1a7
branch:      yt
user:        brittonsmith
date:        2012-12-04 16:19:24
summary:     Merged in MatthewTurk/yt (pull request #353)
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d43a9e0a0d78/
changeset:   d43a9e0a0d78
branch:      yt
user:        MatthewTurk
date:        2012-11-30 21:47:03
summary:     Initial import of the AMRSurface object.  docstrings and fluxes to follow.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/18c7b0bc0b93/
changeset:   18c7b0bc0b93
branch:      yt
user:        MatthewTurk
date:        2012-11-30 22:08:30
summary:     Adding docstrings, making flux work
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2a49fad97601/
changeset:   2a49fad97601
branch:      yt
user:        MatthewTurk
date:        2012-12-01 05:25:20
summary:     Center PLY files at origin.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e1b25d00dd32/
changeset:   e1b25d00dd32
branch:      yt
user:        MatthewTurk
date:        2012-12-03 18:44:14
summary:     Adding a few tests for the AMR surface fluxing.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/882e4a75aec5/
changeset:   882e4a75aec5
branch:      yt
user:        MatthewTurk
date:        2012-12-03 19:26:05
summary:     Forgot to add the flux tests!
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6bc289da0cde/
changeset:   6bc289da0cde
branch:      yt
user:        brittonsmith
date:        2012-12-04 16:20:25
summary:     Merged in MatthewTurk/yt (pull request #360)
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/147af3b13a60/
changeset:   147af3b13a60
branch:      yt
user:        MatthewTurk
date:        2012-12-03 21:46:19
summary:     Adding in a catch, if no valid files are found in the args, to supply the
string as a glob to TimeSeriesData.from_filenames.  This now lets load() get a
glob which then returns a time series object.  Closes #403 .
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8fc60853e8eb/
changeset:   8fc60853e8eb
branch:      yt
user:        brittonsmith
date:        2012-12-04 16:22:33
summary:     Merged in MatthewTurk/yt (pull request #363)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/939cff5bd00c/
changeset:   939cff5bd00c
branch:      yt
user:        ngoldbaum
date:        2012-12-04 21:57:05
summary:     Fixing an error in the docstrings for TimeSeriesData.piter()
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/da614f713751/
changeset:   da614f713751
branch:      yt
user:        MatthewTurk
date:        2012-12-04 22:24:31
summary:     Removing unused imports in profile_plotter
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6283ac4e5864/
changeset:   6283ac4e5864
branch:      yt
user:        MatthewTurk
date:        2012-12-04 23:15:03
summary:     Adding ability to sample AMRSurface objects at vertices.  This enables .PLY
files to be directly exported to SketchFab.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e9dbc2f6e977/
changeset:   e9dbc2f6e977
branch:      yt
user:        MatthewTurk
date:        2012-12-04 23:39:53
summary:     Add ability to export AMRSurface objects directly to SketchFab
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/dd65df0782c0/
changeset:   dd65df0782c0
branch:      yt
user:        MatthewTurk
date:        2012-12-04 23:44:33
summary:     Adding docstring for export_sketchfab
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/a1e2ca635f2d/
changeset:   a1e2ca635f2d
branch:      yt
user:        MatthewTurk
date:        2012-12-04 23:48:49
summary:     Fixing json loader to address running in parallel issues
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1ef5a5e19aa6/
changeset:   1ef5a5e19aa6
branch:      yt
user:        MatthewTurk
date:        2012-12-04 23:59:29
summary:     Allowing return values from @parallel_root_only and using this in the SketchFab
uploader.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/72666f2c08e0/
changeset:   72666f2c08e0
branch:      yt
user:        MatthewTurk
date:        2012-12-05 15:40:32
summary:     Fixing a missing import of ytcfg
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/622ba345f041/
changeset:   622ba345f041
branch:      yt
user:        MatthewTurk
date:        2012-12-05 15:41:29
summary:     Argh, fix dropped equal sign.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f8f64e456c32/
changeset:   f8f64e456c32
branch:      yt
user:        MatthewTurk
date:        2012-12-05 16:59:16
summary:     For high precision calculations, we want to apply bounding box estimates before
casting to float32 in the PLY export in AMRSurface.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/eda712335ad2/
changeset:   eda712335ad2
branch:      yt
user:        MatthewTurk
date:        2012-12-06 17:41:08
summary:     Adding a check for models that are likely too big for sketchfab.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ad0b37270a56/
changeset:   ad0b37270a56
branch:      yt
user:        sskory
date:        2012-12-06 23:21:52
summary:     Fixing rockstar capitalization in the install_script.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c18732411f67/
changeset:   c18732411f67
branch:      yt
user:        sskory
date:        2012-12-06 23:29:14
summary:     NOW rockstar should be correct in the install script.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7cabbf1b8bd6/
changeset:   7cabbf1b8bd6
branch:      yt
user:        ngoldbaum
date:        2012-12-07 20:23:59
summary:     Fixing creating plot windows directly from data objects.  Adding tests for this functionality.
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/418f71709113/
changeset:   418f71709113
branch:      yt
user:        ngoldbaum
date:        2012-12-07 20:38:55
summary:     Merging.
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4556a7217a82/
changeset:   4556a7217a82
branch:      yt
user:        MatthewTurk
date:        2012-12-06 20:41:58
summary:     Proposed change to upcast at IO time Enzo data to float64 from float32

Also fix the iteration over fields in covering grids to account for this and
speed things up considerably.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/dba0179fca9c/
changeset:   dba0179fca9c
branch:      yt
user:        sskory
date:        2012-12-07 21:16:28
summary:     Merged in MatthewTurk/yt (pull request #365)
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9103376525f0/
changeset:   9103376525f0
branch:      yt
user:        MatthewTurk
date:        2012-12-07 22:22:12
summary:     Updating to gold004
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/182a56beac8b/
changeset:   182a56beac8b
branch:      yt
user:        MatthewTurk
date:        2012-12-07 22:22:30
summary:     Merged
affected #:  5 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2a0f5a24ed21/
changeset:   2a0f5a24ed21
branch:      yt
user:        jzuhone
date:        2012-12-09 22:03:08
summary:     Passing the 'center' attribute to the slice just as we do for the projection. Otherwise certain callbacks (particles, etc) are broken.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7fe902d74ea4/
changeset:   7fe902d74ea4
branch:      yt
user:        jzuhone
date:        2012-12-09 22:04:00
summary:     Merging
affected #:  22 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6c8b29681fef/
changeset:   6c8b29681fef
branch:      yt
user:        jzuhone
date:        2012-12-10 06:34:45
summary:     We have to use the "mass" corresponding to the density field, otherwise the particle distribution isn't quite right, thanks to AMR.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/380f62e5f4f2/
changeset:   380f62e5f4f2
branch:      yt
user:        MatthewTurk
date:        2012-12-11 12:05:29
summary:     Adding a close for particle_handle in FLASH frontend and a close for temp HDF5
files in GDF frontend's _is_valid routine.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/93320835f626/
changeset:   93320835f626
branch:      yt
user:        jzuhone
date:        2012-12-11 16:48:40
summary:     Merged in MatthewTurk/yt (pull request #368)
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f83eb46bb5d8/
changeset:   f83eb46bb5d8
branch:      yt
user:        ngoldbaum
date:        2012-12-11 02:43:15
summary:     Checking for directories full of nonexistent data.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/fd71219bbc42/
changeset:   fd71219bbc42
branch:      yt
user:        ngoldbaum
date:        2012-12-11 02:45:13
summary:     Reporting a more useful error message if one tries to directly create a nonexistent TimeSeries
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3954d9befc7b/
changeset:   3954d9befc7b
branch:      yt
user:        ngoldbaum
date:        2012-12-11 02:46:33
summary:     Small change for readability.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/67cc52ef33df/
changeset:   67cc52ef33df
branch:      yt
user:        ngoldbaum
date:        2012-12-11 19:33:17
summary:     Fixing some issues pointed out by Matt.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9cf22c654aa6/
changeset:   9cf22c654aa6
branch:      yt
user:        ngoldbaum
date:        2012-12-11 19:42:31
summary:     Still need to make sure this works for every execution path.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/04e4a6a7d108/
changeset:   04e4a6a7d108
branch:      yt
user:        MatthewTurk
date:        2012-12-11 19:43:52
summary:     Merged in ngoldbaum/yt (pull request #367)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/56d943997200/
changeset:   56d943997200
branch:      yt
user:        MatthewTurk
date:        2012-12-12 22:26:42
summary:     Removing the bitbucket fingerprint, which is now out of date!
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/766b567fa9c3/
changeset:   766b567fa9c3
branch:      yt
user:        xarthisius
date:        2012-12-13 15:32:07
summary:     Fix clumps callback to use proper cell size for projections other than xy
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7dff8c5bd377/
changeset:   7dff8c5bd377
branch:      yt
user:        MatthewTurk
date:        2012-12-13 17:37:07
summary:     Making get_field_parameter in field info container match grid and data object
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ea797f1009ac/
changeset:   ea797f1009ac
branch:      yt
user:        brittonsmith
date:        2012-12-12 21:48:20
summary:     Adding new metallicity dependent x-ray emissivity and luminosity
fields created from tabulated Cloudy data.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/cdeb85f88fee/
changeset:   cdeb85f88fee
branch:      yt
user:        brittonsmith
date:        2012-12-13 16:00:59
summary:     Changing default filename for xray emissivity data to a directory
within the yt install.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/3d1d4b49a7ad/
changeset:   3d1d4b49a7ad
branch:      yt
user:        brittonsmith
date:        2012-12-13 17:48:56
summary:     Adding photon emissivity field [photons s^{-1} cm^{-3}] and adding a
version check for the emissivity data.  If the version does not match,
instructions are printed for downloading the latest data.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8b3cf91894e3/
changeset:   8b3cf91894e3
branch:      yt
user:        brittonsmith
date:        2012-12-13 17:49:48
summary:     Adding xray emissivity data to install script.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/dbba2cffd0c3/
changeset:   dbba2cffd0c3
branch:      yt
user:        jzuhone
date:        2012-12-13 19:29:10
summary:     Merged in brittonsmith/yt (pull request #370)
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8e4516ee0b0e/
changeset:   8e4516ee0b0e
branch:      yt
user:        xarthisius
date:        2012-12-13 21:04:05
summary:     Fix typo in _CellVolume
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/46b6eca8c702/
changeset:   46b6eca8c702
branch:      yt
user:        sskory
date:        2012-12-13 23:26:21
summary:     Adding a space before a ] for Rockstar.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2ab3aa1758c3/
changeset:   2ab3aa1758c3
branch:      yt
user:        markushaider
date:        2012-12-15 00:53:30
summary:     Increased precision for mpc_per_cm and pc_per_cm and also changed m_per_fpc in utilities/physical_constants.py
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/61c0d10ed14c/
changeset:   61c0d10ed14c
branch:      yt
user:        ngoldbaum
date:        2012-12-15 00:54:41
summary:     Increasing the precision of physical constants.  Closes #479.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0bc5b45d3421/
changeset:   0bc5b45d3421
branch:      yt
user:        MatthewTurk
date:        2012-12-15 02:37:33
summary:     Merged in ngoldbaum/yt (pull request #373: Increasing the precision of physical constants.  Closes #479.)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0a3348004c94/
changeset:   0a3348004c94
branch:      yt
user:        xarthisius
date:        2012-12-17 17:07:38
summary:     Drop trailing . from image suffix
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/49af63635f3f/
changeset:   49af63635f3f
branch:      yt
user:        ngoldbaum
date:        2012-12-17 19:12:35
summary:     Adding tests for direct png, ps, eps, and pdf plot window plots.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/493b1519bdf5/
changeset:   493b1519bdf5
branch:      yt
user:        ngoldbaum
date:        2012-12-17 19:21:37
summary:     Accidentally left a debug print statement in.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/eddc0df3623c/
changeset:   eddc0df3623c
branch:      yt
user:        ngoldbaum
date:        2012-12-17 23:07:25
summary:     Directly checking the MIME type for files saved to disk.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/fe27fd50bb50/
changeset:   fe27fd50bb50
branch:      yt
user:        ngoldbaum
date:        2012-12-17 23:08:03
summary:     Upgrading to the latest version of the distribute setup script.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ccd2b8a816a1/
changeset:   ccd2b8a816a1
branch:      yt
user:        ngoldbaum
date:        2012-12-17 23:37:32
summary:     Removing python-magic from the install script.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/53fa42c3dbc9/
changeset:   53fa42c3dbc9
branch:      yt
user:        Andrew Myers
date:        2012-11-13 03:26:23
summary:     changing a few of the orion fields from 'known' to 'fallback'
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d15ab61fb9ef/
changeset:   d15ab61fb9ef
branch:      yt
user:        Andrew Myers
date:        2012-12-18 05:10:00
summary:     merging from tip
affected #:  72 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/50879b511cd7/
changeset:   50879b511cd7
branch:      yt
user:        Andrew Myers
date:        2012-12-18 05:11:41
summary:     fixing a bug that broke writing to .yt files with chombo
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8078b0962799/
changeset:   8078b0962799
branch:      yt
user:        MatthewTurk
date:        2012-12-18 05:17:48
summary:     Merged in atmyers/yt (pull request #378: Writing to .yt files with Chombo)
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/efd4bafd92ab/
changeset:   efd4bafd92ab
branch:      yt
user:        MatthewTurk
date:        2012-12-13 18:48:44
summary:     Adding yt.imods for importing inside the IPython notebook.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/833e6e7a457c/
changeset:   833e6e7a457c
branch:      yt
user:        MatthewTurk
date:        2012-12-15 21:23:40
summary:     Adding a 'yt notebook' command that will spawn an IPython notebook.

This does not allow you to start a notebook without a password, although that
password can be blank.  Future modifications and inclusions of convenience
functions (as well as pushing HTML/JS to the server to add helper widgets) can
be placed in yt.imods.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/fcc4f8cf120a/
changeset:   fcc4f8cf120a
branch:      yt
user:        MatthewTurk
date:        2012-12-15 21:45:57
summary:     Oops, missed the description change for the notebook.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/70616f2e3057/
changeset:   70616f2e3057
branch:      yt
user:        MatthewTurk
date:        2012-12-16 13:57:19
summary:     A few minor modifications to fit with Nathan's suggestions.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/000c2e074104/
changeset:   000c2e074104
branch:      yt
user:        MatthewTurk
date:        2012-12-16 14:45:55
summary:     Add image deposition to QuadTree.

This allows QuadTree objects (used in projections) to fill image buffers
directly.  My initial tests show this to be faster in all cases for datasets.
However, this depends strongly on the number of data points in the dataset
versus the number of points in the image buffer.  For large, complex datasets,
this always comes ou in favor of the new object.  As an example, a dataset with
8 levels, 3700 grids and 10 million zones -- small, but not trivial -- was
improved from 19 fps to 32 fps with this new method.

This method is not integrated yet, as the pixelizer is also used in a number of
other places.  However, I hope we can dynamically swap pixelizers to use it.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4174ccdee99d/
changeset:   4174ccdee99d
branch:      yt
user:        ngoldbaum
date:        2012-12-18 05:21:08
summary:     Merged in MatthewTurk/yt (pull request #375: Adding some helpers for the IPython notebook)
affected #:  6 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/99bbc99c6faa/
changeset:   99bbc99c6faa
branch:      yt
user:        Andrew Myers
date:        2012-12-18 23:34:17
summary:     forgot to check this part in. This REALLY DOES fix writing to .yt files for Chombo
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/8372c2650bf3/
changeset:   8372c2650bf3
branch:      yt
user:        MatthewTurk
date:        2012-12-19 13:22:15
summary:     Updating to gold005
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/5c47f8a3f982/
changeset:   5c47f8a3f982
branch:      yt
user:        MatthewTurk
date:        2012-12-19 13:22:37
summary:     Merging
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f2605c9d8fa4/
changeset:   f2605c9d8fa4
branch:      yt
user:        xarthisius
date:        2012-12-18 20:49:16
summary:     Add test for GDF writer
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/38d19fd66171/
changeset:   38d19fd66171
branch:      yt
user:        MatthewTurk
date:        2012-12-19 13:24:15
summary:     Merged in xarthisius/yt (pull request #380: Add test for GDF writer)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4ba75d3666fe/
changeset:   4ba75d3666fe
branch:      yt
user:        xarthisius
date:        2012-12-18 10:13:48
summary:     Update PlotWindow testsuite
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/fa22322ff149/
changeset:   fa22322ff149
branch:      yt
user:        MatthewTurk
date:        2012-12-19 20:31:14
summary:     Merged in xarthisius/yt (pull request #379: Update PlotWindow testsuite)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1755c00f96bc/
changeset:   1755c00f96bc
branch:      yt
user:        ngoldbaum
date:        2012-12-20 06:25:16
summary:     Streamlining the plot window class hierarchy and metadata handling.

This uses ImageArray to handle metadata for MPL plot window plots.
EXTjs4 still uses the old metadata dict which we can eventually ditch.

I've moved PlotMPL into its own file and added ImagePlotMPL, a simple
nontrivial subclass that handles image data (i.e. dispalys with imshow,
has a colorbar). PlotMPL has a concept of a Figure and Axes and that's
about it.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/225d960c46c0/
changeset:   225d960c46c0
branch:      yt
user:        ngoldbaum
date:        2012-12-20 06:37:37
summary:     Unintentionally deleted this bit.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2a9c81d63fee/
changeset:   2a9c81d63fee
branch:      yt
user:        ngoldbaum
date:        2012-12-20 07:09:48
summary:     Forgot to switch this out.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/efe3554839fc/
changeset:   efe3554839fc
branch:      yt
user:        ngoldbaum
date:        2012-12-20 07:10:35
summary:     This should be a tuple.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0a75514f73e0/
changeset:   0a75514f73e0
branch:      yt
user:        ngoldbaum
date:        2012-12-20 07:27:10
summary:     Streamlining, fixing a bug that might leave zlim unset.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/64f0b7e0d9f8/
changeset:   64f0b7e0d9f8
branch:      yt
user:        ngoldbaum
date:        2012-12-20 07:50:53
summary:     Need to import CStringIO
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/eff4479eaa29/
changeset:   eff4479eaa29
branch:      yt
user:        ngoldbaum
date:        2012-12-20 08:05:47
summary:     Eliminating some cruft in PlotMPL
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1073868dbd49/
changeset:   1073868dbd49
branch:      yt
user:        ngoldbaum
date:        2012-12-20 08:11:29
summary:     The tick label format should only be specified for plot window plots.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d48ced5c16fe/
changeset:   d48ced5c16fe
branch:      yt
user:        xarthisius
date:        2012-12-20 14:09:59
summary:     Cosmetics in base_plot_types
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c6cc0eacf3af/
changeset:   c6cc0eacf3af
branch:      yt
user:        ngoldbaum
date:        2012-12-20 19:15:36
summary:     Cleaning up plot window imports.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/361a91d0ea7c/
changeset:   361a91d0ea7c
branch:      yt
user:        ngoldbaum
date:        2012-12-20 19:36:31
summary:     Moving the generation of the colorbar label to the instantiation
of the image array info dict in fixed_resolution.py
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/96e0d5ebb3fa/
changeset:   96e0d5ebb3fa
branch:      yt
user:        samskillman
date:        2012-12-21 23:28:04
summary:     This was changed at some point, breaking rotations.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/5fa636d7db1d/
changeset:   5fa636d7db1d
branch:      yt
user:        samskillman
date:        2012-12-21 23:29:00
summary:     Merging
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/1d6aeed04e24/
changeset:   1d6aeed04e24
branch:      yt
user:        samskillman
date:        2012-12-21 23:57:47
summary:     This was also a culprit in broken rotations.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/55c18d508f76/
changeset:   55c18d508f76
branch:      yt
user:        samskillman
date:        2012-12-22 00:14:12
summary:     Fixing for when north_vector is not specified by the user, while also preserving rotation functionality.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c176809c9e56/
changeset:   c176809c9e56
branch:      yt
user:        xarthisius
date:        2012-12-23 17:54:30
summary:     Allow to generate plots in log scale and renders in linear scale
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2893f026fcfd/
changeset:   2893f026fcfd
branch:      yt
user:        xarthisius
date:        2012-12-26 17:43:20
summary:     Add method for converting scalar/list to numpy array
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e7a395a4efb9/
changeset:   e7a395a4efb9
branch:      yt
user:        xarthisius
date:        2012-12-26 17:43:46
summary:     Import assert_raises from numpy.testing
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b047fb91d53a/
changeset:   b047fb91d53a
branch:      yt
user:        xarthisius
date:        2012-12-26 17:47:21
summary:     Find_points now accepts scalar and lists as the arguments, fixes #473
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ae6310f3d702/
changeset:   ae6310f3d702
branch:      yt
user:        xarthisius
date:        2012-12-26 17:57:42
summary:     Update tests for GridTree, add test for new functionality introduced in previous commit
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ad241a5772fc/
changeset:   ad241a5772fc
branch:      yt
user:        xarthisius
date:        2012-12-26 18:51:56
summary:     ensure_numpy_array works for now for tuples too
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ceea5450f9ec/
changeset:   ceea5450f9ec
branch:      yt
user:        ngoldbaum
date:        2012-12-27 01:03:16
summary:     Parsing field display names for spaces, closes #458.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/4d1f97eb808e/
changeset:   4d1f97eb808e
branch:      yt
user:        ngoldbaum
date:        2012-12-27 01:11:08
summary:     Fixing display_names that the previous commit will break.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0281e5cfa0db/
changeset:   0281e5cfa0db
branch:      yt
user:        samskillman
date:        2012-12-31 22:50:39
summary:     Fixes to the rotations so that specifying a rotation vector yields the expected
results.  Also adding yaw and pitch to compliment the roll function.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/e9437536a5e0/
changeset:   e9437536a5e0
branch:      yt
user:        MatthewTurk
date:        2013-01-01 18:04:11
summary:     Adding an .hgchurn file to clean up email addresses from "hg churn"
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7636d44f53ad/
changeset:   7636d44f53ad
branch:      yt
user:        samskillman
date:        2013-01-01 20:33:51
summary:     Switching to dotless.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6a4bcac2fce5/
changeset:   6a4bcac2fce5
branch:      yt
user:        ngoldbaum
date:        2012-12-19 01:03:17
summary:     Checking if a user specifies ymin=ymax and zmin=zmax for 1 or 2D FLASH datasets.
Cleaning up a bit.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/11e7cce94ad6/
changeset:   11e7cce94ad6
branch:      yt
user:        jzuhone
date:        2013-01-01 21:41:53
summary:     Merged in ngoldbaum/yt (pull request #382: Checking if a user specifies ymin=ymax and zmin=zmax for 1 or 2D FLASH datasets.)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/bfb9dd705e54/
changeset:   bfb9dd705e54
branch:      yt
user:        MatthewTurk
date:        2013-01-02 15:30:44
summary:     Hotfix for Fisheye camera needing get_information()
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/2385290163db/
changeset:   2385290163db
branch:      yt
user:        ngoldbaum
date:        2013-01-04 10:21:25
summary:     Adding gridtree.c to hgignore.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/5b3692d12668/
changeset:   5b3692d12668
branch:      yt
user:        brittonsmith
date:        2013-01-04 00:01:56
summary:     Adding weighted variance derived quantity.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/bf3bf0f854fd/
changeset:   bf3bf0f854fd
branch:      yt
user:        brittonsmith
date:        2013-01-04 00:02:20
summary:     Adding tests for weighted average and variance derived quantities.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ed8eaf338837/
changeset:   ed8eaf338837
branch:      yt
user:        brittonsmith
date:        2013-01-04 17:07:36
summary:     Empty data objects were causing nans in the weighted variance.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/108341fe239f/
changeset:   108341fe239f
branch:      yt
user:        MatthewTurk
date:        2013-01-04 17:16:03
summary:     Merged in brittonsmith/yt (pull request #389: Added weighted variance derived quantity and tests for average and variance.)
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/16343bdac032/
changeset:   16343bdac032
branch:      yt
user:        brittonsmith
date:        2013-01-04 17:33:13
summary:     Lowering tolerances a little on variance and average tests.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/b0a41c2163cf/
changeset:   b0a41c2163cf
branch:      yt
user:        MatthewTurk
date:        2013-01-04 20:01:16
summary:     Ensuring that the refine_amr function sets up bounding box correctly.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6d71f5517955/
changeset:   6d71f5517955
branch:      yt
user:        brittonsmith
date:        2013-01-04 20:47:24
summary:     Properly setting final time and redshift for simulation time series
when outputs are found by searching the directory.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/554d144d9d24/
changeset:   554d144d9d24
branch:      yt
user:        MatthewTurk
date:        2013-01-04 20:53:01
summary:     Merged in brittonsmith/yt (pull request #390: Properly setting final time and redshift for simulation time series.)
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f218705c9a85/
changeset:   f218705c9a85
branch:      yt
user:        MatthewTurk
date:        2013-01-07 23:00:00
summary:     This allows for KeyError to be thrown by ParticleIO and to then dump back to
reading from grids.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/d9e6695b25c0/
changeset:   d9e6695b25c0
branch:      yt
user:        brittonsmith
date:        2013-01-09 20:08:34
summary:     Allowing the finding of outputs in simulation time series to work in
parallel by dividing up the list of possible pfs with parallel_objects.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/37455dc141c3/
changeset:   37455dc141c3
branch:      yt
user:        brittonsmith
date:        2013-01-09 20:21:12
summary:     Changing mylog calls to not use % for string formatting.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7044e4e1dcce/
changeset:   7044e4e1dcce
branch:      yt
user:        MatthewTurk
date:        2013-01-09 20:23:17
summary:     Merged in brittonsmith/yt (pull request #393: Making simulation time series work better in parallel.)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7bdcadd9aa4c/
changeset:   7bdcadd9aa4c
branch:      yt
user:        ngoldbaum
date:        2013-01-10 15:23:51
summary:     Fixing projected units.  Thanks to Christian Karch for pointing this out.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/7f5e32da1d89/
changeset:   7f5e32da1d89
branch:      yt
user:        ngoldbaum
date:        2013-01-10 15:24:31
summary:     Adding yt_updater.log to .hgignore.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c5e0f2a0ac7a/
changeset:   c5e0f2a0ac7a
branch:      yt
user:        ngoldbaum
date:        2013-01-10 15:42:00
summary:     Fixing a corner case that will break FRBs of unitless fields.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/71056b6a6ce1/
changeset:   71056b6a6ce1
branch:      yt
user:        xarthisius
date:        2013-01-10 16:14:03
summary:     [chombo] close all hdf5 file handles once they're no longer necessary
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/213e04419915/
changeset:   213e04419915
branch:      yt
user:        MatthewTurk
date:        2013-01-10 16:20:32
summary:     Merged in xarthisius/yt (pull request #395: [chombo] close all hdf5 file handles once they're no longer necessary)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/badabbdbcf91/
changeset:   badabbdbcf91
branch:      yt
user:        MatthewTurk
date:        2013-01-11 11:36:54
summary:     [gdf] Moving fileh.close() above return True in is_valid
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/a3b515ca0527/
changeset:   a3b515ca0527
branch:      yt
user:        Andrew Myers
date:        2013-01-14 01:55:04
summary:     adding an optional field_parameters keyword argument to SlicePlots and ProjectionPlots to allow the visualization of fields that require extra information
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/568ea7a65593/
changeset:   568ea7a65593
branch:      yt
user:        Andrew Myers
date:        2013-01-14 02:02:20
summary:     adding to the docstrings
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/bf5f6f75516f/
changeset:   bf5f6f75516f
branch:      yt
user:        Andrew Myers
date:        2013-01-14 02:14:58
summary:     removing mutable objects from function calls
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/99a5a328ad89/
changeset:   99a5a328ad89
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-14 15:54:01
summary:     Merging from yt-2.x into yt-3.0.

Many tests -- mostly new tests or tests related to non-implemented objects --
now fail.  Fixing these will be the next stage of the merge.
affected #:  83 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9e7827d43296/
changeset:   9e7827d43296
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-14 18:27:58
summary:     Disabling some non-implemented tests and bringing stream tests to a functional state.
affected #:  9 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/6e4a76cea204/
changeset:   6e4a76cea204
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-14 19:24:26
summary:     Some work on the ParticleGenerator.

An issue that is continually cropping up for particle fields and the stream
handler is identifying which fields are particle fields versus fluid fields.  I
believe that is the source of the test failures for the particle generator.
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/38a3e862fba0/
changeset:   38a3e862fba0
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-14 22:17:47
summary:     Merging from GadgetBinary branch
affected #:  6 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/10f8d859d736/
changeset:   10f8d859d736
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-14 23:19:39
summary:     Minor SPH container fixes
affected #:  2 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/12e0f5defae9/
changeset:   12e0f5defae9
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-15 01:18:28
summary:     Removing a few unused variables.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/0b223abcb6ff/
changeset:   0b223abcb6ff
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-15 13:25:13
summary:     This commit changes several things about how RAMSES data is accessed.

 * The assignment of new Octs is now handled by
 * Boundary octs are no longer assigned at all.  Future iterations may want to
   change this, but it will require adding new domain subsets and
   OctAllocationContainers.
 * Fields can be specified in the constructor for RAMSES files.  For instance:


    ramses_fields = ["Density", "x-velocity", "y-velocity",
                     "z-velocity", "Pressure", "Metallicity"]

    pf3 = load("output_00700/info_00700.txt", fields=ramses_fields[:5])

 This resolves issues I was having with output_00700.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/769b33d000d6/
changeset:   769b33d000d6
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-15 14:08:27
summary:     Adding a double-check assert and fixing a grevious error with assiging oct positions.
affected #:  3 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/14081d3a1635/
changeset:   14081d3a1635
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-15 21:04:00
summary:     Merging
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/35f426722e71/
changeset:   35f426722e71
branch:      yt
user:        MatthewTurk
date:        2013-01-14 04:29:40
summary:     Removing an immutable from argument list.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f3da561a2a81/
changeset:   f3da561a2a81
branch:      yt
user:        ngoldbaum
date:        2013-01-14 05:49:23
summary:     Adding a field_parameters kwarg to OffAxisSlicePlot.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/915e0aac6bd9/
changeset:   915e0aac6bd9
branch:      yt
user:        brittonsmith
date:        2013-01-14 20:23:59
summary:     Fixing output path logic for halo profiler.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/a10b27effcf8/
changeset:   a10b27effcf8
branch:      yt
user:        brittonsmith
date:        2013-01-14 20:31:15
summary:     Oops.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ccaa2d32bab1/
changeset:   ccaa2d32bab1
branch:      yt
user:        Andrew Myers
date:        2013-01-14 21:36:13
summary:     the documentation for the Camera constructor says that no_ghost defaults to False, but actually it defaults to True
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f9473ac8c30b/
changeset:   f9473ac8c30b
branch:      yt
user:        MatthewTurk
date:        2013-01-14 21:53:55
summary:     Merged in atmyers/yt (pull request #399: the documentation for the Camera constructor says that no_ghost defaults to False, but actually it defaults to True)
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/ede211156351/
changeset:   ede211156351
branch:      yt
user:        xarthisius
date:        2013-01-15 14:03:47
summary:     Introduce 'native' as a possible origin option for PlotWindow, that allows to use simulation coordinate system
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/9014d0e15e5c/
changeset:   9014d0e15e5c
branch:      yt
user:        xarthisius
date:        2013-01-15 14:25:52
summary:     Revert previous commit
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/a78ef74c99e1/
changeset:   a78ef74c99e1
branch:      yt
user:        MatthewTurk
date:        2012-12-19 00:50:37
summary:     Re-inserting the centering / origin code from Anthony.  I removed it by
mistake.
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/c3e7e785d511/
changeset:   c3e7e785d511
branch:      yt
user:        xarthisius
date:        2013-01-15 15:30:45
summary:     Rentroduce 'native' as a possible origin option for PlotWindow, that allows to use simulation coordinate system
affected #:  1 file
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/f62d677671ed/
changeset:   f62d677671ed
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-15 21:36:40
summary:     Merging from 2.x.
affected #:  4 files
Diff not available.

https://bitbucket.org/yt_analysis/yt-3.0/commits/df575510e2d5/
changeset:   df575510e2d5
branch:      yt-3.0
user:        MatthewTurk
date:        2013-01-15 21:37:18
summary:     Merging
affected #:  1 file
Diff not available.

Repository URL: https://bitbucket.org/yt_analysis/yt-3.0/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list