forked from ivh/PyGalKin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__init__.py
57 lines (48 loc) · 1.08 KB
/
__init__.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
"""
Doc-String for the __init__.py file.
look into the doc string for the PyCigale submodule
for more information.
"""
__author__ = 'T. Marquart, J. Staabis, A. Zien'
__version__= 0.2
__PAR__= {}
# scipy etc.
# (pylab is imported in plot.py)
import numpy as N
import pyfits
import scipy as S
from scipy import interpolate
from scipy import signal as Sig
from scipy.optimize import leastsq as LS
from numpy.ma import masked_where,masked_array,mask_or
from scipy.fftpack import fft
from filtfilt import filtfilt
from mpfit import mpfit
from math import pi,e,radians,degrees
# OS etc.
import os
import os.path as path
import sys
from time import sleep
from copy import copy
import wx
import pickle
from sqlite3 import dbapi2 as sqlite
from sdss import sqlcl
##############
# own things #
##############
from tool import *
import PyCigale as C
import PyArgus as A
import interact as I
import InOutput as IO
import ModelVF as MV
import Gauss as G
import fit as F
import plot as P
import MacroGen as MG
import db as DB
# Good ol' IDL
try: from pyIDL import idl as IDL
except: print 'Could not import IDL'