Skip to content

Commit

Permalink
Option to pass scatter kwargs to artists created by the LMA controller
Browse files Browse the repository at this point in the history
  • Loading branch information
deeplycloudy committed Apr 16, 2014
1 parent 09587c9 commit 63ffe9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LMA/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ def read_hdf5(self, LMAfileHDF):

return d

def load_hdf5_to_panels(self, panels, LMAfileHDF):
def load_hdf5_to_panels(self, panels, LMAfileHDF, scatter_kwargs={}):
d = self.read_hdf5(LMAfileHDF)
post_filter_brancher, scatter_ctrl = self.pipeline_for_dataset(d, panels)
post_filter_brancher, scatter_ctrl = self.pipeline_for_dataset(d, panels, scatter_kwargs=scatter_kwargs)
branch_to_scatter_artists = scatter_ctrl.branchpoint
charge_lasso = LassoChargeController(
target=ItemModifier(
Expand Down

0 comments on commit 63ffe9b

Please sign in to comment.