Skip to content

Commit dd4d052

Browse files
authored
Merge branch 'master' into fix_364
2 parents f179d02 + dbe9a53 commit dd4d052

12 files changed

Lines changed: 882 additions & 2552 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# HEAD
22

3+
- Make `@_profile` preserve docstrings [#371](https://github.com/litebird/litebird_sim/pull/371)
4+
35
# Version 0.14.0
46

57
- **Breaking change**: Bug in the 1/f noise generation has been corrected. Previously, the frequency array was miscalculated due to an incorrect factor of 2 in the sample spacing passed to the SciPy function fft.rfftfreq. [#362](https://github.com/litebird/litebird_sim/pull/362).

default_imo/schema.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

default_imo/schema.json.gz

-855 KB
Binary file not shown.

docs/source/installation.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ for this.
6666
# Clone the code locally
6767
git clone https://github.com/litebird/litebird_sim litebird_sim
6868
69+
# If you are running Poetry 2.0 or above, run this to install the `export` plugin
70+
pip install poetry-plugin-export
71+
6972
# Generate requirements.txt and install all the dependencies
7073
poetry export --without-hashes $EXTRAS -o requirements.txt
7174
pip install --upgrade pip

litebird_sim/detectors.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ class DetectorInfo:
141141
142142
- mueller_hwp (Union[None, np.ndarray]): mueller matrix of the HWP.
143143
The default is None (i.e. no HWP)
144+
145+
- mueller_hwp_solver (Union[None, np.ndarray]): mueller matrix of the HWP
146+
for the mapmaking. It allows to have a non-ideal HWP in the solver.
147+
The default is None (i.e. no HWP)
144148
"""
145149

146150
name: str = ""
@@ -167,6 +171,7 @@ class DetectorInfo:
167171
pol_angle_rad: float = 0.0
168172
pol_efficiency: float = 1.0
169173
mueller_hwp: Union[None, np.ndarray] = None
174+
mueller_hwp_solver: Union[None, np.ndarray] = None
170175

171176
def __post_init__(self):
172177
if self.quat is None:

litebird_sim/hwp_sys/examples/HWP_systematics.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

litebird_sim/hwp_sys/examples/MFT_100_h_beta_z.txt

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)