You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Arnaud,
When I tested to generate some lognormal mock with los='z', it gives some error, e.g.
'''
250 if los is not None:
--> 251 los = self._get_los(los)
252 self.attrs['los'] = los
253 self.set_complex_delta_field()
AttributeError: 'LagrangianLinearMock' object has no attribute '_get_los'.
'''
I guess that we need to change line 251 to "los = _get_los(los)". Could you check it?
Thanks,
Zheije
The text was updated successfully, but these errors were encountered:
mockfactory/mockfactory/gaussian_mock.py
Line 251 in c55a6b8
Hi Arnaud,
When I tested to generate some lognormal mock with los='z', it gives some error, e.g.
'''
250 if los is not None:
--> 251 los = self._get_los(los)
252 self.attrs['los'] = los
253 self.set_complex_delta_field()
AttributeError: 'LagrangianLinearMock' object has no attribute '_get_los'.
'''
I guess that we need to change line 251 to "los = _get_los(los)". Could you check it?
Thanks,
Zheije
The text was updated successfully, but these errors were encountered: