PycWB 0.30.2__tar.gz → 1.0.0a1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycwb-1.0.0a1/.gitattributes +1 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/.gitignore +15 -2
- pycwb-1.0.0a1/.gitlab-ci.yml +57 -0
- pycwb-1.0.0a1/Dockerfile +29 -0
- pycwb-1.0.0a1/PKG-INFO +147 -0
- pycwb-1.0.0a1/PycWB.egg-info/PKG-INFO +147 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/PycWB.egg-info/SOURCES.txt +150 -2
- pycwb-1.0.0a1/PycWB.egg-info/requires.txt +44 -0
- pycwb-1.0.0a1/PycWB.egg-info/top_level.txt +10 -0
- pycwb-1.0.0a1/README.md +93 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/likelihood/README.md +6 -0
- pycwb-1.0.0a1/benchmark/likelihood/benchmark_cpu_vs_gpu.py +332 -0
- pycwb-1.0.0a1/benchmark/likelihood/data_generator_native.py +409 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/likelihood/performance_test_opt_sky.py +8 -0
- pycwb-1.0.0a1/benchmark/likelihood/user_parameters_injection_native_1030.yaml +94 -0
- pycwb-1.0.0a1/benchmark/likelihood/user_parameters_likelihood_test.yaml +129 -0
- pycwb-1.0.0a1/benchmark/likelihood/workflow_with_new_likelihood.py +189 -0
- pycwb-1.0.0a1/benchmark/parquet_perf/README.md +52 -0
- pycwb-1.0.0a1/benchmark/parquet_perf/benchmark_queries.py +435 -0
- pycwb-1.0.0a1/benchmark/parquet_perf/generate_params.py +247 -0
- pycwb-1.0.0a1/benchmark/parquet_perf/parquet_perf.ipynb +694 -0
- pycwb-1.0.0a1/benchmark/parquet_perf/write_parquet.py +185 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/bin/pycwb +55 -3
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/CMakeLists.txt +18 -4
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wat.hh +4 -0
- pycwb-1.0.0a1/docs/dev/mr_description_guide.md +220 -0
- pycwb-1.0.0a1/docs/dev/review_guide.md +305 -0
- pycwb-1.0.0a1/docs/likelihood/likelihoodWP.md +1654 -0
- pycwb-1.0.0a1/docs/likelihood/likelihoodWPGPU_bottleneck_report.md +345 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/conf.py +0 -1
- pycwb-1.0.0a1/envs/Dockerfile.ci +61 -0
- pycwb-1.0.0a1/envs/Dockerfile.ci-conda +74 -0
- pycwb-1.0.0a1/envs/Dockerfile.ci-native +51 -0
- pycwb-1.0.0a1/envs/pycwb.def +67 -0
- pycwb-1.0.0a1/examples/catalog/process_data.md +456 -0
- pycwb-1.0.0a1/examples/colab/GW150914.ipynb +410 -0
- pycwb-1.0.0a1/examples/cwb_results_conversion/convert_root_to_parquet.py +203 -0
- pycwb-1.0.0a1/examples/cwb_results_conversion/train_xgb.py +112 -0
- pycwb-1.0.0a1/examples/cwb_results_conversion/xgb_config.py +53 -0
- pycwb-1.0.0a1/examples/mesa_testing/config/schema_extension.yaml +19 -0
- pycwb-1.0.0a1/examples/mesa_testing/config/user_parameters.yaml +138 -0
- {pycwb-0.30.2/pycwb/workflow/subflow → pycwb-1.0.0a1/examples/mesa_testing/input}/process_job_segment.py +130 -116
- pycwb-1.0.0a1/examples/online_shm_run/README.md +82 -0
- pycwb-1.0.0a1/examples/online_shm_run/_test_integration.py +54 -0
- pycwb-1.0.0a1/examples/online_shm_run/_test_pipeline.py +72 -0
- pycwb-1.0.0a1/examples/online_shm_run/debug_run.sh +127 -0
- pycwb-1.0.0a1/examples/online_shm_run/fake_data_generator.py +382 -0
- pycwb-1.0.0a1/examples/online_shm_run/online_schema_extension.yaml +188 -0
- pycwb-1.0.0a1/examples/online_shm_run/run.sh +64 -0
- pycwb-1.0.0a1/examples/online_shm_run/user_parameters.yaml +121 -0
- pycwb-1.0.0a1/examples/online_shm_run/user_parameters_debug.yaml +101 -0
- pycwb-1.0.0a1/examples/pycwb_cwb_consistency/README.md +40 -0
- pycwb-1.0.0a1/examples/pycwb_cwb_consistency/compare_pycwb_vs_cwb.py +2074 -0
- pycwb-1.0.0a1/examples/white_noise_burst_injection/injection_parameters.py +92 -0
- pycwb-1.0.0a1/pycwb/__init__.py +30 -0
- pycwb-1.0.0a1/pycwb/_version.py +24 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/batch_setup.py +49 -11
- pycwb-1.0.0a1/pycwb/cli/clone_dir.py +91 -0
- pycwb-1.0.0a1/pycwb/cli/config_setup.py +213 -0
- pycwb-1.0.0a1/pycwb/cli/match_simulations.py +98 -0
- pycwb-1.0.0a1/pycwb/cli/merge_catalog.py +68 -0
- pycwb-1.0.0a1/pycwb/cli/online.py +51 -0
- pycwb-1.0.0a1/pycwb/cli/progress.py +706 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/run.py +49 -6
- pycwb-1.0.0a1/pycwb/cli/run_waveform_reconstruction.py +91 -0
- pycwb-1.0.0a1/pycwb/cli/simulation_summary.py +106 -0
- pycwb-1.0.0a1/pycwb/config/config.py +507 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/constants/user_parameters_schema.py +147 -4
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/autoencoder/autoencoder.py +1 -1
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/autoencoder/cwb_autoencoder.py +1 -1
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/autoencoder/module.yaml +1 -1
- pycwb-1.0.0a1/pycwb/modules/catalog/__init__.py +12 -0
- pycwb-1.0.0a1/pycwb/modules/catalog/catalog.py +724 -0
- pycwb-1.0.0a1/pycwb/modules/catalog/catalog_json.py +381 -0
- pycwb-1.0.0a1/pycwb/modules/catalog/convert_root.py +400 -0
- pycwb-1.0.0a1/pycwb/modules/catalog/tests/test_remove_stale_triggers.py +163 -0
- pycwb-1.0.0a1/pycwb/modules/catalog/tests/test_triggers_deduplicate.py +207 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/coherence/coherence.py +18 -9
- pycwb-1.0.0a1/pycwb/modules/condor/condor.py +338 -0
- pycwb-1.0.0a1/pycwb/modules/config_repo_parser/README.md +211 -0
- pycwb-1.0.0a1/pycwb/modules/config_repo_parser/__init__.py +31 -0
- pycwb-1.0.0a1/pycwb/modules/config_repo_parser/config_repo_parser.py +614 -0
- pycwb-1.0.0a1/pycwb/modules/config_repo_parser/setup.py +409 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_coherence/FIXES.md +286 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_coherence/__init__.py +21 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_coherence/coherence.py +1206 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_coherence/excess_energy.py +164 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_coherence/tf_batch_generation.py +148 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_coherence/time_delay_max_energy.py +939 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_conversions/cluster.py +10 -1
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_conversions/detector.py +10 -1
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_conversions/module.yaml +1 -1
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_conversions/pixel.py +11 -2
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_conversions/series.py +47 -24
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_conversions/sparse_series.py +11 -2
- pycwb-1.0.0a1/pycwb/modules/cwb_interop/__init__.py +1 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_interop/cwb_workdir_setup.py +504 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_xgboost/__init__.py +100 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_xgboost/cwb_xgboost.py +8 -2
- pycwb-1.0.0a1/pycwb/modules/cwb_xgboost/plots.py +652 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_xgboost/prediction.py +1 -1
- pycwb-1.0.0a1/pycwb/modules/cwb_xgboost/read_data.py +330 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_xgboost/training.py +697 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_xgboost/utils.py +87 -0
- pycwb-1.0.0a1/pycwb/modules/cwb_xgboost/utils_extended.py +256 -0
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/PSD_correction.py +192 -0
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/__init__.py +7 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/data_conditioning/data_conditioning.py +2 -2
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/data_conditioning_python.py +118 -0
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/fake_conditioning.py +93 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/data_conditioning/regression.py +14 -5
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/regression_jax_layer.py +80 -0
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/regression_py.py +817 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/data_conditioning/whitening_cwb.py +14 -7
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/whitening_mdc.py +199 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/data_conditioning/whitening_mesa.py +34 -23
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/whitening_mesa_py.py +499 -0
- pycwb-1.0.0a1/pycwb/modules/data_conditioning/whitening_py.py +383 -0
- pycwb-1.0.0a1/pycwb/modules/gracedb/gracedb.py +134 -0
- pycwb-1.0.0a1/pycwb/modules/injection/gwsignal_waveform.py +125 -0
- pycwb-1.0.0a1/pycwb/modules/injection/inj_generators.py +168 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/injection.py +43 -18
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/wf_generator.py +0 -1
- pycwb-1.0.0a1/pycwb/modules/job_segment/__init__.py +5 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/job_segment/dq_segment.py +55 -4
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/job_segment/frame.py +4 -2
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/job_segment/job_segment.py +276 -39
- pycwb-1.0.0a1/pycwb/modules/job_segment/plots.py +92 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/job_segment/test_job_segment.py +4 -4
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihood/likelihood.py +1 -1
- pycwb-1.0.0a1/pycwb/modules/likelihoodWP/FIXES.md +672 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWP/__init__.py +1 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihoodWP/dpf.py +20 -11
- pycwb-1.0.0a1/pycwb/modules/likelihoodWP/likelihood.py +1829 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWP/pixel_batch_ops.py +218 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWP/sky_mask.py +119 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWP/tests/test_compute_sky_valid_indices.py +217 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihoodWP/typing.py +2 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihoodWP/utils.py +171 -152
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/__init__.py +19 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/dpf.py +189 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/likelihood.py +519 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/sky_scan.py +283 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/sky_stat.py +323 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/types.py +11 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/utils.py +332 -0
- pycwb-1.0.0a1/pycwb/modules/likelihoodWPGPU/xtalk_ops.py +14 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/logger/logger.py +6 -0
- pycwb-1.0.0a1/pycwb/modules/noise/__init__.py +29 -0
- pycwb-1.0.0a1/pycwb/modules/noise/gaussian.py +189 -0
- pycwb-1.0.0a1/pycwb/modules/noise/glitch.py +29 -0
- pycwb-1.0.0a1/pycwb/modules/noise/non_gaussian.py +28 -0
- pycwb-1.0.0a1/pycwb/modules/noise/psd.py +124 -0
- pycwb-1.0.0a1/pycwb/modules/online/ONLINE_WORKFLOW_IMPLEMENTATION.md +602 -0
- pycwb-1.0.0a1/pycwb/modules/online/__init__.py +1 -0
- pycwb-1.0.0a1/pycwb/modules/online/background.py +31 -0
- pycwb-1.0.0a1/pycwb/modules/online/data_acquisition.py +427 -0
- pycwb-1.0.0a1/pycwb/modules/online/data_source.py +525 -0
- pycwb-1.0.0a1/pycwb/modules/online/deduplication.py +129 -0
- pycwb-1.0.0a1/pycwb/modules/online/latency_monitor.py +110 -0
- pycwb-1.0.0a1/pycwb/modules/online/ring_buffer.py +198 -0
- pycwb-1.0.0a1/pycwb/modules/online/significance.py +111 -0
- pycwb-1.0.0a1/pycwb/modules/online/trigger_handler.py +313 -0
- pycwb-1.0.0a1/pycwb/modules/plot/__init__.py +3 -0
- pycwb-1.0.0a1/pycwb/modules/plot/fragment_cluster_viz.py +694 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot/spectrogram.py +18 -5
- pycwb-1.0.0a1/pycwb/modules/plot/waveform.py +43 -0
- pycwb-1.0.0a1/pycwb/modules/post_production/waveform_reconstruction.py +399 -0
- pycwb-1.0.0a1/pycwb/modules/post_production/waveform_reconstruction_plot.py +451 -0
- pycwb-1.0.0a1/pycwb/modules/read_data/data_check.py +115 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/read_data/mdc.py +75 -85
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/read_data/module.yaml +1 -1
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/read_data/read_data.py +73 -37
- pycwb-1.0.0a1/pycwb/modules/read_data/tests/test_mdc.py +141 -0
- pycwb-1.0.0a1/pycwb/modules/reconstruction/__init__.py +3 -0
- pycwb-1.0.0a1/pycwb/modules/reconstruction/getINJwaveform.py +216 -0
- pycwb-1.0.0a1/pycwb/modules/reconstruction/getMRAwaveform.py +550 -0
- pycwb-1.0.0a1/pycwb/modules/reconstruction/getResiduals.py +77 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/reconstruction/module.yaml +1 -1
- pycwb-1.0.0a1/pycwb/modules/report/read_results.py +60 -0
- pycwb-1.0.0a1/pycwb/modules/skymask/__init__.py +3 -0
- pycwb-1.0.0a1/pycwb/modules/skymask/skymask.py +95 -0
- pycwb-1.0.0a1/pycwb/modules/slurm/slurm.py +221 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/sparse_series/module.yaml +1 -1
- pycwb-1.0.0a1/pycwb/modules/super_cluster/FIX_MIN_SKYRES_HEALPIX.md +106 -0
- pycwb-1.0.0a1/pycwb/modules/super_cluster/FIX_TD_RESOLUTION_AND_WDMSHIFT.md +171 -0
- pycwb-1.0.0a1/pycwb/modules/super_cluster/__init__.py +15 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/super_cluster/sub_net_cut.py +17 -18
- pycwb-1.0.0a1/pycwb/modules/super_cluster/super_cluster.py +634 -0
- pycwb-0.30.2/pycwb/modules/super_cluster/supercluster.py → pycwb-1.0.0a1/pycwb/modules/super_cluster/super_cluster_cwb.py +25 -4
- pycwb-1.0.0a1/pycwb/modules/super_cluster/utils.py +660 -0
- pycwb-1.0.0a1/pycwb/modules/workflow_utils/__init__.py +1 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/workflow_utils/job_setup.py +57 -8
- pycwb-1.0.0a1/pycwb/modules/workflow_utils/trigger_utils.py +100 -0
- pycwb-1.0.0a1/pycwb/modules/xtalk/monster.py +534 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/xtalk/type.py +26 -12
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/prefect_flow/tasks/builtin.py +6 -6
- pycwb-1.0.0a1/pycwb/types/FIX_SKY_COORDINATE_CONVENTION.md +76 -0
- pycwb-1.0.0a1/pycwb/types/__init__.py +3 -0
- pycwb-1.0.0a1/pycwb/types/base_catalog.py +213 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/data_quality_file.py +6 -2
- pycwb-1.0.0a1/pycwb/types/detector.py +1556 -0
- pycwb-1.0.0a1/pycwb/types/job.py +464 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/network.py +31 -65
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/network_cluster.py +186 -105
- pycwb-1.0.0a1/pycwb/types/network_event.py +837 -0
- pycwb-1.0.0a1/pycwb/types/online.py +69 -0
- pycwb-1.0.0a1/pycwb/types/pixel_arrays.py +576 -0
- pycwb-1.0.0a1/pycwb/types/simulation.py +427 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/sparse_series.py +4 -8
- pycwb-1.0.0a1/pycwb/types/time_frequency_map.py +702 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/time_frequency_series.py +36 -9
- pycwb-1.0.0a1/pycwb/types/time_series.py +497 -0
- pycwb-1.0.0a1/pycwb/types/trigger.py +859 -0
- pycwb-1.0.0a1/pycwb/types/waveform.py +362 -0
- pycwb-1.0.0a1/pycwb/types/wavelet.py +30 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/wdm.py +20 -6
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/conversions/timeseries.py +12 -0
- pycwb-1.0.0a1/pycwb/utils/memory.py +16 -0
- pycwb-1.0.0a1/pycwb/utils/network.py +71 -0
- pycwb-1.0.0a1/pycwb/utils/parser.py +47 -0
- pycwb-1.0.0a1/pycwb/utils/td_vector_batch.py +336 -0
- pycwb-1.0.0a1/pycwb/utils/yaml_helper.py +210 -0
- pycwb-1.0.0a1/pycwb/vendor/online/online_schema_extension.yaml +188 -0
- pycwb-1.0.0a1/pycwb/vendor/online/user_parameters_online.yaml +71 -0
- pycwb-1.0.0a1/pycwb/workflow/batch.py +413 -0
- pycwb-1.0.0a1/pycwb/workflow/matching.py +414 -0
- pycwb-1.0.0a1/pycwb/workflow/merge.py +182 -0
- pycwb-1.0.0a1/pycwb/workflow/online.py +329 -0
- pycwb-1.0.0a1/pycwb/workflow/run.py +88 -0
- pycwb-1.0.0a1/pycwb/workflow/subflow/__init__.py +3 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/workflow/subflow/fake_processor.py +1 -1
- pycwb-1.0.0a1/pycwb/workflow/subflow/postprocess_and_plots.py +395 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/workflow/subflow/prepare_job_runs.py +29 -13
- pycwb-1.0.0a1/pycwb/workflow/subflow/process_job_segment.py +281 -0
- pycwb-1.0.0a1/pycwb/workflow/subflow/process_job_segment_native.py +522 -0
- pycwb-1.0.0a1/pycwb/workflow/subflow/process_job_segment_parallel.py +798 -0
- pycwb-1.0.0a1/pycwb/workflow/subflow/process_online_segment.py +394 -0
- pycwb-1.0.0a1/pycwb/workflow/subflow/simulation_summary.py +358 -0
- pycwb-1.0.0a1/pycwb/workflow/subflow/waveform_reconstruction_report.py +209 -0
- pycwb-1.0.0a1/pyproject.toml +74 -0
- pycwb-1.0.0a1/setup.py +136 -0
- pycwb-1.0.0a1/tests/compare_with_cwb/activate.sh +2 -0
- pycwb-1.0.0a1/tests/compare_with_cwb/compare_native_vs_cwb.py +625 -0
- pycwb-1.0.0a1/tests/compare_with_cwb/config/user_parameters.yaml +130 -0
- pycwb-1.0.0a1/tests/sample/input/LIGO_zero_det_HP.txt +3000 -0
- pycwb-1.0.0a1/tests/sample/input/aligo_O4high.txt +2736 -0
- pycwb-1.0.0a1/tests/sample/input/avirgo_O4high_NEW.txt +3000 -0
- pycwb-1.0.0a1/tests/sample/run.py +77 -0
- pycwb-1.0.0a1/tests/sample/run_mix.py +324 -0
- pycwb-1.0.0a1/tests/sample/test.ipynb +517 -0
- pycwb-1.0.0a1/tests/sample/test_coherence.ipynb +632 -0
- pycwb-1.0.0a1/tests/sample/test_coherence.py +253 -0
- pycwb-1.0.0a1/tests/sample/test_regression.py +37 -0
- pycwb-1.0.0a1/tests/sample/test_supercluster.py +422 -0
- pycwb-1.0.0a1/tests/sample/test_whitening.py +54 -0
- pycwb-1.0.0a1/tests/sample/user_parameters_injection.yaml +110 -0
- pycwb-1.0.0a1/tests/sample/user_parameters_injection_cwb.yaml +109 -0
- pycwb-0.30.2/.gitlab-ci.yml +0 -128
- pycwb-0.30.2/PKG-INFO +0 -114
- pycwb-0.30.2/PycWB.egg-info/PKG-INFO +0 -114
- pycwb-0.30.2/PycWB.egg-info/requires.txt +0 -29
- pycwb-0.30.2/PycWB.egg-info/top_level.txt +0 -2
- pycwb-0.30.2/README.md +0 -69
- pycwb-0.30.2/pycwb/__init__.py +0 -9
- pycwb-0.30.2/pycwb/_version.py +0 -34
- pycwb-0.30.2/pycwb/cli/merge_catalog.py +0 -18
- pycwb-0.30.2/pycwb/config/config.py +0 -238
- pycwb-0.30.2/pycwb/modules/catalog/__init__.py +0 -1
- pycwb-0.30.2/pycwb/modules/catalog/catalog.py +0 -76
- pycwb-0.30.2/pycwb/modules/condor/condor.py +0 -167
- pycwb-0.30.2/pycwb/modules/cwb_xgboost/read_data.py +0 -105
- pycwb-0.30.2/pycwb/modules/cwb_xgboost/training.py +0 -0
- pycwb-0.30.2/pycwb/modules/cwb_xgboost/utils.py +0 -73
- pycwb-0.30.2/pycwb/modules/data_conditioning/__init__.py +0 -4
- pycwb-0.30.2/pycwb/modules/gracedb/gracedb.py +0 -40
- pycwb-0.30.2/pycwb/modules/injection/inj_generators.py +0 -71
- pycwb-0.30.2/pycwb/modules/job_segment/__init__.py +0 -3
- pycwb-0.30.2/pycwb/modules/job_segment/plots.py +0 -33
- pycwb-0.30.2/pycwb/modules/likelihoodWP/likelihood.py +0 -830
- pycwb-0.30.2/pycwb/modules/plot/__init__.py +0 -2
- pycwb-0.30.2/pycwb/modules/plot/waveform.py +0 -17
- pycwb-0.30.2/pycwb/modules/read_data/data_check.py +0 -76
- pycwb-0.30.2/pycwb/modules/read_data/tests/test_mdc.py +0 -167
- pycwb-0.30.2/pycwb/modules/reconstruction/__init__.py +0 -1
- pycwb-0.30.2/pycwb/modules/reconstruction/getMRAwaveform.py +0 -263
- pycwb-0.30.2/pycwb/modules/report/read_results.py +0 -81
- pycwb-0.30.2/pycwb/modules/slurm/slurm.py +0 -85
- pycwb-0.30.2/pycwb/modules/super_cluster/__init__.py +0 -1
- pycwb-0.30.2/pycwb/modules/super_cluster/super_cluster.py +0 -319
- pycwb-0.30.2/pycwb/modules/super_cluster/utils.py +0 -345
- pycwb-0.30.2/pycwb/modules/xtalk/monster.py +0 -182
- pycwb-0.30.2/pycwb/types/detector.py +0 -541
- pycwb-0.30.2/pycwb/types/job.py +0 -144
- pycwb-0.30.2/pycwb/types/network_event.py +0 -490
- pycwb-0.30.2/pycwb/types/time_series.py +0 -80
- pycwb-0.30.2/pycwb/utils/network.py +0 -41
- pycwb-0.30.2/pycwb/utils/parser.py +0 -23
- pycwb-0.30.2/pycwb/utils/yaml_helper.py +0 -48
- pycwb-0.30.2/pycwb/vendor/autoencoder/__init__.py +0 -0
- pycwb-0.30.2/pycwb/vendor/lib/__init__.py +0 -0
- pycwb-0.30.2/pycwb/workflow/__init__.py +0 -0
- pycwb-0.30.2/pycwb/workflow/batch.py +0 -130
- pycwb-0.30.2/pycwb/workflow/merge.py +0 -39
- pycwb-0.30.2/pycwb/workflow/run.py +0 -32
- pycwb-0.30.2/pycwb/workflow/subflow/__init__.py +0 -3
- pycwb-0.30.2/pycwb/workflow/subflow/postprocess_and_plots.py +0 -144
- pycwb-0.30.2/pyproject.toml +0 -17
- pycwb-0.30.2/setup.py +0 -183
- {pycwb-0.30.2 → pycwb-1.0.0a1}/.readthedocs.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/LICENSE +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/MANIFEST.in +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/Makefile +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/PycWB.egg-info/dependency_links.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/io_performance/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/io_performance/data_gen.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/io_performance/parquet_perf.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/io_performance/parquet_read_perf.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/io_performance/read_pref.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/likelihood/data_generator.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/likelihood/perf_cuda.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/likelihood/performance_test_dpf.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/likelihood/user_parameters_injection.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/supercluster/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/supercluster/generate_data.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/supercluster/generate_data_2.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/supercluster/performance_supercluster.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/benchmark/supercluster/user_parameters_injection.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/bin/pycwb_search +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/bin/pycwb_show +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Biorthogonal.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Biorthogonal.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Daubechies.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Daubechies.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/FourierCoefficients.icc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Haar.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Haar.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/LineFilter.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/LineFilter.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Makefile +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Meyer.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Meyer.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Symlet.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Symlet.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/SymmArray.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/SymmArray.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/SymmArraySSE.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/SymmArraySSE.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/SymmObjArray.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/SymmObjArray.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/WDM.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/WDM.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/WDMOverlap.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/WDMOverlap.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/WaveDWT.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/WaveDWT.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Wavelet.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/Wavelet.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/alm.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/build.sh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/cluster.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/cluster.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/cmake/FindHealpix.cmake +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/cmake/FindeBBH.cmake +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/cmake/install_function.cmake +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/constants.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/detector.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/detector.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/injection.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/injection.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/lossy.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/lossy.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/monster.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/monster.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/netcluster.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/netcluster.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/netevent.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/netevent.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/netpixel.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/netpixel.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/network.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/network.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/pycwb.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/rdfr.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/rdfr.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/readframe.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/readframe.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/readfrfile.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/readfrfile.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/regression.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/regression.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/skycoord.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/skymap.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/skymap.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/sseries.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/sseries.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/time.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/time.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watasm.S +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watasm_elf64.o +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watavx.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watbranch.in +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watfun.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wathash.in +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watplot.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watplot.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watsse.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wattag.in +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/waturl.in +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/watversion.hh.in +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavearray.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavearray.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavecomplex.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavecomplex.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavecor.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavecor.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavefft.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavefft.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavelet_LinkDef.h +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavelinefilter.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wavelinefilter.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/waverdc.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/waverdc.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wseries.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wseries.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/cwb-core/wslice.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/0.installation_guide.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/1.initialisation_guide.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/2.test_interactive_multistages_2G_analysis.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/3.run_pycwb_with_yaml_config.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/4.py_cwb_inet_2G.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/5.cwb2G_analyse.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/6.wat_codes_notes.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/Makefile +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/diagram.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/make.bat +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/_static/.keep +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/_templates/.keep +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/credit.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/index.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/install.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/mod_cwb.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/package.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/schema.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/tutorial_batch_inj.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/tutorial_customized_wf_gen.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/tutorial_injection.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/tutorial_multi_injection.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/tutorial_search.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/tutorials.rst +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/docs/source/workflow.png +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/envs/Dockerfile +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/envs/environment.yml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/envs/mamba/Dockerfile +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/GW190521_search/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/GW190521_search/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/autoencoder/pycwb_injection.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/autoencoder/user_parameters_injection.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/batch_injection/generate_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/batch_injection/pycbc_inject/hyperbolicTD/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/batch_injection/pycbc_inject/hyperbolicTD/parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/batch_injection/pycbc_inject/hyperbolicTD/waveform.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/batch_injection/pycwb_injection.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/batch_injection/user_parameters_injection.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/H1_cat0.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/H1_cat1.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/H1_cat2.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/H1_cat4.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/L1_cat0.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/L1_cat1.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/L1_cat2.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/DQ/L1_cat4.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/input/OPBM.period +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/input/OPBM_H1.frames +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/input/OPBM_L1.frames +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/pycwb_mdc.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/benchmark/user_parameters_mdc.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/colab/notebook_updated/pycWB_GW150914_VScode_adapted.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/colab/pycWB_GW150914.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/data_injection/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/data_injection/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/data_injection/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/gwosc/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/injection/pycwb_injection.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/injection/user_parameters_injection.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/injection/wdmXTalk/OverlapCatalog16-1024.bin +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/injection_with_coordinate_system/injection_module_test.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/injection_with_coordinate_system/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/lvk_sep_2023/demo.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/lvk_sep_2023/user_parameters.yaml +0 -0
- {pycwb-0.30.2/examples/white_noise_burst_injection → pycwb-1.0.0a1/examples/mesa_testing/input}/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/multiple_injection/pycwb_injection.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/multiple_injection/user_parameters_injection.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_LHV/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_LHV/analyze_events.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_LHV/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_LHV/input/LIGO_zero_det_HP.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_LHV/input/aligo_O4high.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_LHV/input/avirgo_O4high_NEW.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_LHV/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_gaussian_noise/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_gaussian_noise/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_gaussian_noise/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_real_data/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_real_data/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_real_data/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_sky_patch/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_sky_patch/analyze_events.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_sky_patch/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_sky_patch/input/aligo_O4high.txt +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/new_injection_infra_with_sky_patch/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/pyseobnr_injection/generate_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/pyseobnr_injection/user_parameters_injection.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/pyseobnr_injection/waveform_model/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/pyseobnr_injection/waveform_model/waveform.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/sine_gaussian_injection/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/sine_gaussian_injection/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/sine_gaussian_injection/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/waveform_reconstruction/reconstruct_waveform_from_cluster.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/white_noise_burst_injection/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/examples/white_noise_burst_injection/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/cwb_core/coherence.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/cwb_core/coherence.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/cwb_core/likelihood.cc +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/cwb_core/likelihood.hh +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/dag/dag.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/dag/dask-prefect.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/dag/prefect_test.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger/server.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger/visualizition.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/.eslintrc.cjs +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/.gitignore +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/.prettierrc.json +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/README.md +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/index.html +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/package-lock.json +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/package.json +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/public/favicon.ico +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/App.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/assets/base.css +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/assets/cwb_icon_modern_blue_alfa.png +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/assets/main.css +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/assets/style.css +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/HelloWorld.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/TheWelcome.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/WelcomeItem.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/__tests__/HelloWorld.spec.js +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/icons/IconCommunity.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/icons/IconDocumentation.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/icons/IconEcosystem.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/icons/IconSupport.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/components/icons/IconTooling.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/main.js +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/router/index.js +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/stores/counter.js +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/views/drawflow.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/views/nodes/node1.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/views/nodes/node2.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/views/nodes/node3.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/src/views/nodes/nodeHeader.vue +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/messenger-web-interface/vite.config.js +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/performance/numba_test.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/performance/taichi_test.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/pp_workflow/simple.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/pp_workflow/simple_module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/pp_workflow/workflow.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/prototypes/search.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/batch_runner.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/flow.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/get_external_modules.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/gwosc.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/gwosc_data.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/post_process.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/server.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/cli/xtalk.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/config/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/constants/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/constants/detectors.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/constants/physics_constants.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/constants/project_constants.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/autoencoder/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/catalog/module.yaml +0 -0
- {pycwb-0.30.2/pycwb/modules/condor → pycwb-1.0.0a1/pycwb/modules/catalog/tests}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/coherence/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/coherence/coherence_lite.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/coherence/module.yaml +0 -0
- {pycwb-0.30.2/pycwb/modules/cwb_xgboost → pycwb-1.0.0a1/pycwb/modules/condor}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/condor/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_conversions/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_xgboost/config.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/cwb_xgboost/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/data_conditioning/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/energy_threshold/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/energy_threshold/threshold.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/external_module_manager/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/external_module_manager/config_schema.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/external_module_manager/manager.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/external_module_manager/test/sample_config.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/external_module_manager/test/test.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/gracedb/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/gracedb/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/gracedb/test_gracedb.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/gwosc/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/gwosc/gwosc.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/gwosc/utils.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/distribution_utils.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/par_generator.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/scripts/injection_module_test.ipynb +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/scripts/injection_parameters.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/sky_distribution.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/tests/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/injection/tests/test_injection.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/job_segment/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/job_segment/super_lag.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihood/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihood/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihoodWP/dpf_cython.pyx +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/likelihoodWP/sky_stat.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/logger/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/logger/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/multi_resolution_wdm/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/multi_resolution_wdm/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/multi_resolution_wdm/wdm.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot/cluster_statistics.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot/event.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot_data_quality/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot_data_quality/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot_data_quality/plot.py +0 -0
- {pycwb-0.30.2/pycwb/modules/likelihoodWP → pycwb-1.0.0a1/pycwb/modules/plot_map}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot_map/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/plot_map/world_map.py +0 -0
- {pycwb-0.30.2/pycwb/modules/plot_map → pycwb-1.0.0a1/pycwb/modules/qveto}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/qveto/qveto.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/qveto/qveto_ext.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/qveto/utils.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/read_data/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/read_data/data_find.py +0 -0
- {pycwb-0.30.2/pycwb/modules/qveto → pycwb-1.0.0a1/pycwb/modules/read_data/tests}/__init__.py +0 -0
- {pycwb-0.30.2/pycwb/modules/read_data/tests → pycwb-1.0.0a1/pycwb/modules/report}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/report/continues_poisson.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/report/far_rho.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/report/report.py +0 -0
- {pycwb-0.30.2/pycwb/modules/report → pycwb-1.0.0a1/pycwb/modules/slurm}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/slurm/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/sparse_series/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/sparse_series/sparse_table.py +0 -0
- {pycwb-0.30.2/pycwb/modules/slurm → pycwb-1.0.0a1/pycwb/modules/statistics}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/statistics/eff.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/statistics/eff_plot.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/statistics/merge.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/statistics/sigmoid_fit.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/super_cluster/module.yaml +0 -0
- {pycwb-0.30.2/pycwb/modules/statistics → pycwb-1.0.0a1/pycwb/modules/supercluster_naive}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/supercluster_naive/supercluster2.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/superlag/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/superlag/module.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/superlag/superlag.py +0 -0
- {pycwb-0.30.2/pycwb/modules/supercluster_naive → pycwb-1.0.0a1/pycwb/modules/web_viewer}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/web_viewer/create.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/web_viewer/module.yaml +0 -0
- {pycwb-0.30.2/pycwb/modules/web_viewer → pycwb-1.0.0a1/pycwb/modules/xtalk}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/xtalk/monster_old.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/modules/xtalk/xtalk_data.py +0 -0
- {pycwb-0.30.2/pycwb/modules/workflow_utils → pycwb-1.0.0a1/pycwb/post_production}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/post_production/workflow.py +0 -0
- {pycwb-0.30.2/pycwb/modules/xtalk → pycwb-1.0.0a1/pycwb/prefect_flow}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/prefect_flow/pycwb_flow.py +0 -0
- {pycwb-0.30.2/pycwb/post_production → pycwb-1.0.0a1/pycwb/prefect_flow/tasks}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/network_pixel.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/types/wdm_xtalk.py +0 -0
- {pycwb-0.30.2/pycwb/prefect_flow → pycwb-1.0.0a1/pycwb/utils}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/async_write.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/check_ROOT.py +0 -0
- {pycwb-0.30.2/pycwb/prefect_flow/tasks → pycwb-1.0.0a1/pycwb/utils/conversions}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/dataclass_object_io.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/dep_check.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/generate_params_table.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/image.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/module.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/utils/skymap_coord.py +0 -0
- {pycwb-0.30.2/pycwb/types → pycwb-1.0.0a1/pycwb/vendor}/__init__.py +0 -0
- {pycwb-0.30.2/pycwb/utils → pycwb-1.0.0a1/pycwb/vendor/autoencoder}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/vendor/autoencoder/cwb_autoencoder.h5 +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/vendor/example.yaml +0 -0
- {pycwb-0.30.2/pycwb/utils/conversions → pycwb-1.0.0a1/pycwb/vendor/lib}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/vendor/template/gwosc/user_parameters.yaml +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/vendor/web_viewer/event_dump.html +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/vendor/web_viewer/styles.css +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/pycwb/vendor/web_viewer/viewer.html +0 -0
- {pycwb-0.30.2/pycwb/vendor → pycwb-1.0.0a1/pycwb/workflow}/__init__.py +0 -0
- {pycwb-0.30.2 → pycwb-1.0.0a1}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
prototypes/config/DQ/**/*.txt filter=lfs diff=lfs merge=lfs -text
|
|
@@ -10,7 +10,7 @@ messenger_test/data
|
|
|
10
10
|
docs/source/pycwb*.rst
|
|
11
11
|
docs/source/modules.rst
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
*.log
|
|
14
14
|
.pytest_cache
|
|
15
15
|
*.iml
|
|
16
16
|
cwb-core/install
|
|
@@ -24,4 +24,17 @@ messenger-web-interface/dist
|
|
|
24
24
|
cwb_wrapper/_version.py
|
|
25
25
|
pycwb/_version.py
|
|
26
26
|
|
|
27
|
-
benchmark/*/*.pkl
|
|
27
|
+
benchmark/*/*.pkl
|
|
28
|
+
examples/*/catalog
|
|
29
|
+
examples/*/public
|
|
30
|
+
examples/*/trigger
|
|
31
|
+
examples/*/job_status
|
|
32
|
+
examples/*/output
|
|
33
|
+
examples/*/log
|
|
34
|
+
examples/*/wdmXTalk
|
|
35
|
+
examples/**/*.hdf5
|
|
36
|
+
examples/**/*.gwf
|
|
37
|
+
|
|
38
|
+
*.bin
|
|
39
|
+
*.xbin
|
|
40
|
+
*.pkl
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
image: buildpack-deps:jammy
|
|
2
|
+
|
|
3
|
+
stages: # List of stages for jobs, and their order of execution
|
|
4
|
+
- build
|
|
5
|
+
- test
|
|
6
|
+
- deploy
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
include:
|
|
10
|
+
- component: git.ligo.org/computing/gitlab/components/docker/build@2.3.1
|
|
11
|
+
inputs:
|
|
12
|
+
dockerfile: envs/Dockerfile.ci-native
|
|
13
|
+
job_name: build
|
|
14
|
+
image_tag: ${CI_COMMIT_TAG:-$CI_COMMIT_REF_SLUG}
|
|
15
|
+
|
|
16
|
+
- component: git.ligo.org/computing/gitlab/components/docker/build@2.3.1
|
|
17
|
+
inputs:
|
|
18
|
+
dockerfile: envs/Dockerfile.ci-native
|
|
19
|
+
job_name: build-latest
|
|
20
|
+
image_tag: latest
|
|
21
|
+
|
|
22
|
+
- component: git.ligo.org/computing/gitlab/components/docker/test@2.3.1
|
|
23
|
+
inputs:
|
|
24
|
+
test_script:
|
|
25
|
+
- cd /opt && pycwb --version # change dir to prevent use the source code
|
|
26
|
+
|
|
27
|
+
build-latest:
|
|
28
|
+
rules:
|
|
29
|
+
- if: $CI_COMMIT_TAG
|
|
30
|
+
|
|
31
|
+
container_scanning:
|
|
32
|
+
needs:
|
|
33
|
+
- job: build-latest
|
|
34
|
+
optional: true
|
|
35
|
+
|
|
36
|
+
build-sdist:
|
|
37
|
+
image: python:3.11
|
|
38
|
+
stage: build
|
|
39
|
+
script:
|
|
40
|
+
- python3 -m pip install build
|
|
41
|
+
- python3 -m build --sdist
|
|
42
|
+
only:
|
|
43
|
+
- tags
|
|
44
|
+
artifacts:
|
|
45
|
+
paths:
|
|
46
|
+
- dist/*
|
|
47
|
+
|
|
48
|
+
publish:
|
|
49
|
+
image: python:3.10
|
|
50
|
+
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
|
|
51
|
+
environment: production
|
|
52
|
+
only:
|
|
53
|
+
- tags
|
|
54
|
+
script:
|
|
55
|
+
- echo "Deploying to PyPI..."
|
|
56
|
+
- pip install twine
|
|
57
|
+
- TWINE_PASSWORD=${PYPI_TOKEN} TWINE_USERNAME=__token__ python -m twine upload dist/*.tar.gz
|
pycwb-1.0.0a1/Dockerfile
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# CI-ready image for PycWB (mirrors .gitlab-ci.yml install steps)
|
|
2
|
+
FROM buildpack-deps:jammy
|
|
3
|
+
|
|
4
|
+
ARG ROOT_VERSION=6.26.14
|
|
5
|
+
ARG ROOT_ARCH=Linux-ubuntu22-x86_64-gcc11.4
|
|
6
|
+
ENV ROOTSYS=/usr/local
|
|
7
|
+
ENV PYTHONPATH=${ROOTSYS}/lib:${PYTHONPATH}
|
|
8
|
+
ENV CLING_STANDARD_PCH=none
|
|
9
|
+
|
|
10
|
+
# System deps and ROOT + healpix
|
|
11
|
+
RUN set -eux; \
|
|
12
|
+
wget -q https://root.cern/download/root_v${ROOT_VERSION}.${ROOT_ARCH}.tar.gz; \
|
|
13
|
+
tar -xf root_v${ROOT_VERSION}.${ROOT_ARCH}.tar.gz --strip-components=1 -C /usr/local/; \
|
|
14
|
+
apt-get update; \
|
|
15
|
+
apt-get -y install git dpkg-dev cmake pkg-config g++ gcc binutils libx11-dev libxpm-dev libxft-dev libxext-dev tar gfortran subversion; \
|
|
16
|
+
apt-get -y install libfftw3-dev libcfitsio9 libsharp0 python3-pip; \
|
|
17
|
+
wget -q http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb; \
|
|
18
|
+
dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb; \
|
|
19
|
+
wget -q https://launchpad.net/ubuntu/+archive/primary/+files/libhealpix-cxx3_3.80.0-5_amd64.deb; \
|
|
20
|
+
wget -q https://launchpad.net/ubuntu/+archive/primary/+files/libhealpix-cxx-dev_3.80.0-5_amd64.deb; \
|
|
21
|
+
dpkg -i libhealpix-cxx3_3.80.0-5_amd64.deb; \
|
|
22
|
+
dpkg -i libhealpix-cxx-dev_3.80.0-5_amd64.deb; \
|
|
23
|
+
apt-get -y install python3-venv; \
|
|
24
|
+
ln -sf /usr/bin/python3 /usr/bin/python; \
|
|
25
|
+
python3 -m pip install --upgrade pip setuptools; \
|
|
26
|
+
rm -rf /var/lib/apt/lists/*
|
|
27
|
+
|
|
28
|
+
WORKDIR /workspace
|
|
29
|
+
CMD ["python3", "--version"]
|
pycwb-1.0.0a1/PKG-INFO
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PycWB
|
|
3
|
+
Version: 1.0.0a1
|
|
4
|
+
Summary: A Python package for coherent gravitational wave burst analysis
|
|
5
|
+
Author-email: The PycWB team <yumeng.xu@ligo.org>
|
|
6
|
+
License: GPL-3.0-or-later
|
|
7
|
+
Project-URL: Homepage, https://git.ligo.org/yumeng.xu/pycwb
|
|
8
|
+
Project-URL: Documentation, https://pycwb.readthedocs.io
|
|
9
|
+
Keywords: ligo,physics,gravity,signal processing,gravitational waves,cwb,coherent wave burst
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: matplotlib
|
|
14
|
+
Requires-Dist: astropy
|
|
15
|
+
Requires-Dist: pyyaml
|
|
16
|
+
Requires-Dist: jsonschema
|
|
17
|
+
Requires-Dist: watchfiles
|
|
18
|
+
Requires-Dist: numba
|
|
19
|
+
Requires-Dist: jax
|
|
20
|
+
Requires-Dist: gwpy
|
|
21
|
+
Requires-Dist: ligo-segments
|
|
22
|
+
Requires-Dist: ligo-gracedb
|
|
23
|
+
Requires-Dist: aiohttp
|
|
24
|
+
Requires-Dist: filelock
|
|
25
|
+
Requires-Dist: numpy>=2
|
|
26
|
+
Requires-Dist: scipy>=1.13
|
|
27
|
+
Requires-Dist: h5py>=3.11
|
|
28
|
+
Requires-Dist: lalsuite>=7.23
|
|
29
|
+
Requires-Dist: healpy>=1.17
|
|
30
|
+
Requires-Dist: scikit-learn>=1.4.2
|
|
31
|
+
Requires-Dist: pyarrow>=17
|
|
32
|
+
Requires-Dist: pillow>=9.0.0
|
|
33
|
+
Requires-Dist: click
|
|
34
|
+
Requires-Dist: orjson
|
|
35
|
+
Requires-Dist: dacite
|
|
36
|
+
Requires-Dist: cartopy
|
|
37
|
+
Requires-Dist: htcondor
|
|
38
|
+
Requires-Dist: psutil
|
|
39
|
+
Requires-Dist: memspectrum
|
|
40
|
+
Requires-Dist: exceptiongroup>=1.0.0; python_version < "3.11"
|
|
41
|
+
Requires-Dist: python-ligo-lw<2.0.0
|
|
42
|
+
Requires-Dist: jinja2
|
|
43
|
+
Requires-Dist: plotly
|
|
44
|
+
Requires-Dist: wdm-wavelet
|
|
45
|
+
Requires-Dist: burst-waveform
|
|
46
|
+
Requires-Dist: pandas
|
|
47
|
+
Requires-Dist: duckdb
|
|
48
|
+
Requires-Dist: tqdm
|
|
49
|
+
Provides-Extra: pycbc
|
|
50
|
+
Requires-Dist: pycbc; extra == "pycbc"
|
|
51
|
+
Provides-Extra: nds2
|
|
52
|
+
Requires-Dist: python-nds2-client; extra == "nds2"
|
|
53
|
+
Dynamic: license-file
|
|
54
|
+
|
|
55
|
+
# PycWB
|
|
56
|
+
|
|
57
|
+
[](https://pycwb.readthedocs.io)
|
|
58
|
+
[](https://git.ligo.org/yumeng.xu/pycwb/-/pipelines)
|
|
59
|
+
[](https://git.ligo.org/yumeng.xu/pycwb/-/releases)
|
|
60
|
+
[](https://badge.fury.io/py/pycWB)
|
|
61
|
+
[](https://git.ligo.org/yumeng.xu/pycwb/-/blob/main/LICENSE)
|
|
62
|
+
|
|
63
|
+
PycWB is a modularized Python package for gravitational wave burst search based on the core functions of cWB.
|
|
64
|
+
The documentation can be found at [pycwb.readthedocs.io](https://pycwb.readthedocs.io).
|
|
65
|
+
|
|
66
|
+
## Installation
|
|
67
|
+
|
|
68
|
+
### Install PycWB with pip
|
|
69
|
+
|
|
70
|
+
PycWB is available on [PyPI](https://pypi.org/project/pycWB/). You can install it with pip.
|
|
71
|
+
Some dependencies are required before installing `pycwb` with pip.
|
|
72
|
+
The easiest way is to install them with conda.
|
|
73
|
+
|
|
74
|
+
> Python requirement: `>=3.10`
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
conda create -n pycwb python=3.13
|
|
78
|
+
conda activate pycwb
|
|
79
|
+
conda install -c conda-forge root=6 healpix_cxx=3 nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config
|
|
80
|
+
python3 -m pip install pycwb
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Currently, the ROOT-enabled `pycwb` build is only available for `x86_64` architecture. You can install the pure Python version of `pycwb` without installing ROOT:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
conda create -n pycwb python=3.13
|
|
87
|
+
conda activate pycwb
|
|
88
|
+
conda install -c conda-forge nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config
|
|
89
|
+
python3 -m pip install pycwb
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
For Apple Silicon users, if you need the ROOT version, install dependencies with the following commands:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
# make sure rosetta is installed
|
|
96
|
+
softwareupdate --install-rosetta --agree-to-license
|
|
97
|
+
# Optional: export CONDA_BUILD=1
|
|
98
|
+
conda create -n pycwb_x64
|
|
99
|
+
conda activate pycwb_x64
|
|
100
|
+
conda config --env --set subdir osx-64
|
|
101
|
+
conda install python==3.11 root=6.28 healpix_cxx=3 nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config ruamel.yaml htcondor
|
|
102
|
+
python3 -m pip install pycwb
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### Install PycWB from source
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
conda create -n pycwb python
|
|
109
|
+
conda activate pycwb
|
|
110
|
+
conda install -c conda-forge root=6 healpix_cxx=3 nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config
|
|
111
|
+
git clone git@git.ligo.org:yumeng.xu/pycwb.git
|
|
112
|
+
cd pycwb
|
|
113
|
+
python -m pip install .
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
> Again, for Apple Silicon users, if you don't need the ROOT version, remove `root=6` and `healpix_cxx=3` from the dependencies in the command above. The installation process will automatically install the pure Python version of `pycwb`.
|
|
117
|
+
|
|
118
|
+
## Usage
|
|
119
|
+
|
|
120
|
+
Example project can be found in [examples](https://git.ligo.org/yumeng.xu/pycwb/-/tree/main/examples)
|
|
121
|
+
|
|
122
|
+
```python
|
|
123
|
+
from pycwb.workflow.run import search
|
|
124
|
+
|
|
125
|
+
search('./user_parameters.yaml')
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
or run with command line
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
pycwb run ./user_parameters.yaml
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### Verify installation
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
pycwb --version
|
|
138
|
+
pycwb --help
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### Quick start for config setup
|
|
142
|
+
|
|
143
|
+
For one-command project setup and optional job submission, see [QUICKSTART_CONFIG_SETUP.md](./QUICKSTART_CONFIG_SETUP.md).
|
|
144
|
+
|
|
145
|
+
## Interactive tutorial
|
|
146
|
+
|
|
147
|
+
- Google Colab tutorial: [pycWB_GW150914.ipynb](https://colab.research.google.com/github/PycWB/pycwb/blob/main/examples/colab/pycWB_GW150914.ipynb)
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PycWB
|
|
3
|
+
Version: 1.0.0a1
|
|
4
|
+
Summary: A Python package for coherent gravitational wave burst analysis
|
|
5
|
+
Author-email: The PycWB team <yumeng.xu@ligo.org>
|
|
6
|
+
License: GPL-3.0-or-later
|
|
7
|
+
Project-URL: Homepage, https://git.ligo.org/yumeng.xu/pycwb
|
|
8
|
+
Project-URL: Documentation, https://pycwb.readthedocs.io
|
|
9
|
+
Keywords: ligo,physics,gravity,signal processing,gravitational waves,cwb,coherent wave burst
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: matplotlib
|
|
14
|
+
Requires-Dist: astropy
|
|
15
|
+
Requires-Dist: pyyaml
|
|
16
|
+
Requires-Dist: jsonschema
|
|
17
|
+
Requires-Dist: watchfiles
|
|
18
|
+
Requires-Dist: numba
|
|
19
|
+
Requires-Dist: jax
|
|
20
|
+
Requires-Dist: gwpy
|
|
21
|
+
Requires-Dist: ligo-segments
|
|
22
|
+
Requires-Dist: ligo-gracedb
|
|
23
|
+
Requires-Dist: aiohttp
|
|
24
|
+
Requires-Dist: filelock
|
|
25
|
+
Requires-Dist: numpy>=2
|
|
26
|
+
Requires-Dist: scipy>=1.13
|
|
27
|
+
Requires-Dist: h5py>=3.11
|
|
28
|
+
Requires-Dist: lalsuite>=7.23
|
|
29
|
+
Requires-Dist: healpy>=1.17
|
|
30
|
+
Requires-Dist: scikit-learn>=1.4.2
|
|
31
|
+
Requires-Dist: pyarrow>=17
|
|
32
|
+
Requires-Dist: pillow>=9.0.0
|
|
33
|
+
Requires-Dist: click
|
|
34
|
+
Requires-Dist: orjson
|
|
35
|
+
Requires-Dist: dacite
|
|
36
|
+
Requires-Dist: cartopy
|
|
37
|
+
Requires-Dist: htcondor
|
|
38
|
+
Requires-Dist: psutil
|
|
39
|
+
Requires-Dist: memspectrum
|
|
40
|
+
Requires-Dist: exceptiongroup>=1.0.0; python_version < "3.11"
|
|
41
|
+
Requires-Dist: python-ligo-lw<2.0.0
|
|
42
|
+
Requires-Dist: jinja2
|
|
43
|
+
Requires-Dist: plotly
|
|
44
|
+
Requires-Dist: wdm-wavelet
|
|
45
|
+
Requires-Dist: burst-waveform
|
|
46
|
+
Requires-Dist: pandas
|
|
47
|
+
Requires-Dist: duckdb
|
|
48
|
+
Requires-Dist: tqdm
|
|
49
|
+
Provides-Extra: pycbc
|
|
50
|
+
Requires-Dist: pycbc; extra == "pycbc"
|
|
51
|
+
Provides-Extra: nds2
|
|
52
|
+
Requires-Dist: python-nds2-client; extra == "nds2"
|
|
53
|
+
Dynamic: license-file
|
|
54
|
+
|
|
55
|
+
# PycWB
|
|
56
|
+
|
|
57
|
+
[](https://pycwb.readthedocs.io)
|
|
58
|
+
[](https://git.ligo.org/yumeng.xu/pycwb/-/pipelines)
|
|
59
|
+
[](https://git.ligo.org/yumeng.xu/pycwb/-/releases)
|
|
60
|
+
[](https://badge.fury.io/py/pycWB)
|
|
61
|
+
[](https://git.ligo.org/yumeng.xu/pycwb/-/blob/main/LICENSE)
|
|
62
|
+
|
|
63
|
+
PycWB is a modularized Python package for gravitational wave burst search based on the core functions of cWB.
|
|
64
|
+
The documentation can be found at [pycwb.readthedocs.io](https://pycwb.readthedocs.io).
|
|
65
|
+
|
|
66
|
+
## Installation
|
|
67
|
+
|
|
68
|
+
### Install PycWB with pip
|
|
69
|
+
|
|
70
|
+
PycWB is available on [PyPI](https://pypi.org/project/pycWB/). You can install it with pip.
|
|
71
|
+
Some dependencies are required before installing `pycwb` with pip.
|
|
72
|
+
The easiest way is to install them with conda.
|
|
73
|
+
|
|
74
|
+
> Python requirement: `>=3.10`
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
conda create -n pycwb python=3.13
|
|
78
|
+
conda activate pycwb
|
|
79
|
+
conda install -c conda-forge root=6 healpix_cxx=3 nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config
|
|
80
|
+
python3 -m pip install pycwb
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
Currently, the ROOT-enabled `pycwb` build is only available for `x86_64` architecture. You can install the pure Python version of `pycwb` without installing ROOT:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
conda create -n pycwb python=3.13
|
|
87
|
+
conda activate pycwb
|
|
88
|
+
conda install -c conda-forge nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config
|
|
89
|
+
python3 -m pip install pycwb
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
For Apple Silicon users, if you need the ROOT version, install dependencies with the following commands:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
# make sure rosetta is installed
|
|
96
|
+
softwareupdate --install-rosetta --agree-to-license
|
|
97
|
+
# Optional: export CONDA_BUILD=1
|
|
98
|
+
conda create -n pycwb_x64
|
|
99
|
+
conda activate pycwb_x64
|
|
100
|
+
conda config --env --set subdir osx-64
|
|
101
|
+
conda install python==3.11 root=6.28 healpix_cxx=3 nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config ruamel.yaml htcondor
|
|
102
|
+
python3 -m pip install pycwb
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
### Install PycWB from source
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
conda create -n pycwb python
|
|
109
|
+
conda activate pycwb
|
|
110
|
+
conda install -c conda-forge root=6 healpix_cxx=3 nds2-client python-nds2-client lalsuite python-ligo-lw setuptools_scm cmake pkg-config
|
|
111
|
+
git clone git@git.ligo.org:yumeng.xu/pycwb.git
|
|
112
|
+
cd pycwb
|
|
113
|
+
python -m pip install .
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
> Again, for Apple Silicon users, if you don't need the ROOT version, remove `root=6` and `healpix_cxx=3` from the dependencies in the command above. The installation process will automatically install the pure Python version of `pycwb`.
|
|
117
|
+
|
|
118
|
+
## Usage
|
|
119
|
+
|
|
120
|
+
Example project can be found in [examples](https://git.ligo.org/yumeng.xu/pycwb/-/tree/main/examples)
|
|
121
|
+
|
|
122
|
+
```python
|
|
123
|
+
from pycwb.workflow.run import search
|
|
124
|
+
|
|
125
|
+
search('./user_parameters.yaml')
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
or run with command line
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
pycwb run ./user_parameters.yaml
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### Verify installation
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
pycwb --version
|
|
138
|
+
pycwb --help
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
### Quick start for config setup
|
|
142
|
+
|
|
143
|
+
For one-command project setup and optional job submission, see [QUICKSTART_CONFIG_SETUP.md](./QUICKSTART_CONFIG_SETUP.md).
|
|
144
|
+
|
|
145
|
+
## Interactive tutorial
|
|
146
|
+
|
|
147
|
+
- Google Colab tutorial: [pycWB_GW150914.ipynb](https://colab.research.google.com/github/PycWB/pycwb/blob/main/examples/colab/pycWB_GW150914.ipynb)
|