-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.py
66 lines (41 loc) · 988 Bytes
/
template.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#! /usr/bin/env python
"""
Name:
Purpose:
Uses:
healpy
Inputs:
Outputs:
Modification History:
Written by Z Knight, 2016.09.07
"""
import numpy as np
import matplotlib.pyplot as plt
import healpy as hp
import time # for measuring duration
from scipy.interpolate import interp1d
import get_crosspower as gcp # for loadCls
from numpy.polynomial.legendre import legval # for C_l -> C(theta) conversion
from numpy.polynomial.legendre import legfit # for C(theta) -> C_l conversion
#from ispice import ispice
from legprodint import getJmn
import sim_stats as sims # for getSMICA and getCovar
def mf():
"""
Purpose:
Procedure:
Inputs:
Returns:
"""
pass
################################################################################
# testing code
def test(nSims=100,lmax=100,lmin=2,useCLASS=1,useLensing=1):
"""
Purpose:
function for testing
Inputs:
"""
print 'step 3: profit'
if __name__=='__main__':
test()