├── .dictionary.txt ├── .github └── workflows │ ├── execution_order.yml │ ├── links.yml │ ├── run.yml │ ├── spelling.yml │ └── versions.yml ├── .gitignore ├── .lycheeignore ├── CONTRIBUTING.md ├── Challenge └── README.md ├── LICENSE ├── README.md ├── Tutorials ├── Day_1 │ ├── README.md │ ├── Tuto_1.1_Discovering_Open_Data.ipynb │ ├── Tuto_1.2_Open_Data_access_with_GWpy.ipynb │ ├── Tuto_1.3_Q-transforms_with_GWpy.ipynb │ └── Tuto_1.4_Generating_waveforms.ipynb ├── Day_2 │ ├── Data │ │ ├── PyCBC_T2_0.gwf │ │ ├── PyCBC_T2_1.gwf │ │ ├── PyCBC_T2_2.gwf │ │ └── PyCBC_T3_0.gwf │ ├── README.md │ ├── Tuto_2.1_Matched_filtering_introduction.ipynb │ ├── Tuto_2.2_Matched_Filtering_In_action.ipynb │ ├── Tuto_2.3_Signal_consistency_and_significance.ipynb │ └── pycbc_chisq.py ├── Day_3 │ ├── README.md │ ├── Tuto_3.1_Introduction_to_parameter_estimation.ipynb │ ├── Tuto_3.2_Parameter_estimation_for_compact_object_mergers.ipynb │ ├── Tuto_3.3_Discovering_and_using_published_posterior_samples.ipynb │ └── toy_model.csv ├── Extension_topics │ ├── README.md │ ├── Tuto_A.1_Parameter_estimation_for_compact_object_mergers_with_LALInference.ipynb │ ├── Tuto_A.2_Population_Inference_with_GWPopulation.ipynb │ └── Tuto_A.3_Continuous_Wave_Searches.ipynb ├── README.md ├── Solutions │ ├── README.md │ └── solutions.tar.gz.gpg └── logo.png ├── environment.yml ├── requirements.txt ├── setup.md ├── share ├── ODWlogo.jpeg ├── ligo_virgo_transparent_crop_small.png ├── video-icon.jpg └── video-icon.png ├── tests ├── check_environment.py ├── check_execution_order.py ├── check_run.sh ├── check_spelling.sh └── check_versions.py └── tmp └── README /.dictionary.txt: -------------------------------------------------------------------------------- 1 | hist 2 | livetime 3 | iff 4 | amin 5 | amax 6 | precess 7 | -------------------------------------------------------------------------------- /.github/workflows/execution_order.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/.github/workflows/execution_order.yml -------------------------------------------------------------------------------- /.github/workflows/links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/.github/workflows/links.yml -------------------------------------------------------------------------------- /.github/workflows/run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/.github/workflows/run.yml -------------------------------------------------------------------------------- /.github/workflows/spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/.github/workflows/spelling.yml -------------------------------------------------------------------------------- /.github/workflows/versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/.github/workflows/versions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/.gitignore -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/.lycheeignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Challenge/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/README.md -------------------------------------------------------------------------------- /Tutorials/Day_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_1/README.md -------------------------------------------------------------------------------- /Tutorials/Day_1/Tuto_1.1_Discovering_Open_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_1/Tuto_1.1_Discovering_Open_Data.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_1/Tuto_1.2_Open_Data_access_with_GWpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_1/Tuto_1.2_Open_Data_access_with_GWpy.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_1/Tuto_1.3_Q-transforms_with_GWpy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_1/Tuto_1.3_Q-transforms_with_GWpy.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_1/Tuto_1.4_Generating_waveforms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_1/Tuto_1.4_Generating_waveforms.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_2/Data/PyCBC_T2_0.gwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/Data/PyCBC_T2_0.gwf -------------------------------------------------------------------------------- /Tutorials/Day_2/Data/PyCBC_T2_1.gwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/Data/PyCBC_T2_1.gwf -------------------------------------------------------------------------------- /Tutorials/Day_2/Data/PyCBC_T2_2.gwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/Data/PyCBC_T2_2.gwf -------------------------------------------------------------------------------- /Tutorials/Day_2/Data/PyCBC_T3_0.gwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/Data/PyCBC_T3_0.gwf -------------------------------------------------------------------------------- /Tutorials/Day_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/README.md -------------------------------------------------------------------------------- /Tutorials/Day_2/Tuto_2.1_Matched_filtering_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/Tuto_2.1_Matched_filtering_introduction.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_2/Tuto_2.2_Matched_Filtering_In_action.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/Tuto_2.2_Matched_Filtering_In_action.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_2/Tuto_2.3_Signal_consistency_and_significance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/Tuto_2.3_Signal_consistency_and_significance.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_2/pycbc_chisq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_2/pycbc_chisq.py -------------------------------------------------------------------------------- /Tutorials/Day_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_3/README.md -------------------------------------------------------------------------------- /Tutorials/Day_3/Tuto_3.1_Introduction_to_parameter_estimation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_3/Tuto_3.1_Introduction_to_parameter_estimation.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_3/Tuto_3.2_Parameter_estimation_for_compact_object_mergers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_3/Tuto_3.2_Parameter_estimation_for_compact_object_mergers.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_3/Tuto_3.3_Discovering_and_using_published_posterior_samples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_3/Tuto_3.3_Discovering_and_using_published_posterior_samples.ipynb -------------------------------------------------------------------------------- /Tutorials/Day_3/toy_model.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Day_3/toy_model.csv -------------------------------------------------------------------------------- /Tutorials/Extension_topics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Extension_topics/README.md -------------------------------------------------------------------------------- /Tutorials/Extension_topics/Tuto_A.1_Parameter_estimation_for_compact_object_mergers_with_LALInference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Extension_topics/Tuto_A.1_Parameter_estimation_for_compact_object_mergers_with_LALInference.ipynb -------------------------------------------------------------------------------- /Tutorials/Extension_topics/Tuto_A.2_Population_Inference_with_GWPopulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Extension_topics/Tuto_A.2_Population_Inference_with_GWPopulation.ipynb -------------------------------------------------------------------------------- /Tutorials/Extension_topics/Tuto_A.3_Continuous_Wave_Searches.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Extension_topics/Tuto_A.3_Continuous_Wave_Searches.ipynb -------------------------------------------------------------------------------- /Tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/README.md -------------------------------------------------------------------------------- /Tutorials/Solutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Solutions/README.md -------------------------------------------------------------------------------- /Tutorials/Solutions/solutions.tar.gz.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/Solutions/solutions.tar.gz.gpg -------------------------------------------------------------------------------- /Tutorials/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/Tutorials/logo.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/environment.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/setup.md -------------------------------------------------------------------------------- /share/ODWlogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/share/ODWlogo.jpeg -------------------------------------------------------------------------------- /share/ligo_virgo_transparent_crop_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/share/ligo_virgo_transparent_crop_small.png -------------------------------------------------------------------------------- /share/video-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/share/video-icon.jpg -------------------------------------------------------------------------------- /share/video-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/share/video-icon.png -------------------------------------------------------------------------------- /tests/check_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/tests/check_environment.py -------------------------------------------------------------------------------- /tests/check_execution_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/tests/check_execution_order.py -------------------------------------------------------------------------------- /tests/check_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/tests/check_run.sh -------------------------------------------------------------------------------- /tests/check_spelling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/tests/check_spelling.sh -------------------------------------------------------------------------------- /tests/check_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/tests/check_versions.py -------------------------------------------------------------------------------- /tmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gw-odw/odw/HEAD/tmp/README --------------------------------------------------------------------------------