Skip to content

Commit

Permalink
removing freqs typos (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgiardie committed May 30, 2023
1 parent 2b077fc commit 50c5088
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mflike/mflike.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class MFLike(InstallableLikelihood):
def initialize(self):
# Set default values to data member not initialized via yaml file
self.l_bpws = None
self.freqs = None
self.spec_meta = []

# Set path to data
Expand Down Expand Up @@ -291,7 +290,7 @@ def get_sacc_names(pol, exp_1, exp_2):
if (pol in ["TE", "ET"]) and symm:
pol2 = pol[::-1]
pols.remove(pol2)
tname_1, tname_2, dtype = get_sacc_names(pol2, exp_1, exp_2, freq_1, freq_2)
tname_1, tname_2, dtype = get_sacc_names(pol2, exp_1, exp_2)
ind2 = s.indices(dtype, (tname_1, tname_2))
cls2 = s.get_ell_cl(dtype, tname_1, tname_2)[1]
cls = 0.5 * (cls + cls2)
Expand Down

0 comments on commit 50c5088

Please sign in to comment.