Exemple #1
0
 def __call__(self, TElms):
     # print "This is fwd_op w. no_lensing %s _type %s"%(self.no_lensing,_type)
     if _type == 'T':
         TEBlms = TElms
     elif _type == 'QU':
         TEBlms = np.array([TElms[0], np.zeros_like(TElms[0])])
     elif _type == 'TQU':
         TEBlms = np.array([TElms[0], TElms[1], np.zeros_like(TElms[0])])
     else:
         assert 0
     self.cov.apply_alms(_type, TEBlms, inplace=True)
     return filtTElms(
         SM.apply_pinvTEmat(_type, self.lib_alm, self.cov.cls, TElms) +
         TEBlms[:TEBlen(_type)], self.cov)
Exemple #2
0
 def __call__(self, TEBlms):
     assert TEBlms.shape == (TEBlen(_type, ), self.cov.lib_skyalm.alm_size)
     return filtTElms(
         SM.apply_pinvTEmat(_type, self.cov.lib_skyalm, self.inv_cls,
                            TEBlms), self.cov)
Exemple #3
0
 def __call__(self, TElms):
     # print "This is fwd_op w. no_lensing %s _type %s"%(self.no_lensing,_type)
     TQUlms = SM.TE2TQUlms(_type, self.cov.lib_skyalm, TElms)
     for i, f in enumerate(_type): self.cov.apply_alm(f, TQUlms[i], inplace=True)
     return filtTElms(SM.apply_pinvTEmat(_type, self.lib_alm, self.cov.cls, TElms)
                          + SM.TQU2TElms(_type, self.lib_alm, TQUlms),self.cov)