├── 2dpdfs ├── 2dg_CFHT ├── 2dg_CFHT.pkl ├── 2dg_DES.pkl ├── 2dg_LSST.pkl ├── 2dg_LSST2.pkl ├── 2di_CFHT.pkl ├── 2di_DES.pkl ├── 2di_LSST.pkl ├── 2di_LSST2.pkl ├── 2dr_CFHT.pkl ├── 2dr_DES.pkl ├── 2dr_LSST.pkl └── 2dr_LSST2.pkl ├── FastLensSim.py ├── MakeFigure34567.py ├── MakeLensPop.py ├── MakeResults.py ├── ModelAll.py ├── PopulationFunctions.py ├── README.md ├── README.txt ├── RingFinder.py ├── SignaltoNoise.py ├── StochasticObserving.py ├── Surveys.py ├── __init__.py ├── distances.py ├── imageSim ├── SBModels.py ├── SBModels.pyc ├── SBProfiles.py ├── SBProfiles.pyc ├── SBProfiles.py~ ├── SBmodels.py ├── __init__.py ├── __init__.pyc ├── convolve.py ├── convolve.pyc ├── imageSim.tar ├── models.py ├── models.pyc ├── models.py~ ├── pointSource.py ├── pointSource.pyc ├── profiles.py └── profiles.pyc ├── indexTricks.py ├── lenses_DESa.txt ├── lenses_DESb.txt ├── lenses_DESc.txt ├── lenses_Euclid.txt ├── lenses_LSSTa.txt ├── lenses_LSSTb.txt ├── lenses_LSSTc.txt ├── lenspopsplines.pkl ├── lsst.1sqdegree_catalog2.pkl ├── lsst.1sqdegree_catalog2.txt ├── ndinterp.py ├── pylens ├── MassModels.py ├── MassModels.pyc ├── MassProfiles.py ├── MassProfiles.pyc ├── __init__.py ├── __init__.pyc ├── __init__.py~ ├── massmodel.py ├── massmodel.pyc ├── models.py ├── models.pyc ├── powerlaw.f ├── powerlaw.so ├── pylens.py └── pylens.pyc ├── redshiftsplines.pkl ├── runorder.txt └── stellarpop ├── .massmodel.py.swp ├── BAKmass_estimator.py ├── CVS ├── Entries ├── Repository ├── Root └── Template ├── MyStepMethods.py ├── MyStepMethods.pyc ├── README ├── SAMPLER.py ├── Sampler.py ├── Sampler.pyc ├── __init__.py ├── __init__.pyc ├── bak25sep12 ├── BAKmass_estimator.py ├── MyStepMethods.py ├── SAMPLER.py ├── Sampler.py ├── __init__.py ├── distances.py ├── estimator.py ├── hidden_ndinterp.py ├── mag2mag.py ├── mass_estimator.py ├── massmodel.py ├── nested_sampler.py ├── oldndinterp.py ├── origMassEstimator.py ├── origdistances.py ├── spsmodel.py ├── tools.py ├── v032310_estimator.py ├── zmass_estimator.py ├── zspsmodel.py └── zzmass_estimator.py ├── distances.py ├── distances.pyc ├── doc ├── CVS │ ├── Entries │ ├── Repository │ ├── Root │ └── Template ├── instructions-cvs.txt └── notes-pjm.txt ├── estimator.py ├── estimator.pyc ├── examples ├── lighthouse.py └── testimator.py ├── filters ├── 24mu_MIPS.res ├── 24um_MIPS.res ├── 3.6um_IRAC.res ├── 4.5um_IRAC.res ├── 5.8um_IRAC.res ├── 8.0um_IRAC.res ├── B_Johnson.res ├── B_LRIS.res ├── CVS │ ├── Entries │ ├── Repository │ ├── Root │ └── Template ├── DLSB.res ├── DLSNEWERz.res ├── DLSR.res ├── DLSV.res ├── DLSz.res ├── F098M_WFC3IR.res ├── F105W_WFC3IR.res ├── F110M_NIC1.res ├── F110W_NICMOS.res ├── F110W_WFC3IR.res ├── F125W_WFC3IR.res ├── F126N_WFC3IR.res ├── F127M_WFC3IR.res ├── F128N_WFC3IR.res ├── F130N_WFC3IR.res ├── F132N_WFC3IR.res ├── F139M_WFC3IR.res ├── F140W_WFC3IR.res ├── F153M_WFC3IR.res ├── F160W_NIC2.res ├── F160W_NICMOS.res ├── F160W_WFC3IR.res ├── F164N_WFC3IR.res ├── F165M_NIC1.res ├── F165M_NIC2.res ├── F167N_WFC3IR.res ├── F200LP_WFC3UVIS.res ├── F218W_WFC3UVIS.res ├── F225W_WFC3UVIS.res ├── F275W_WFC3UVIS.res ├── F300W_WFPC2.res ├── F300X_WFC3UVIS.res ├── F336W_WFC3UVIS.res ├── F350LP_WFC3UVIS.res ├── F373N_WFC3UVIS.res ├── F390W_WFC3UVIS.res ├── F435W_ACS.res ├── F435W_WFC.res ├── F438W_WFC3UVIS.res ├── F450W_WFPC2.res ├── F469N_WFC3UVIS.res ├── F475W_ACS.res ├── F475W_WFC.res ├── F475W_WFC3UVIS.res ├── F475X_WFC3UVIS.res ├── F487N_WFC3UVIS.res ├── F502N_WFC.res ├── F502N_WFC3UVIS.res ├── F547M_WFC3UVIS.res ├── F547M_WFPC2.res ├── F550M_HRC.res ├── F550M_WFC.res ├── F555W_ACS.res ├── F555W_WFC.res ├── F555W_WFC3UVIS.res ├── F555W_WFPC2.res ├── F600LP_WFC3UVIS.res ├── F606W_ACS.res ├── F606W_WFC.res ├── F606W_WFC3UVIS.res ├── F606W_WFPC2.res ├── F625W_WFC.res ├── F625W_WFC3UVIS.res ├── F656N_WFC3UVIS.res ├── F658N_WFC.res ├── F660N_WFC.res ├── F775W_ACS.res ├── F775W_WFC.res ├── F775W_WFC3UVIS.res ├── F814W_ACS.res ├── F814W_WFC.res ├── F814W_WFC3UVIS.res ├── F814W_WFPC2.res ├── F850LP_ACS.res ├── F850LP_WFC.res ├── F850LP_WFC3UVIS.res ├── F892N_WFC.res ├── FQ672N_WFC3UVIS.res ├── FQ674N_WFC3UVIS.res ├── H_2MASS.res ├── H_Johnson.res ├── H_KittPeak.res ├── H_UKIRT.orig ├── H_UKIRT.res ├── I_Cousins.res ├── I_LRIS.res ├── Ic_SUPRIME.res ├── J277.txt ├── J_2MASS.res ├── J_Johnson.res ├── J_KittPeak.res ├── J_MOIRCS.res ├── J_UKIRT.orig ├── J_UKIRT.res ├── K_2MASS.res ├── K_Johnson.res ├── K_KittPeak.res ├── K_UKIRT.orig ├── K_UKIRT.res ├── Kp_NIRC2.orig ├── Kp_NIRC2.res ├── Ks_MOIRCS.res ├── Ks_MOIRCS_old.res ├── Ks_rot1707wedged120K.txt ├── R_Cousins.res ├── R_LRIS.res ├── Rc_SUPRIME.res ├── U_Johnson.res ├── V_Johnson.res ├── V_LRIS.res ├── V_SUPRIME.res ├── Y_UKIRT.orig ├── Y_UKIRT.res ├── Z_LRIS.res ├── blah ├── correctUKIRT.py ├── createWFC3 │ ├── F098M_WFC3IR.res │ ├── F105W_WFC3IR.res │ ├── F110W_WFC3IR.res │ ├── F125W_WFC3IR.res │ ├── F126N_WFC3IR.res │ ├── F127M_WFC3IR.res │ ├── F128N_WFC3IR.res │ ├── F130N_WFC3IR.res │ ├── F132N_WFC3IR.res │ ├── F139M_WFC3IR.res │ ├── F140W_WFC3IR.res │ ├── F153M_WFC3IR.res │ ├── F160W_WFC3IR.res │ ├── F164N_WFC3IR.res │ ├── F167N_WFC3IR.res │ ├── F200LP_WFC3UVIS.res │ ├── F218W_WFC3UVIS.res │ ├── F225W_WFC3UVIS.res │ ├── F275W_WFC3UVIS.res │ ├── F300X_WFC3UVIS.res │ ├── F336W_WFC3UVIS.res │ ├── F350LP_WFC3UVIS.res │ ├── F390W_WFC3UVIS.res │ ├── F438W_WFC3UVIS.res │ ├── F475W_WFC3UVIS.res │ ├── F475X_WFC3UVIS.res │ ├── F555W_WFC3UVIS.res │ ├── F600LP_WFC3UVIS.res │ ├── F606W_WFC3UVIS.res │ ├── F625W_WFC3UVIS.res │ ├── F775W_WFC3UVIS.res │ ├── F814W_WFC3UVIS.res │ ├── F850LP_WFC3UVIS.res │ ├── WFC3_filters.tar.gz │ ├── f098m_thpt.tab │ ├── f105w_thpt.tab │ ├── f110w_thpt.tab │ ├── f125w_thpt.tab │ ├── f126n_thpt.tab │ ├── f127m_thpt.tab │ ├── f128n_thpt.tab │ ├── f130n_thpt.tab │ ├── f132n_thpt.tab │ ├── f139m_thpt.tab │ ├── f140w_thpt.tab │ ├── f153m_thpt.tab │ ├── f160w_thpt.tab │ ├── f164n_thpt.tab │ ├── f167n_thpt.tab │ ├── f200lp_thpt.tab │ ├── f218w_thpt.tab │ ├── f225w_thpt.tab │ ├── f275w_thpt.tab │ ├── f300x_thpt.tab │ ├── f336w_thpt.tab │ ├── f350lp_thpt.tab │ ├── f390w_thpt.tab │ ├── f438w_thpt.tab │ ├── f475w_thpt.tab │ ├── f475x_thpt.tab │ ├── f555w_thpt.tab │ ├── f600lp_thpt.tab │ ├── f606w_thpt.tab │ ├── f625w_thpt.tab │ ├── f775w_thpt.tab │ ├── f814w_thpt.tab │ ├── f850lp_thpt.tab │ ├── make_cl.py │ └── maketemplate.cl ├── g.dat ├── g_MEGA.res ├── g_SDSS.res ├── g_gunn.res ├── get_SDSS.py ├── i.dat ├── i_MEGA.res ├── i_SDSS.res ├── i_gunn.res ├── r.dat ├── r_MEGA.res ├── r_SDSS.res ├── r_gunn.res ├── tmp ├── u.dat ├── u_MEGA.res ├── u_SDSS.res ├── z.dat ├── z_MEGA.res ├── z_SDSS.res └── zp_SUPRIME.res ├── fspsmodel.py ├── fspsmodel.pyc ├── galaxev ├── CVS │ ├── Entries │ ├── Repository │ ├── Root │ └── Template ├── __init__.py ├── __init__.pyc ├── create_models.py ├── create_models.pyc ├── example_1.py └── example_2.py ├── hidden_ndinterp.py ├── mag2mag.py ├── makeModelsTemplate.py ├── mass_estimator.py ├── mass_estimator.pyc ├── massmodel.py ├── massmodel.pyc ├── ndinterp.pyc ├── nested_sampler.py ├── nested_sampler.pyc ├── octave-core ├── oldndinterp.py ├── origMassEstimator.py ├── origdistances.py ├── spsmodel.py ├── spsmodel.pyc ├── templates ├── BC_Z=0.2_age=0.250gyr.sed ├── BC_Z=0.2_age=0.500gyr.sed ├── BC_Z=0.2_age=0.750gyr.sed ├── BC_Z=0.2_age=0.800gyr.sed ├── BC_Z=0.2_age=1.000gyr.sed ├── BC_Z=0.2_age=1.250gyr.sed ├── BC_Z=0.2_age=1.500gyr.sed ├── BC_Z=0.2_age=1.600gyr.sed ├── BC_Z=0.2_age=1.750gyr.sed ├── BC_Z=0.2_age=2.000gyr.sed ├── BC_Z=0.2_age=2.250gyr.sed ├── BC_Z=0.2_age=2.500gyr.sed ├── BC_Z=0.2_age=2.750gyr.sed ├── BC_Z=0.2_age=3.000gyr.sed ├── BC_Z=0.2_age=3.250gyr.sed ├── BC_Z=0.2_age=3.500gyr.sed ├── BC_Z=0.2_age=3.750gyr.sed ├── BC_Z=0.2_age=4.000gyr.sed ├── BC_Z=0.2_age=4.250gyr.sed ├── BC_Z=0.2_age=4.500gyr.sed ├── BC_Z=0.2_age=4.750gyr.sed ├── BC_Z=0.2_age=5.000gyr.sed ├── BC_Z=0.2_age=5.250gyr.sed ├── BC_Z=0.2_age=5.500gyr.sed ├── BC_Z=0.2_age=5.750gyr.sed ├── BC_Z=0.2_age=6.000gyr.sed ├── BC_Z=0.4_age=0.125gyr.sed ├── BC_Z=0.4_age=0.250gyr.sed ├── BC_Z=0.4_age=0.375gyr.sed ├── BC_Z=0.4_age=0.500gyr.sed ├── BC_Z=0.4_age=0.625gyr.sed ├── BC_Z=0.4_age=0.750gyr.sed ├── BC_Z=0.4_age=0.875gyr.sed ├── BC_Z=0.4_age=1.000gyr.sed ├── BC_Z=0.4_age=1.250gyr.sed ├── BC_Z=0.4_age=1.500gyr.sed ├── BC_Z=0.4_age=1.750gyr.sed ├── BC_Z=0.4_age=10.00gyr.sed ├── BC_Z=0.4_age=12.00gyr.sed ├── BC_Z=0.4_age=15.00gyr.sed ├── BC_Z=0.4_age=18.00gyr.sed ├── BC_Z=0.4_age=2.000gyr.sed ├── BC_Z=0.4_age=2.250gyr.sed ├── BC_Z=0.4_age=2.500gyr.sed ├── BC_Z=0.4_age=2.750gyr.sed ├── BC_Z=0.4_age=20.00gyr.sed ├── BC_Z=0.4_age=3.000gyr.sed ├── BC_Z=0.4_age=3.250gyr.sed ├── BC_Z=0.4_age=3.500gyr.sed ├── BC_Z=0.4_age=3.750gyr.sed ├── BC_Z=0.4_age=4.000gyr.sed ├── BC_Z=0.4_age=4.250gyr.sed ├── BC_Z=0.4_age=4.500gyr.sed ├── BC_Z=0.4_age=4.750gyr.sed ├── BC_Z=0.4_age=5.000gyr.sed ├── BC_Z=0.4_age=5.250gyr.sed ├── BC_Z=0.4_age=5.500gyr.sed ├── BC_Z=0.4_age=5.750gyr.sed ├── BC_Z=0.4_age=6.000gyr.sed ├── BC_Z=0.4_age=7.000gyr.sed ├── BC_Z=0.4_age=8.000gyr.sed ├── BC_Z=0.4_age=9.000gyr.sed ├── BC_Z=1.0_age=0.001gyr.sed ├── BC_Z=1.0_age=0.010gyr.sed ├── BC_Z=1.0_age=0.125gyr.sed ├── BC_Z=1.0_age=0.250gyr.sed ├── BC_Z=1.0_age=0.375gyr.sed ├── BC_Z=1.0_age=0.500gyr.sed ├── BC_Z=1.0_age=0.625gyr.sed ├── BC_Z=1.0_age=0.750gyr.sed ├── BC_Z=1.0_age=0.875gyr.sed ├── BC_Z=1.0_age=1.000gyr.sed ├── BC_Z=1.0_age=1.250gyr.sed ├── BC_Z=1.0_age=1.500gyr.sed ├── BC_Z=1.0_age=1.700gyr.sed ├── BC_Z=1.0_age=1.750gyr.sed ├── BC_Z=1.0_age=10.00gyr.sed ├── BC_Z=1.0_age=12.00gyr.sed ├── BC_Z=1.0_age=15.00gyr.sed ├── BC_Z=1.0_age=18.00gyr.sed ├── BC_Z=1.0_age=2.000gyr.sed ├── BC_Z=1.0_age=2.200gyr.sed ├── BC_Z=1.0_age=2.250gyr.sed ├── BC_Z=1.0_age=2.500gyr.sed ├── BC_Z=1.0_age=2.750gyr.sed ├── BC_Z=1.0_age=20.00gyr.sed ├── BC_Z=1.0_age=3.000gyr.sed ├── BC_Z=1.0_age=3.250gyr.sed ├── BC_Z=1.0_age=3.500gyr.sed ├── BC_Z=1.0_age=3.750gyr.sed ├── BC_Z=1.0_age=4.000gyr.sed ├── BC_Z=1.0_age=4.250gyr.sed ├── BC_Z=1.0_age=4.500gyr.sed ├── BC_Z=1.0_age=4.750gyr.sed ├── BC_Z=1.0_age=5.000gyr.sed ├── BC_Z=1.0_age=5.250gyr.sed ├── BC_Z=1.0_age=5.500gyr.sed ├── BC_Z=1.0_age=5.750gyr.sed ├── BC_Z=1.0_age=6.000gyr.sed ├── BC_Z=1.0_age=7.000gyr.sed ├── BC_Z=1.0_age=8.000gyr.sed ├── BC_Z=1.0_age=9.000gyr.sed ├── BC_Z=1.0_zf=2.0_z=0.13.sed ├── BC_Z=1.0_zf=2.0_z=0.16.sed ├── BC_Z=1.0_zf=2.0_z=0.20.sed ├── BC_Z=1.0_zf=2.0_z=0.23.sed ├── BC_Z=1.0_zf=2.0_z=0.27.sed ├── BC_Z=1.0_zf=2.0_z=0.31.sed ├── BC_Z=1.0_zf=2.0_z=0.35.sed ├── BC_Z=1.0_zf=2.0_z=0.39.sed ├── BC_Z=1.0_zf=2.0_z=0.43.sed ├── BC_Z=1.0_zf=2.0_z=0.48.sed ├── BC_Z=1.0_zf=2.0_z=0.53.sed ├── BC_Z=1.0_zf=2.0_z=0.58.sed ├── BC_Z=1.0_zf=2.0_z=0.64.sed ├── BC_Z=1.0_zf=2.0_z=0.70.sed ├── BC_Z=1.0_zf=2.0_z=0.77.sed ├── BC_Z=1.0_zf=2.0_z=0.84.sed ├── BC_Z=1.0_zf=2.0_z=0.86.sed ├── BC_Z=1.0_zf=2.0_z=0.92.sed ├── BC_Z=1.0_zf=2.0_z=1.01.sed ├── BC_Z=1.0_zf=2.0_z=1.03.sed ├── BC_Z=1.0_zf=2.0_z=1.10.sed ├── BC_Z=1.0_zf=2.0_z=1.21.sed ├── BC_Z=1.0_zf=2.0_z=1.33.sed ├── BC_Z=1.0_zf=2.0_z=1.39.sed ├── BC_Z=1.0_zf=2.0_z=1.46.sed ├── BC_Z=1.0_zf=2.0_z=1.54.sed ├── BC_Z=1.0_zf=2.0_z=1.61.sed ├── BC_Z=1.0_zf=2.0_z=1.70.sed ├── BC_Z=1.0_zf=2.0_z=1.79.sed ├── BC_Z=1.0_zf=2.0_z=1.89.sed ├── BC_Z=1.0_zf=2.0_z=1.99.sed ├── BC_Z=1.0_zf=2.0_z=2.00.sed ├── BC_Z=2.5_age=0.125gyr.sed ├── BC_Z=2.5_age=0.250gyr.sed ├── BC_Z=2.5_age=0.375gyr.sed ├── BC_Z=2.5_age=0.500gyr.sed ├── BC_Z=2.5_age=0.625gyr.sed ├── BC_Z=2.5_age=0.750gyr.sed ├── BC_Z=2.5_age=0.875gyr.sed ├── BC_Z=2.5_age=1.000gyr.sed ├── BC_Z=2.5_age=1.250gyr.sed ├── BC_Z=2.5_age=1.500gyr.sed ├── BC_Z=2.5_age=1.750gyr.sed ├── BC_Z=2.5_age=10.00gyr.sed ├── BC_Z=2.5_age=11.00gyr.sed ├── BC_Z=2.5_age=12.00gyr.sed ├── BC_Z=2.5_age=13.00gyr.sed ├── BC_Z=2.5_age=14.00gyr.sed ├── BC_Z=2.5_age=15.00gyr.sed ├── BC_Z=2.5_age=16.00gyr.sed ├── BC_Z=2.5_age=17.00gyr.sed ├── BC_Z=2.5_age=18.00gyr.sed ├── BC_Z=2.5_age=2.000gyr.sed ├── BC_Z=2.5_age=2.250gyr.sed ├── BC_Z=2.5_age=2.500gyr.sed ├── BC_Z=2.5_age=2.750gyr.sed ├── BC_Z=2.5_age=20.00gyr.sed ├── BC_Z=2.5_age=3.000gyr.sed ├── BC_Z=2.5_age=3.250gyr.sed ├── BC_Z=2.5_age=3.500gyr.sed ├── BC_Z=2.5_age=3.750gyr.sed ├── BC_Z=2.5_age=4.000gyr.sed ├── BC_Z=2.5_age=4.250gyr.sed ├── BC_Z=2.5_age=4.500gyr.sed ├── BC_Z=2.5_age=4.750gyr.sed ├── BC_Z=2.5_age=5.000gyr.sed ├── BC_Z=2.5_age=5.250gyr.sed ├── BC_Z=2.5_age=5.500gyr.sed ├── BC_Z=2.5_age=5.750gyr.sed ├── BC_Z=2.5_age=6.000gyr.sed ├── BC_Z=2.5_age=7.000gyr.sed ├── BC_Z=2.5_age=8.000gyr.sed ├── BC_Z=2.5_age=9.000gyr.sed ├── BC_Z=5.0_age=1.000gyr.sed ├── BC_Z=5.0_age=1.250gyr.sed ├── BC_Z=5.0_age=1.500gyr.sed ├── BC_Z=5.0_age=1.750gyr.sed ├── BC_Z=5.0_age=2.000gyr.sed ├── BC_Z=5.0_age=2.250gyr.sed ├── BC_Z=5.0_age=2.500gyr.sed ├── BC_Z=5.0_age=2.750gyr.sed ├── BC_Z=5.0_age=3.000gyr.sed ├── BC_Z=5.0_age=3.250gyr.sed ├── BC_Z=5.0_age=3.500gyr.sed ├── BC_Z=5.0_age=3.750gyr.sed ├── BC_Z=5.0_age=4.000gyr.sed ├── BC_Z=5.0_age=4.250gyr.sed ├── BC_Z=5.0_age=4.500gyr.sed ├── BC_Z=5.0_age=4.750gyr.sed ├── BC_Z=5.0_age=5.000gyr.sed ├── BC_Z=5.0_age=5.250gyr.sed ├── BC_Z=5.0_age=5.500gyr.sed ├── BC_Z=5.0_age=5.750gyr.sed ├── BC_Z=5.0_age=6.000gyr.sed ├── CVS │ ├── Entries │ ├── Repository │ ├── Root │ └── Template ├── CWW_E_ext.sed ├── CWW_Im_ext.sed ├── CWW_Sbc_ext.sed ├── CWW_Scd_ext.sed ├── El_cww.sed ├── IR_DUST.sed ├── IR_w_DUST.sed ├── Im_cww.sed ├── LEIP_11.sed ├── LEIP_13.sed ├── LEIP_8.sed ├── SB2_kin.sed ├── SB3_kin.sed ├── SNIa.sed ├── SUN.sed ├── Sbc_cww.sed ├── Scd_cww.sed ├── Vega.sed ├── Vega_reference.sed ├── agn.sed ├── flat.sed ├── sun_reference_stis_001.fits └── test.sed ├── tools.py ├── tools.pyc ├── v032310_estimator.py ├── zmass_estimator.py ├── zmass_estimator.pyc ├── zspsmodel.py ├── zspsmodel.pyc ├── zzmass_estimator.py └── zzmass_estimator.pyc /2dpdfs/2dg_CFHT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2dpdfs/2dg_CFHT.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dg_CFHT.pkl -------------------------------------------------------------------------------- /2dpdfs/2dg_DES.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dg_DES.pkl -------------------------------------------------------------------------------- /2dpdfs/2dg_LSST.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dg_LSST.pkl -------------------------------------------------------------------------------- /2dpdfs/2dg_LSST2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dg_LSST2.pkl -------------------------------------------------------------------------------- /2dpdfs/2di_CFHT.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2di_CFHT.pkl -------------------------------------------------------------------------------- /2dpdfs/2di_DES.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2di_DES.pkl -------------------------------------------------------------------------------- /2dpdfs/2di_LSST.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2di_LSST.pkl -------------------------------------------------------------------------------- /2dpdfs/2di_LSST2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2di_LSST2.pkl -------------------------------------------------------------------------------- /2dpdfs/2dr_CFHT.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dr_CFHT.pkl -------------------------------------------------------------------------------- /2dpdfs/2dr_DES.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dr_DES.pkl -------------------------------------------------------------------------------- /2dpdfs/2dr_LSST.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dr_LSST.pkl -------------------------------------------------------------------------------- /2dpdfs/2dr_LSST2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/2dpdfs/2dr_LSST2.pkl -------------------------------------------------------------------------------- /FastLensSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/FastLensSim.py -------------------------------------------------------------------------------- /MakeFigure34567.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/MakeFigure34567.py -------------------------------------------------------------------------------- /MakeLensPop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/MakeLensPop.py -------------------------------------------------------------------------------- /MakeResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/MakeResults.py -------------------------------------------------------------------------------- /ModelAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/ModelAll.py -------------------------------------------------------------------------------- /PopulationFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/PopulationFunctions.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/README.txt -------------------------------------------------------------------------------- /RingFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/RingFinder.py -------------------------------------------------------------------------------- /SignaltoNoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/SignaltoNoise.py -------------------------------------------------------------------------------- /StochasticObserving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/StochasticObserving.py -------------------------------------------------------------------------------- /Surveys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/Surveys.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/__init__.py -------------------------------------------------------------------------------- /distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/distances.py -------------------------------------------------------------------------------- /imageSim/SBModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/SBModels.py -------------------------------------------------------------------------------- /imageSim/SBModels.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/SBModels.pyc -------------------------------------------------------------------------------- /imageSim/SBProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/SBProfiles.py -------------------------------------------------------------------------------- /imageSim/SBProfiles.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/SBProfiles.pyc -------------------------------------------------------------------------------- /imageSim/SBProfiles.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/SBProfiles.py~ -------------------------------------------------------------------------------- /imageSim/SBmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/SBmodels.py -------------------------------------------------------------------------------- /imageSim/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /imageSim/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/__init__.pyc -------------------------------------------------------------------------------- /imageSim/convolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/convolve.py -------------------------------------------------------------------------------- /imageSim/convolve.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/convolve.pyc -------------------------------------------------------------------------------- /imageSim/imageSim.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/imageSim.tar -------------------------------------------------------------------------------- /imageSim/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/models.py -------------------------------------------------------------------------------- /imageSim/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/models.pyc -------------------------------------------------------------------------------- /imageSim/models.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/models.py~ -------------------------------------------------------------------------------- /imageSim/pointSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/pointSource.py -------------------------------------------------------------------------------- /imageSim/pointSource.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/pointSource.pyc -------------------------------------------------------------------------------- /imageSim/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/profiles.py -------------------------------------------------------------------------------- /imageSim/profiles.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/imageSim/profiles.pyc -------------------------------------------------------------------------------- /indexTricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/indexTricks.py -------------------------------------------------------------------------------- /lenses_DESa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenses_DESa.txt -------------------------------------------------------------------------------- /lenses_DESb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenses_DESb.txt -------------------------------------------------------------------------------- /lenses_DESc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenses_DESc.txt -------------------------------------------------------------------------------- /lenses_Euclid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenses_Euclid.txt -------------------------------------------------------------------------------- /lenses_LSSTa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenses_LSSTa.txt -------------------------------------------------------------------------------- /lenses_LSSTb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenses_LSSTb.txt -------------------------------------------------------------------------------- /lenses_LSSTc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenses_LSSTc.txt -------------------------------------------------------------------------------- /lenspopsplines.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lenspopsplines.pkl -------------------------------------------------------------------------------- /lsst.1sqdegree_catalog2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lsst.1sqdegree_catalog2.pkl -------------------------------------------------------------------------------- /lsst.1sqdegree_catalog2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/lsst.1sqdegree_catalog2.txt -------------------------------------------------------------------------------- /ndinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/ndinterp.py -------------------------------------------------------------------------------- /pylens/MassModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/MassModels.py -------------------------------------------------------------------------------- /pylens/MassModels.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/MassModels.pyc -------------------------------------------------------------------------------- /pylens/MassProfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/MassProfiles.py -------------------------------------------------------------------------------- /pylens/MassProfiles.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/MassProfiles.pyc -------------------------------------------------------------------------------- /pylens/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/__init__.py -------------------------------------------------------------------------------- /pylens/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/__init__.pyc -------------------------------------------------------------------------------- /pylens/__init__.py~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/__init__.py~ -------------------------------------------------------------------------------- /pylens/massmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/massmodel.py -------------------------------------------------------------------------------- /pylens/massmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/massmodel.pyc -------------------------------------------------------------------------------- /pylens/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/models.py -------------------------------------------------------------------------------- /pylens/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/models.pyc -------------------------------------------------------------------------------- /pylens/powerlaw.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/powerlaw.f -------------------------------------------------------------------------------- /pylens/powerlaw.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/powerlaw.so -------------------------------------------------------------------------------- /pylens/pylens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/pylens.py -------------------------------------------------------------------------------- /pylens/pylens.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/pylens/pylens.pyc -------------------------------------------------------------------------------- /redshiftsplines.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/redshiftsplines.pkl -------------------------------------------------------------------------------- /runorder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/runorder.txt -------------------------------------------------------------------------------- /stellarpop/.massmodel.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/.massmodel.py.swp -------------------------------------------------------------------------------- /stellarpop/BAKmass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/BAKmass_estimator.py -------------------------------------------------------------------------------- /stellarpop/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/CVS/Entries -------------------------------------------------------------------------------- /stellarpop/CVS/Repository: -------------------------------------------------------------------------------- 1 | stellarpop 2 | -------------------------------------------------------------------------------- /stellarpop/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:mauger@kipac.stanford.edu:/a9/cvs 2 | -------------------------------------------------------------------------------- /stellarpop/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stellarpop/MyStepMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/MyStepMethods.py -------------------------------------------------------------------------------- /stellarpop/MyStepMethods.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/MyStepMethods.pyc -------------------------------------------------------------------------------- /stellarpop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/README -------------------------------------------------------------------------------- /stellarpop/SAMPLER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/SAMPLER.py -------------------------------------------------------------------------------- /stellarpop/Sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/Sampler.py -------------------------------------------------------------------------------- /stellarpop/Sampler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/Sampler.pyc -------------------------------------------------------------------------------- /stellarpop/__init__.py: -------------------------------------------------------------------------------- 1 | import distances 2 | -------------------------------------------------------------------------------- /stellarpop/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/__init__.pyc -------------------------------------------------------------------------------- /stellarpop/bak25sep12/BAKmass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/BAKmass_estimator.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/MyStepMethods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/MyStepMethods.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/SAMPLER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/SAMPLER.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/Sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/Sampler.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/__init__.py: -------------------------------------------------------------------------------- 1 | import distances 2 | -------------------------------------------------------------------------------- /stellarpop/bak25sep12/distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/distances.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/estimator.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/hidden_ndinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/hidden_ndinterp.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/mag2mag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/mag2mag.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/mass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/mass_estimator.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/massmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/massmodel.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/nested_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/nested_sampler.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/oldndinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/oldndinterp.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/origMassEstimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/origMassEstimator.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/origdistances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/origdistances.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/spsmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/spsmodel.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/tools.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/v032310_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/v032310_estimator.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/zmass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/zmass_estimator.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/zspsmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/zspsmodel.py -------------------------------------------------------------------------------- /stellarpop/bak25sep12/zzmass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/bak25sep12/zzmass_estimator.py -------------------------------------------------------------------------------- /stellarpop/distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/distances.py -------------------------------------------------------------------------------- /stellarpop/distances.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/distances.pyc -------------------------------------------------------------------------------- /stellarpop/doc/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/doc/CVS/Entries -------------------------------------------------------------------------------- /stellarpop/doc/CVS/Repository: -------------------------------------------------------------------------------- 1 | stellarpop/doc 2 | -------------------------------------------------------------------------------- /stellarpop/doc/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:mauger@kipac.stanford.edu:/a9/cvs 2 | -------------------------------------------------------------------------------- /stellarpop/doc/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stellarpop/doc/instructions-cvs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/doc/instructions-cvs.txt -------------------------------------------------------------------------------- /stellarpop/doc/notes-pjm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/doc/notes-pjm.txt -------------------------------------------------------------------------------- /stellarpop/estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/estimator.py -------------------------------------------------------------------------------- /stellarpop/estimator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/estimator.pyc -------------------------------------------------------------------------------- /stellarpop/examples/lighthouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/examples/lighthouse.py -------------------------------------------------------------------------------- /stellarpop/examples/testimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/examples/testimator.py -------------------------------------------------------------------------------- /stellarpop/filters/24mu_MIPS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/24mu_MIPS.res -------------------------------------------------------------------------------- /stellarpop/filters/24um_MIPS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/24um_MIPS.res -------------------------------------------------------------------------------- /stellarpop/filters/3.6um_IRAC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/3.6um_IRAC.res -------------------------------------------------------------------------------- /stellarpop/filters/4.5um_IRAC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/4.5um_IRAC.res -------------------------------------------------------------------------------- /stellarpop/filters/5.8um_IRAC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/5.8um_IRAC.res -------------------------------------------------------------------------------- /stellarpop/filters/8.0um_IRAC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/8.0um_IRAC.res -------------------------------------------------------------------------------- /stellarpop/filters/B_Johnson.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/B_Johnson.res -------------------------------------------------------------------------------- /stellarpop/filters/B_LRIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/B_LRIS.res -------------------------------------------------------------------------------- /stellarpop/filters/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/CVS/Entries -------------------------------------------------------------------------------- /stellarpop/filters/CVS/Repository: -------------------------------------------------------------------------------- 1 | stellarpop/filters 2 | -------------------------------------------------------------------------------- /stellarpop/filters/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:mauger@kipac.stanford.edu:/a9/cvs 2 | -------------------------------------------------------------------------------- /stellarpop/filters/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stellarpop/filters/DLSB.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/DLSB.res -------------------------------------------------------------------------------- /stellarpop/filters/DLSNEWERz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/DLSNEWERz.res -------------------------------------------------------------------------------- /stellarpop/filters/DLSR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/DLSR.res -------------------------------------------------------------------------------- /stellarpop/filters/DLSV.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/DLSV.res -------------------------------------------------------------------------------- /stellarpop/filters/DLSz.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/DLSz.res -------------------------------------------------------------------------------- /stellarpop/filters/F098M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F098M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F105W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F105W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F110M_NIC1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F110M_NIC1.res -------------------------------------------------------------------------------- /stellarpop/filters/F110W_NICMOS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F110W_NICMOS.res -------------------------------------------------------------------------------- /stellarpop/filters/F110W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F110W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F125W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F125W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F126N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F126N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F127M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F127M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F128N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F128N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F130N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F130N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F132N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F132N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F139M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F139M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F140W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F140W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F153M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F153M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F160W_NIC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F160W_NIC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F160W_NICMOS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F160W_NICMOS.res -------------------------------------------------------------------------------- /stellarpop/filters/F160W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F160W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F164N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F164N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F165M_NIC1.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F165M_NIC1.res -------------------------------------------------------------------------------- /stellarpop/filters/F165M_NIC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F165M_NIC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F167N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F167N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/F200LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F200LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F218W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F218W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F225W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F225W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F275W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F275W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F300W_WFPC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F300W_WFPC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F300X_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F300X_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F336W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F336W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F350LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F350LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F373N_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F373N_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F390W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F390W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F435W_ACS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F435W_ACS.res -------------------------------------------------------------------------------- /stellarpop/filters/F435W_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F435W_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F438W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F438W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F450W_WFPC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F450W_WFPC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F469N_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F469N_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F475W_ACS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F475W_ACS.res -------------------------------------------------------------------------------- /stellarpop/filters/F475W_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F475W_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F475W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F475W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F475X_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F475X_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F487N_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F487N_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F502N_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F502N_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F502N_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F502N_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F547M_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F547M_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F547M_WFPC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F547M_WFPC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F550M_HRC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F550M_HRC.res -------------------------------------------------------------------------------- /stellarpop/filters/F550M_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F550M_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F555W_ACS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F555W_ACS.res -------------------------------------------------------------------------------- /stellarpop/filters/F555W_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F555W_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F555W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F555W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F555W_WFPC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F555W_WFPC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F600LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F600LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F606W_ACS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F606W_ACS.res -------------------------------------------------------------------------------- /stellarpop/filters/F606W_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F606W_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F606W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F606W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F606W_WFPC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F606W_WFPC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F625W_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F625W_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F625W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F625W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F656N_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F656N_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F658N_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F658N_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F660N_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F660N_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F775W_ACS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F775W_ACS.res -------------------------------------------------------------------------------- /stellarpop/filters/F775W_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F775W_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F775W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F775W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F814W_ACS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F814W_ACS.res -------------------------------------------------------------------------------- /stellarpop/filters/F814W_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F814W_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F814W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F814W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F814W_WFPC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F814W_WFPC2.res -------------------------------------------------------------------------------- /stellarpop/filters/F850LP_ACS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F850LP_ACS.res -------------------------------------------------------------------------------- /stellarpop/filters/F850LP_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F850LP_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/F850LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F850LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/F892N_WFC.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/F892N_WFC.res -------------------------------------------------------------------------------- /stellarpop/filters/FQ672N_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/FQ672N_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/FQ674N_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/FQ674N_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/H_2MASS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/H_2MASS.res -------------------------------------------------------------------------------- /stellarpop/filters/H_Johnson.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/H_Johnson.res -------------------------------------------------------------------------------- /stellarpop/filters/H_KittPeak.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/H_KittPeak.res -------------------------------------------------------------------------------- /stellarpop/filters/H_UKIRT.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/H_UKIRT.orig -------------------------------------------------------------------------------- /stellarpop/filters/H_UKIRT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/H_UKIRT.res -------------------------------------------------------------------------------- /stellarpop/filters/I_Cousins.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/I_Cousins.res -------------------------------------------------------------------------------- /stellarpop/filters/I_LRIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/I_LRIS.res -------------------------------------------------------------------------------- /stellarpop/filters/Ic_SUPRIME.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Ic_SUPRIME.res -------------------------------------------------------------------------------- /stellarpop/filters/J277.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/J277.txt -------------------------------------------------------------------------------- /stellarpop/filters/J_2MASS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/J_2MASS.res -------------------------------------------------------------------------------- /stellarpop/filters/J_Johnson.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/J_Johnson.res -------------------------------------------------------------------------------- /stellarpop/filters/J_KittPeak.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/J_KittPeak.res -------------------------------------------------------------------------------- /stellarpop/filters/J_MOIRCS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/J_MOIRCS.res -------------------------------------------------------------------------------- /stellarpop/filters/J_UKIRT.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/J_UKIRT.orig -------------------------------------------------------------------------------- /stellarpop/filters/J_UKIRT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/J_UKIRT.res -------------------------------------------------------------------------------- /stellarpop/filters/K_2MASS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/K_2MASS.res -------------------------------------------------------------------------------- /stellarpop/filters/K_Johnson.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/K_Johnson.res -------------------------------------------------------------------------------- /stellarpop/filters/K_KittPeak.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/K_KittPeak.res -------------------------------------------------------------------------------- /stellarpop/filters/K_UKIRT.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/K_UKIRT.orig -------------------------------------------------------------------------------- /stellarpop/filters/K_UKIRT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/K_UKIRT.res -------------------------------------------------------------------------------- /stellarpop/filters/Kp_NIRC2.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Kp_NIRC2.orig -------------------------------------------------------------------------------- /stellarpop/filters/Kp_NIRC2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Kp_NIRC2.res -------------------------------------------------------------------------------- /stellarpop/filters/Ks_MOIRCS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Ks_MOIRCS.res -------------------------------------------------------------------------------- /stellarpop/filters/Ks_MOIRCS_old.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Ks_MOIRCS_old.res -------------------------------------------------------------------------------- /stellarpop/filters/Ks_rot1707wedged120K.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Ks_rot1707wedged120K.txt -------------------------------------------------------------------------------- /stellarpop/filters/R_Cousins.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/R_Cousins.res -------------------------------------------------------------------------------- /stellarpop/filters/R_LRIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/R_LRIS.res -------------------------------------------------------------------------------- /stellarpop/filters/Rc_SUPRIME.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Rc_SUPRIME.res -------------------------------------------------------------------------------- /stellarpop/filters/U_Johnson.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/U_Johnson.res -------------------------------------------------------------------------------- /stellarpop/filters/V_Johnson.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/V_Johnson.res -------------------------------------------------------------------------------- /stellarpop/filters/V_LRIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/V_LRIS.res -------------------------------------------------------------------------------- /stellarpop/filters/V_SUPRIME.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/V_SUPRIME.res -------------------------------------------------------------------------------- /stellarpop/filters/Y_UKIRT.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Y_UKIRT.orig -------------------------------------------------------------------------------- /stellarpop/filters/Y_UKIRT.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Y_UKIRT.res -------------------------------------------------------------------------------- /stellarpop/filters/Z_LRIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/Z_LRIS.res -------------------------------------------------------------------------------- /stellarpop/filters/blah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/blah -------------------------------------------------------------------------------- /stellarpop/filters/correctUKIRT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/correctUKIRT.py -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F098M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F098M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F105W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F105W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F110W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F110W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F125W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F125W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F126N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F126N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F127M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F127M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F128N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F128N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F130N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F130N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F132N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F132N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F139M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F139M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F140W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F140W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F153M_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F153M_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F160W_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F160W_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F164N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F164N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F167N_WFC3IR.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F167N_WFC3IR.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F200LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F200LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F218W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F218W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F225W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F225W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F275W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F275W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F300X_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F300X_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F336W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F336W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F350LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F350LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F390W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F390W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F438W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F438W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F475W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F475W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F475X_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F475X_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F555W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F555W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F600LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F600LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F606W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F606W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F625W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F625W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F775W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F775W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F814W_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F814W_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/F850LP_WFC3UVIS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/F850LP_WFC3UVIS.res -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/WFC3_filters.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/WFC3_filters.tar.gz -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f098m_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f098m_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f105w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f105w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f110w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f110w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f125w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f125w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f126n_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f126n_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f127m_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f127m_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f128n_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f128n_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f130n_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f130n_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f132n_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f132n_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f139m_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f139m_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f140w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f140w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f153m_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f153m_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f160w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f160w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f164n_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f164n_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f167n_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f167n_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f200lp_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f200lp_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f218w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f218w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f225w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f225w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f275w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f275w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f300x_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f300x_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f336w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f336w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f350lp_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f350lp_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f390w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f390w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f438w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f438w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f475w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f475w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f475x_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f475x_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f555w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f555w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f600lp_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f600lp_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f606w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f606w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f625w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f625w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f775w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f775w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f814w_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f814w_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/f850lp_thpt.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/f850lp_thpt.tab -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/make_cl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/make_cl.py -------------------------------------------------------------------------------- /stellarpop/filters/createWFC3/maketemplate.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/createWFC3/maketemplate.cl -------------------------------------------------------------------------------- /stellarpop/filters/g.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/g.dat -------------------------------------------------------------------------------- /stellarpop/filters/g_MEGA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/g_MEGA.res -------------------------------------------------------------------------------- /stellarpop/filters/g_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/g_SDSS.res -------------------------------------------------------------------------------- /stellarpop/filters/g_gunn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/g_gunn.res -------------------------------------------------------------------------------- /stellarpop/filters/get_SDSS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/get_SDSS.py -------------------------------------------------------------------------------- /stellarpop/filters/i.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/i.dat -------------------------------------------------------------------------------- /stellarpop/filters/i_MEGA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/i_MEGA.res -------------------------------------------------------------------------------- /stellarpop/filters/i_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/i_SDSS.res -------------------------------------------------------------------------------- /stellarpop/filters/i_gunn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/i_gunn.res -------------------------------------------------------------------------------- /stellarpop/filters/r.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/r.dat -------------------------------------------------------------------------------- /stellarpop/filters/r_MEGA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/r_MEGA.res -------------------------------------------------------------------------------- /stellarpop/filters/r_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/r_SDSS.res -------------------------------------------------------------------------------- /stellarpop/filters/r_gunn.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/r_gunn.res -------------------------------------------------------------------------------- /stellarpop/filters/tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/tmp -------------------------------------------------------------------------------- /stellarpop/filters/u.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/u.dat -------------------------------------------------------------------------------- /stellarpop/filters/u_MEGA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/u_MEGA.res -------------------------------------------------------------------------------- /stellarpop/filters/u_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/u_SDSS.res -------------------------------------------------------------------------------- /stellarpop/filters/z.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/z.dat -------------------------------------------------------------------------------- /stellarpop/filters/z_MEGA.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/z_MEGA.res -------------------------------------------------------------------------------- /stellarpop/filters/z_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/z_SDSS.res -------------------------------------------------------------------------------- /stellarpop/filters/zp_SUPRIME.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/filters/zp_SUPRIME.res -------------------------------------------------------------------------------- /stellarpop/fspsmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/fspsmodel.py -------------------------------------------------------------------------------- /stellarpop/fspsmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/fspsmodel.pyc -------------------------------------------------------------------------------- /stellarpop/galaxev/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/galaxev/CVS/Entries -------------------------------------------------------------------------------- /stellarpop/galaxev/CVS/Repository: -------------------------------------------------------------------------------- 1 | stellarpop/galaxev 2 | -------------------------------------------------------------------------------- /stellarpop/galaxev/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:mauger@kipac.stanford.edu:/a9/cvs 2 | -------------------------------------------------------------------------------- /stellarpop/galaxev/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stellarpop/galaxev/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /stellarpop/galaxev/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/galaxev/__init__.pyc -------------------------------------------------------------------------------- /stellarpop/galaxev/create_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/galaxev/create_models.py -------------------------------------------------------------------------------- /stellarpop/galaxev/create_models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/galaxev/create_models.pyc -------------------------------------------------------------------------------- /stellarpop/galaxev/example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/galaxev/example_1.py -------------------------------------------------------------------------------- /stellarpop/galaxev/example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/galaxev/example_2.py -------------------------------------------------------------------------------- /stellarpop/hidden_ndinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/hidden_ndinterp.py -------------------------------------------------------------------------------- /stellarpop/mag2mag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/mag2mag.py -------------------------------------------------------------------------------- /stellarpop/makeModelsTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/makeModelsTemplate.py -------------------------------------------------------------------------------- /stellarpop/mass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/mass_estimator.py -------------------------------------------------------------------------------- /stellarpop/mass_estimator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/mass_estimator.pyc -------------------------------------------------------------------------------- /stellarpop/massmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/massmodel.py -------------------------------------------------------------------------------- /stellarpop/massmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/massmodel.pyc -------------------------------------------------------------------------------- /stellarpop/ndinterp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/ndinterp.pyc -------------------------------------------------------------------------------- /stellarpop/nested_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/nested_sampler.py -------------------------------------------------------------------------------- /stellarpop/nested_sampler.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/nested_sampler.pyc -------------------------------------------------------------------------------- /stellarpop/octave-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stellarpop/oldndinterp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/oldndinterp.py -------------------------------------------------------------------------------- /stellarpop/origMassEstimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/origMassEstimator.py -------------------------------------------------------------------------------- /stellarpop/origdistances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/origdistances.py -------------------------------------------------------------------------------- /stellarpop/spsmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/spsmodel.py -------------------------------------------------------------------------------- /stellarpop/spsmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/spsmodel.pyc -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=0.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=0.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=0.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=0.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=0.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=0.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=0.800gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=0.800gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=1.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=1.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=1.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=1.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=1.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=1.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=1.600gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=1.600gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=1.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=1.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=2.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=2.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=2.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=2.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=2.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=2.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=2.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=2.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=3.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=3.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=3.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=3.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=3.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=3.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=3.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=3.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=4.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=4.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=4.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=4.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=4.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=4.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=4.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=4.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=5.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=5.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=5.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=5.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=5.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=5.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=5.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=5.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.2_age=6.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.2_age=6.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=0.125gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=0.125gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=0.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=0.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=0.375gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=0.375gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=0.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=0.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=0.625gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=0.625gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=0.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=0.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=0.875gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=0.875gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=1.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=1.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=1.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=1.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=1.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=1.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=1.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=1.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=10.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=10.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=12.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=12.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=15.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=15.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=18.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=18.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=2.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=2.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=2.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=2.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=2.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=2.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=2.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=2.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=20.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=20.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=3.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=3.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=3.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=3.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=3.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=3.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=3.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=3.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=4.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=4.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=4.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=4.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=4.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=4.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=4.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=4.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=5.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=5.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=5.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=5.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=5.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=5.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=5.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=5.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=6.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=6.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=7.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=7.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=8.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=8.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=0.4_age=9.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=0.4_age=9.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.001gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.001gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.010gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.010gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.125gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.125gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.375gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.375gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.625gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.625gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=0.875gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=0.875gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=1.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=1.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=1.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=1.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=1.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=1.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=1.700gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=1.700gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=1.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=1.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=10.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=10.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=12.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=12.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=15.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=15.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=18.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=18.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=2.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=2.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=2.200gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=2.200gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=2.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=2.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=2.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=2.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=2.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=2.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=20.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=20.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=3.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=3.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=3.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=3.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=3.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=3.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=3.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=3.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=4.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=4.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=4.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=4.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=4.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=4.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=4.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=4.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=5.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=5.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=5.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=5.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=5.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=5.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=5.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=5.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=6.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=6.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=7.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=7.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=8.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=8.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_age=9.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_age=9.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.13.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.13.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.16.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.16.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.20.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.20.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.23.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.23.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.27.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.27.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.31.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.31.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.35.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.35.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.39.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.39.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.43.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.43.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.48.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.48.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.53.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.53.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.58.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.58.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.64.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.64.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.70.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.70.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.77.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.77.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.84.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.84.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.86.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.86.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.92.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=0.92.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.01.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.01.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.03.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.03.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.10.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.10.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.21.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.21.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.33.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.33.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.39.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.39.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.46.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.46.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.54.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.54.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.61.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.61.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.70.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.70.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.79.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.79.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.89.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.89.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.99.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=1.99.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=1.0_zf=2.0_z=2.00.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=1.0_zf=2.0_z=2.00.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=0.125gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=0.125gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=0.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=0.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=0.375gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=0.375gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=0.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=0.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=0.625gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=0.625gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=0.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=0.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=0.875gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=0.875gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=1.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=1.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=1.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=1.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=1.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=1.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=1.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=1.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=10.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=10.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=11.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=11.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=12.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=12.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=13.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=13.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=14.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=14.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=15.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=15.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=16.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=16.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=17.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=17.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=18.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=18.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=2.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=2.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=2.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=2.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=2.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=2.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=2.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=2.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=20.00gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=20.00gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=3.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=3.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=3.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=3.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=3.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=3.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=3.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=3.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=4.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=4.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=4.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=4.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=4.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=4.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=4.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=4.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=5.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=5.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=5.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=5.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=5.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=5.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=5.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=5.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=6.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=6.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=7.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=7.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=8.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=8.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=2.5_age=9.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=2.5_age=9.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=1.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=1.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=1.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=1.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=1.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=1.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=1.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=1.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=2.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=2.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=2.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=2.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=2.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=2.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=2.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=2.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=3.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=3.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=3.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=3.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=3.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=3.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=3.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=3.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=4.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=4.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=4.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=4.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=4.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=4.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=4.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=4.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=5.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=5.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=5.250gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=5.250gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=5.500gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=5.500gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=5.750gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=5.750gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/BC_Z=5.0_age=6.000gyr.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/BC_Z=5.0_age=6.000gyr.sed -------------------------------------------------------------------------------- /stellarpop/templates/CVS/Entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/CVS/Entries -------------------------------------------------------------------------------- /stellarpop/templates/CVS/Repository: -------------------------------------------------------------------------------- 1 | stellarpop/templates 2 | -------------------------------------------------------------------------------- /stellarpop/templates/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:mauger@kipac.stanford.edu:/a9/cvs 2 | -------------------------------------------------------------------------------- /stellarpop/templates/CVS/Template: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stellarpop/templates/CWW_E_ext.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/CWW_E_ext.sed -------------------------------------------------------------------------------- /stellarpop/templates/CWW_Im_ext.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/CWW_Im_ext.sed -------------------------------------------------------------------------------- /stellarpop/templates/CWW_Sbc_ext.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/CWW_Sbc_ext.sed -------------------------------------------------------------------------------- /stellarpop/templates/CWW_Scd_ext.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/CWW_Scd_ext.sed -------------------------------------------------------------------------------- /stellarpop/templates/El_cww.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/El_cww.sed -------------------------------------------------------------------------------- /stellarpop/templates/IR_DUST.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/IR_DUST.sed -------------------------------------------------------------------------------- /stellarpop/templates/IR_w_DUST.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/IR_w_DUST.sed -------------------------------------------------------------------------------- /stellarpop/templates/Im_cww.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/Im_cww.sed -------------------------------------------------------------------------------- /stellarpop/templates/LEIP_11.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/LEIP_11.sed -------------------------------------------------------------------------------- /stellarpop/templates/LEIP_13.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/LEIP_13.sed -------------------------------------------------------------------------------- /stellarpop/templates/LEIP_8.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/LEIP_8.sed -------------------------------------------------------------------------------- /stellarpop/templates/SB2_kin.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/SB2_kin.sed -------------------------------------------------------------------------------- /stellarpop/templates/SB3_kin.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/SB3_kin.sed -------------------------------------------------------------------------------- /stellarpop/templates/SNIa.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/SNIa.sed -------------------------------------------------------------------------------- /stellarpop/templates/SUN.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/SUN.sed -------------------------------------------------------------------------------- /stellarpop/templates/Sbc_cww.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/Sbc_cww.sed -------------------------------------------------------------------------------- /stellarpop/templates/Scd_cww.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/Scd_cww.sed -------------------------------------------------------------------------------- /stellarpop/templates/Vega.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/Vega.sed -------------------------------------------------------------------------------- /stellarpop/templates/Vega_reference.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/Vega_reference.sed -------------------------------------------------------------------------------- /stellarpop/templates/agn.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/agn.sed -------------------------------------------------------------------------------- /stellarpop/templates/flat.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/flat.sed -------------------------------------------------------------------------------- /stellarpop/templates/sun_reference_stis_001.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/sun_reference_stis_001.fits -------------------------------------------------------------------------------- /stellarpop/templates/test.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/templates/test.sed -------------------------------------------------------------------------------- /stellarpop/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/tools.py -------------------------------------------------------------------------------- /stellarpop/tools.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/tools.pyc -------------------------------------------------------------------------------- /stellarpop/v032310_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/v032310_estimator.py -------------------------------------------------------------------------------- /stellarpop/zmass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/zmass_estimator.py -------------------------------------------------------------------------------- /stellarpop/zmass_estimator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/zmass_estimator.pyc -------------------------------------------------------------------------------- /stellarpop/zspsmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/zspsmodel.py -------------------------------------------------------------------------------- /stellarpop/zspsmodel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/zspsmodel.pyc -------------------------------------------------------------------------------- /stellarpop/zzmass_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/zzmass_estimator.py -------------------------------------------------------------------------------- /stellarpop/zzmass_estimator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcollett/LensPop/HEAD/stellarpop/zzmass_estimator.pyc --------------------------------------------------------------------------------