-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incorporated wp and tpcf results provided by @manodeep into the Halot…
…ools unit-testing suite.
- Loading branch information
Andrew Hearin
committed
Jun 9, 2016
1 parent
e18647e
commit 9debd74
Showing
3 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
halotools/mock_observables/two_point_clustering/tests/locate_external_unit_testing_data.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
""" This module is used to search the user's disk to see whether | ||
data files are present to conduct unit-tests in which Halotools results | ||
are compared against results obtained from independently-written code bases. | ||
""" | ||
from __future__ import absolute_import, division, print_function, unicode_literals | ||
|
||
import os | ||
from astropy.config.paths import _find_home | ||
halotools_cache_dirname = os.path.join(_find_home(), '.astropy', 'cache', 'halotools') | ||
halotool_unit_testing_dirname = os.path.join(halotools_cache_dirname, 'unit_testing_files') | ||
|
||
|
||
__all__ = ('tpcf_corrfunc_comparison_files_exist', 'wp_corrfunc_comparison_files_exist') | ||
|
||
|
||
def tpcf_corrfunc_comparison_files_exist(return_fnames=False): | ||
""" | ||
""" | ||
aph_fname1 = os.path.join(halotool_unit_testing_dirname, 'sample1_position_array.npy') | ||
aph_fname2 = os.path.join(halotool_unit_testing_dirname, 'sample2_position_array.npy') | ||
aph_fname3 = os.path.join(halotool_unit_testing_dirname, 'rp_bins_array.npy') | ||
|
||
deep_fname1 = os.path.join(halotool_unit_testing_dirname, | ||
'sinha_corrfunc_results', 'sample1_position_array_xi.npy') | ||
deep_fname2 = os.path.join(halotool_unit_testing_dirname, | ||
'sinha_corrfunc_results', 'sample2_position_array_xi.npy') | ||
|
||
all_files_exist = ( | ||
os.path.isfile(aph_fname1) & os.path.isfile(aph_fname2) & os.path.isfile(aph_fname3) & | ||
os.path.isfile(deep_fname1) & os.path.isfile(deep_fname2)) | ||
|
||
if return_fnames is False: | ||
return all_files_exist | ||
else: | ||
return all_files_exist, aph_fname1, aph_fname2, aph_fname3, deep_fname1, deep_fname2 | ||
|
||
|
||
def wp_corrfunc_comparison_files_exist(return_fnames=False): | ||
""" | ||
""" | ||
aph_fname1 = os.path.join(halotool_unit_testing_dirname, 'sample1_position_array.npy') | ||
aph_fname2 = os.path.join(halotool_unit_testing_dirname, 'sample2_position_array.npy') | ||
aph_fname3 = os.path.join(halotool_unit_testing_dirname, 'rp_bins_array.npy') | ||
|
||
deep_fname1 = os.path.join(halotool_unit_testing_dirname, | ||
'sinha_corrfunc_results', 'sample1_position_array_wp.npy') | ||
deep_fname2 = os.path.join(halotool_unit_testing_dirname, | ||
'sinha_corrfunc_results', 'sample2_position_array_wp.npy') | ||
|
||
all_files_exist = ( | ||
os.path.isfile(aph_fname1) & os.path.isfile(aph_fname2) & os.path.isfile(aph_fname3) & | ||
os.path.isfile(deep_fname1) & os.path.isfile(deep_fname2)) | ||
|
||
if return_fnames is False: | ||
return all_files_exist | ||
else: | ||
return all_files_exist, aph_fname1, aph_fname2, aph_fname3, deep_fname1, deep_fname2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters