Warning: Can't synchronize with repository "(default)" (/home/git/ome.git does not appear to be a Git repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 2 of Ticket #7306


Ignore:
Timestamp:
11/23/11 12:37:32 (12 years ago)
Author:
atarkowska
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7306

    • Property Cc jburel added
    • Property Summary changed from BUG to BUG: param range miscalculated
  • Ticket #7306 – Description

    initial v2  
    11Referring to #7305 script misinterpret range values when they are set to '0'. The problem is in calculateRanges where commandArgs "T_End" and "Z_End" is 0 is treated as entire range rather then particular plane. Giving commandArgs= {"Z_Start":0, "Z_End":0,"T_Start": 1, "T_End": 5} will make movie for entire Z range and T in (1-5) rather then generate movie for first plane and T in (1-5) 
     2 
     3Instead of: 
     4 
     5{{{ 
     6if "Z_Start" in commandArgs and commandArgs["Z_Start"] = 0 and commandArgs["Z_Start"] < sizeZ: 
     7        zStart = commandArgs["Z_Start"] 
     8if "Z_End" in commandArgs and commandArgs["Z_End"] = 0 and commandArgs["Z_End"] < sizeZ: 
     9        zEnd = commandArgs["Z_End"]+1 
     10}}} 
     11 
     12should be: 
     13 
     14{{{ 
     15if "Z_Start" in commandArgs and commandArgs["Z_Start"] >= 0 and commandArgs["Z_Start"] <= sizeZ: 
     16        zStart = commandArgs["Z_Start"] 
     17if "Z_End" in commandArgs and commandArgs["Z_End"] >= 0 and commandArgs["Z_End"] <= sizeZ: 
     18        zEnd = commandArgs["Z_End"]+1 
     19}}} 

1.3.13-PRO © 2008-2011 Agilo Software all rights reserved (this page was served in: 0.13197 sec.)

We're Hiring!