Skip to content

Commit 4b3c5f6

Browse files
committed
texc --> tex_config
1 parent 7edf784 commit 4b3c5f6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

python/lsst/pipe/tasks/computeExposureSummaryStats.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@ def setDefaults(self):
185185
self.psfTE4TreecorrConfig,
186186
]
187187

188-
for texc, mint, maxt in zip(TExTreecorrConfig, min_theta, max_theta):
189-
texc.treecorr.min_sep = mint / 60.0
190-
texc.treecorr.max_sep = maxt / 60.0
191-
texc.treecorr.nbins = 1
192-
texc.treecorr.bin_type = "Linear"
193-
texc.treecorr.sep_units = "degree"
188+
for tex_config, mint, maxt in zip(TExTreecorrConfig, min_theta, max_theta):
189+
tex_config.treecorr.min_sep = mint / 60.0
190+
tex_config.treecorr.max_sep = maxt / 60.0
191+
tex_config.treecorr.nbins = 1
192+
tex_config.treecorr.bin_type = "Linear"
193+
tex_config.treecorr.sep_units = "degree"
194194

195195

196196
class ComputeExposureSummaryStatsTask(pipeBase.Task):

0 commit comments

Comments
 (0)