PycWB 0.28.0__tar.gz → 0.29.0__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-0.28.0 → pycwb-0.29.0}/PKG-INFO +4 -3
- {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/PKG-INFO +4 -3
- {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/SOURCES.txt +46 -1
- {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/requires.txt +1 -1
- pycwb-0.29.0/benchmark/io_performance/README.md +24 -0
- pycwb-0.29.0/benchmark/io_performance/data_gen.py +378 -0
- pycwb-0.29.0/benchmark/io_performance/parquet_perf.py +353 -0
- pycwb-0.29.0/benchmark/io_performance/parquet_read_perf.py +47 -0
- pycwb-0.29.0/benchmark/io_performance/read_pref.py +11 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/bin/pycwb +6 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/monster.cc +1 -2
- pycwb-0.29.0/examples/colab/notebook_updated/pycWB_GW150914_VScode_adapted.ipynb +522 -0
- pycwb-0.29.0/examples/colab/pycWB_GW150914.ipynb +1500 -0
- pycwb-0.29.0/examples/data_injection/README.md +49 -0
- pycwb-0.29.0/examples/data_injection/injection_parameters.py +24 -0
- pycwb-0.29.0/examples/data_injection/user_parameters.yaml +102 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/injection/pycwb_injection.ipynb +39 -39
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/injection/user_parameters_injection.yaml +3 -1
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/_version.py +2 -2
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/batch_runner.py +10 -1
- pycwb-0.29.0/pycwb/cli/get_external_modules.py +47 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/config/config.py +45 -33
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/user_parameters_schema.py +32 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/coherence.py +1 -1
- pycwb-0.29.0/pycwb/modules/condor/condor.py +167 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/condor/module.yaml +1 -1
- pycwb-0.29.0/pycwb/modules/cwb_xgboost/config.py +330 -0
- pycwb-0.29.0/pycwb/modules/cwb_xgboost/cwb_xgboost.py +43 -0
- pycwb-0.29.0/pycwb/modules/cwb_xgboost/module.yaml +7 -0
- pycwb-0.29.0/pycwb/modules/cwb_xgboost/prediction.py +58 -0
- pycwb-0.29.0/pycwb/modules/cwb_xgboost/read_data.py +105 -0
- pycwb-0.29.0/pycwb/modules/cwb_xgboost/utils.py +73 -0
- pycwb-0.29.0/pycwb/modules/data_conditioning/__init__.py +4 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/data_conditioning/data_conditioning.py +16 -4
- pycwb-0.28.0/pycwb/modules/data_conditioning/whitening.py → pycwb-0.29.0/pycwb/modules/data_conditioning/whitening_cwb.py +2 -2
- pycwb-0.29.0/pycwb/modules/data_conditioning/whitening_mesa.py +177 -0
- pycwb-0.29.0/pycwb/modules/external_module_manager/config_schema.py +35 -0
- pycwb-0.29.0/pycwb/modules/external_module_manager/manager.py +103 -0
- pycwb-0.29.0/pycwb/modules/external_module_manager/test/sample_config.yaml +5 -0
- pycwb-0.29.0/pycwb/modules/external_module_manager/test/test.ipynb +228 -0
- pycwb-0.29.0/pycwb/modules/injection/distribution_utils.py +21 -0
- pycwb-0.29.0/pycwb/modules/injection/injection.py +186 -0
- pycwb-0.29.0/pycwb/modules/injection/module.yaml +4 -0
- pycwb-0.29.0/pycwb/modules/injection/par_generator.py +84 -0
- pycwb-0.29.0/pycwb/modules/injection/scripts/injection_module_test.ipynb +207 -0
- pycwb-0.29.0/pycwb/modules/injection/scripts/injection_parameters.py +39 -0
- pycwb-0.29.0/pycwb/modules/injection/sky_distribution.py +136 -0
- pycwb-0.29.0/pycwb/modules/injection/tests/test_injection.py +50 -0
- pycwb-0.29.0/pycwb/modules/injection/wf_generator.py +23 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/job_segment.py +49 -27
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihood/likelihood.py +8 -8
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/logger/logger.py +15 -8
- pycwb-0.29.0/pycwb/modules/qveto/qveto.py +77 -0
- pycwb-0.29.0/pycwb/modules/qveto/qveto_ext.py +227 -0
- pycwb-0.29.0/pycwb/modules/qveto/utils.py +178 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/mdc.py +78 -141
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/read_data.py +16 -7
- pycwb-0.29.0/pycwb/modules/read_data/tests/test_mdc.py +167 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/reconstruction/getMRAwaveform.py +12 -1
- pycwb-0.29.0/pycwb/modules/slurm/module.yaml +4 -0
- pycwb-0.29.0/pycwb/modules/slurm/slurm.py +85 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/workflow_utils/job_setup.py +30 -27
- pycwb-0.29.0/pycwb/prefect_flow/tasks/__init__.py +0 -0
- pycwb-0.29.0/pycwb/types/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/data_quality_file.py +10 -10
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/job.py +6 -3
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network_event.py +33 -5
- pycwb-0.29.0/pycwb/utils/__init__.py +0 -0
- pycwb-0.29.0/pycwb/utils/conversions/__init__.py +0 -0
- pycwb-0.29.0/pycwb/utils/module.py +96 -0
- pycwb-0.29.0/pycwb/vendor/__init__.py +0 -0
- pycwb-0.29.0/pycwb/vendor/autoencoder/__init__.py +0 -0
- pycwb-0.29.0/pycwb/vendor/lib/__init__.py +0 -0
- pycwb-0.29.0/pycwb/workflow/__init__.py +0 -0
- pycwb-0.29.0/pycwb/workflow/batch.py +127 -0
- pycwb-0.29.0/pycwb/workflow/subflow/fake_processor.py +36 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/subflow/postprocess_and_plots.py +45 -21
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/subflow/prepare_job_runs.py +22 -11
- pycwb-0.29.0/pycwb/workflow/subflow/process_job_segment.py +310 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/setup.py +1 -1
- pycwb-0.28.0/examples/colab/pycWB_GW150914.ipynb +0 -1136
- pycwb-0.28.0/pycwb/modules/condor/condor.py +0 -88
- pycwb-0.28.0/pycwb/modules/data_conditioning/__init__.py +0 -3
- pycwb-0.28.0/pycwb/utils/module.py +0 -25
- pycwb-0.28.0/pycwb/workflow/batch.py +0 -183
- pycwb-0.28.0/pycwb/workflow/subflow/process_job_segment.py +0 -171
- {pycwb-0.28.0 → pycwb-0.29.0}/.gitignore +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/.gitlab-ci.yml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/.readthedocs.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/LICENSE +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/MANIFEST.in +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/Makefile +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/dependency_links.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/top_level.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/README.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/README.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/README.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/generate_data_for_likelihood.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/perf_cuda.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/performance_test_dpf.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/performance_test_opt_sky.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/user_parameters_injection.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/README.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/generate_data.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/generate_data_2.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/performance_supercluster.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/user_parameters_injection.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/bin/pycwb_search +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/bin/pycwb_show +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Biorthogonal.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Biorthogonal.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/CMakeLists.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Daubechies.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Daubechies.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/FourierCoefficients.icc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Haar.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Haar.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/LineFilter.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/LineFilter.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Makefile +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Meyer.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Meyer.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Symlet.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Symlet.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArray.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArray.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArraySSE.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArraySSE.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmObjArray.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmObjArray.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDM.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDM.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDMOverlap.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDMOverlap.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WaveDWT.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WaveDWT.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Wavelet.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Wavelet.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/alm.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/build.sh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cluster.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cluster.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cmake/FindHealpix.cmake +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cmake/FindeBBH.cmake +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cmake/install_function.cmake +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/constants.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/detector.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/detector.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/injection.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/injection.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/lossy.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/lossy.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/monster.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netcluster.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netcluster.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netevent.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netevent.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netpixel.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netpixel.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/network.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/network.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/pycwb.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/rdfr.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/rdfr.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readframe.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readframe.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readfrfile.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readfrfile.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/regression.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/regression.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/skycoord.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/skymap.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/skymap.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/sseries.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/sseries.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/time.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/time.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wat.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watasm.S +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watasm_elf64.o +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watavx.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watbranch.in +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watfun.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wathash.in +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watplot.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watplot.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watsse.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wattag.in +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/waturl.in +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watversion.hh.in +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavearray.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavearray.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecomplex.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecomplex.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecor.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecor.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavefft.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavefft.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavelet_LinkDef.h +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavelinefilter.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavelinefilter.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/waverdc.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/waverdc.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wseries.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wseries.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wslice.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/0.installation_guide.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/1.initialisation_guide.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/2.test_interactive_multistages_2G_analysis.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/3.run_pycwb_with_yaml_config.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/4.py_cwb_inet_2G.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/5.cwb2G_analyse.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/6.wat_codes_notes.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/Makefile +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/diagram.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/make.bat +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/_static/.keep +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/_templates/.keep +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/conf.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/credit.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/index.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/install.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/mod_cwb.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/package.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/schema.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_batch_inj.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_customized_wf_gen.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_injection.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_multi_injection.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_search.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorials.rst +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/workflow.png +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/envs/Dockerfile +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/envs/environment.yml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/envs/mamba/Dockerfile +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/autoencoder/pycwb_injection.ipynb +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/autoencoder/user_parameters_injection.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/generate_parameters.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycbc_inject/hyperbolicTD/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycbc_inject/hyperbolicTD/parameters.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycbc_inject/hyperbolicTD/waveform.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycwb_injection.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/user_parameters_injection.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat0.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat1.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat2.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat4.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat0.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat1.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat2.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat4.txt +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/input/OPBM.period +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/input/OPBM_H1.frames +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/input/OPBM_L1.frames +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/pycwb_mdc.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/user_parameters_mdc.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/gwosc/user_parameters.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/injection/wdmXTalk/OverlapCatalog16-1024.bin +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/lvk_sep_2023/demo.ipynb +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/lvk_sep_2023/user_parameters.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/multiple_injection/pycwb_injection.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/multiple_injection/user_parameters_injection.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/generate_parameters.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/user_parameters_injection.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/waveform_model/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/waveform_model/waveform.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/examples/waveform_reconstruction/reconstruct_waveform_from_cluster.ipynb +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/coherence.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/coherence.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/likelihood.cc +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/likelihood.hh +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/dag/dag.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/dag/dask-prefect.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/dag/prefect_test.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger/server.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger/visualizition.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/.eslintrc.cjs +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/.gitignore +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/.prettierrc.json +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/README.md +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/index.html +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/package-lock.json +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/package.json +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/public/favicon.ico +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/App.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/base.css +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/cwb_icon_modern_blue_alfa.png +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/main.css +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/style.css +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/HelloWorld.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/TheWelcome.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/WelcomeItem.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/__tests__/HelloWorld.spec.js +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconCommunity.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconDocumentation.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconEcosystem.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconSupport.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconTooling.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/main.js +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/router/index.js +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/stores/counter.js +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/drawflow.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/node1.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/node2.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/node3.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/nodeHeader.vue +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/vite.config.js +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/performance/numba_test.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/performance/taichi_test.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/pp_workflow/simple.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/pp_workflow/simple_module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/pp_workflow/workflow.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/search.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/batch_setup.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/flow.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/gwosc.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/merge_catalog.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/post_process.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/run.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/server.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/xtalk.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/config/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/detectors.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/physics_constants.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/project_constants.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/autoencoder.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/cwb_autoencoder.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/catalog/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/catalog/catalog.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/catalog/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/coherence_lite.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/condor/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/cluster.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/pixel.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/series.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/sparse_series.py +0 -0
- {pycwb-0.28.0/pycwb/modules/energy_threshold → pycwb-0.29.0/pycwb/modules/cwb_xgboost}/__init__.py +0 -0
- /pycwb-0.28.0/pycwb/modules/gwosc/__init__.py → /pycwb-0.29.0/pycwb/modules/cwb_xgboost/training.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/data_conditioning/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/data_conditioning/regression.py +0 -0
- {pycwb-0.28.0/pycwb/modules/likelihoodWP → pycwb-0.29.0/pycwb/modules/energy_threshold}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/energy_threshold/threshold.py +0 -0
- {pycwb-0.28.0/pycwb/modules/plot_map → pycwb-0.29.0/pycwb/modules/external_module_manager}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/gracedb.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/test_gracedb.py +0 -0
- {pycwb-0.28.0/pycwb/modules/report → pycwb-0.29.0/pycwb/modules/gwosc}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gwosc/gwosc.py +0 -0
- {pycwb-0.28.0/pycwb/modules/statistics → pycwb-0.29.0/pycwb/modules/injection}/__init__.py +0 -0
- {pycwb-0.28.0/pycwb/modules/supercluster_naive → pycwb-0.29.0/pycwb/modules/injection/tests}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/dq_segment.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/frame.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/plots.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/super_lag.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/test_job_segment.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihood/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihood/module.yaml +0 -0
- {pycwb-0.28.0/pycwb/modules/web_viewer → pycwb-0.29.0/pycwb/modules/likelihoodWP}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/dpf.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/dpf_cython.pyx +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/likelihood.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/sky_stat.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/utils.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/logger/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/logger/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/multi_resolution_wdm/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/multi_resolution_wdm/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/multi_resolution_wdm/wdm.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/cluster_statistics.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/event.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/spectrogram.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/waveform.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_data_quality/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_data_quality/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_data_quality/plot.py +0 -0
- {pycwb-0.28.0/pycwb/modules/workflow_utils → pycwb-0.29.0/pycwb/modules/plot_map}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_map/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_map/world_map.py +0 -0
- {pycwb-0.28.0/pycwb/modules/xtalk → pycwb-0.29.0/pycwb/modules/qveto}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/data_check.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/data_find.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/module.yaml +0 -0
- {pycwb-0.28.0/pycwb/post_production → pycwb-0.29.0/pycwb/modules/read_data/tests}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/reconstruction/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/reconstruction/module.yaml +0 -0
- {pycwb-0.28.0/pycwb/prefect_flow → pycwb-0.29.0/pycwb/modules/report}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/continues_poisson.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/far_rho.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/read_results.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/report.py +0 -0
- {pycwb-0.28.0/pycwb/prefect_flow/tasks → pycwb-0.29.0/pycwb/modules/slurm}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/sparse_series/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/sparse_series/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/sparse_series/sparse_table.py +0 -0
- {pycwb-0.28.0/pycwb/types → pycwb-0.29.0/pycwb/modules/statistics}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/eff.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/eff_plot.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/merge.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/sigmoid_fit.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/sub_net_cut.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/super_cluster.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/supercluster.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/utils.py +0 -0
- {pycwb-0.28.0/pycwb/utils → pycwb-0.29.0/pycwb/modules/supercluster_naive}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/supercluster_naive/supercluster2.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/superlag/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/superlag/module.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/superlag/superlag.py +0 -0
- {pycwb-0.28.0/pycwb/utils/conversions → pycwb-0.29.0/pycwb/modules/web_viewer}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/web_viewer/create.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/web_viewer/module.yaml +0 -0
- {pycwb-0.28.0/pycwb/vendor → pycwb-0.29.0/pycwb/modules/workflow_utils}/__init__.py +0 -0
- {pycwb-0.28.0/pycwb/vendor/autoencoder → pycwb-0.29.0/pycwb/modules/xtalk}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/xtalk/monster.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/xtalk/monster_old.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/xtalk/xtalk_data.py +0 -0
- {pycwb-0.28.0/pycwb/vendor/lib → pycwb-0.29.0/pycwb/post_production}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/post_production/workflow.py +0 -0
- {pycwb-0.28.0/pycwb/workflow → pycwb-0.29.0/pycwb/prefect_flow}/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/prefect_flow/pycwb_flow.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/prefect_flow/tasks/builtin.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/detector.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network_cluster.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network_pixel.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/sparse_series.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/time_frequency_series.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/wdm.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/wdm_xtalk.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/async_write.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/check_ROOT.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/conversions/timeseries.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/dataclass_object_io.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/dep_check.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/generate_params_table.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/image.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/network.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/parser.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/skymap_coord.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/yaml_helper.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/autoencoder/cwb_autoencoder.h5 +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/example.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/template/gwosc/user_parameters.yaml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/web_viewer/event_dump.html +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/web_viewer/styles.css +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/web_viewer/viewer.html +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/merge.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/run.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/subflow/__init__.py +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/pyproject.toml +0 -0
- {pycwb-0.28.0 → pycwb-0.29.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PycWB
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.29.0
|
|
4
4
|
Summary: A Python package for coherent gravitational wave burst analysis
|
|
5
5
|
Home-page: https://git.ligo.org/yumeng.xu/pycwb
|
|
6
6
|
Author-email: The PycWB team <yumeng.xu@ligo.org>
|
|
@@ -20,7 +20,7 @@ Requires-Dist: ligo-segments
|
|
|
20
20
|
Requires-Dist: aiohttp
|
|
21
21
|
Requires-Dist: pycbc
|
|
22
22
|
Requires-Dist: filelock
|
|
23
|
-
Requires-Dist: scipy
|
|
23
|
+
Requires-Dist: scipy<1.14
|
|
24
24
|
Requires-Dist: pillow>=9.0.0
|
|
25
25
|
Requires-Dist: click
|
|
26
26
|
Requires-Dist: orjson
|
|
@@ -35,6 +35,7 @@ Requires-Dist: psutil
|
|
|
35
35
|
Dynamic: description
|
|
36
36
|
Dynamic: description-content-type
|
|
37
37
|
Dynamic: home-page
|
|
38
|
+
Dynamic: license-file
|
|
38
39
|
Dynamic: requires-dist
|
|
39
40
|
|
|
40
41
|
# PycWB
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: PycWB
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.29.0
|
|
4
4
|
Summary: A Python package for coherent gravitational wave burst analysis
|
|
5
5
|
Home-page: https://git.ligo.org/yumeng.xu/pycwb
|
|
6
6
|
Author-email: The PycWB team <yumeng.xu@ligo.org>
|
|
@@ -20,7 +20,7 @@ Requires-Dist: ligo-segments
|
|
|
20
20
|
Requires-Dist: aiohttp
|
|
21
21
|
Requires-Dist: pycbc
|
|
22
22
|
Requires-Dist: filelock
|
|
23
|
-
Requires-Dist: scipy
|
|
23
|
+
Requires-Dist: scipy<1.14
|
|
24
24
|
Requires-Dist: pillow>=9.0.0
|
|
25
25
|
Requires-Dist: click
|
|
26
26
|
Requires-Dist: orjson
|
|
@@ -35,6 +35,7 @@ Requires-Dist: psutil
|
|
|
35
35
|
Dynamic: description
|
|
36
36
|
Dynamic: description-content-type
|
|
37
37
|
Dynamic: home-page
|
|
38
|
+
Dynamic: license-file
|
|
38
39
|
Dynamic: requires-dist
|
|
39
40
|
|
|
40
41
|
# PycWB
|
|
@@ -13,6 +13,11 @@ PycWB.egg-info/dependency_links.txt
|
|
|
13
13
|
PycWB.egg-info/requires.txt
|
|
14
14
|
PycWB.egg-info/top_level.txt
|
|
15
15
|
benchmark/README.md
|
|
16
|
+
benchmark/io_performance/README.md
|
|
17
|
+
benchmark/io_performance/data_gen.py
|
|
18
|
+
benchmark/io_performance/parquet_perf.py
|
|
19
|
+
benchmark/io_performance/parquet_read_perf.py
|
|
20
|
+
benchmark/io_performance/read_pref.py
|
|
16
21
|
benchmark/likelihood/README.md
|
|
17
22
|
benchmark/likelihood/generate_data_for_likelihood.py
|
|
18
23
|
benchmark/likelihood/perf_cuda.py
|
|
@@ -176,6 +181,10 @@ examples/benchmark/input/OPBM.period
|
|
|
176
181
|
examples/benchmark/input/OPBM_H1.frames
|
|
177
182
|
examples/benchmark/input/OPBM_L1.frames
|
|
178
183
|
examples/colab/pycWB_GW150914.ipynb
|
|
184
|
+
examples/colab/notebook_updated/pycWB_GW150914_VScode_adapted.ipynb
|
|
185
|
+
examples/data_injection/README.md
|
|
186
|
+
examples/data_injection/injection_parameters.py
|
|
187
|
+
examples/data_injection/user_parameters.yaml
|
|
179
188
|
examples/gwosc/user_parameters.yaml
|
|
180
189
|
examples/injection/pycwb_injection.ipynb
|
|
181
190
|
examples/injection/user_parameters_injection.yaml
|
|
@@ -242,6 +251,7 @@ pycwb/cli/__init__.py
|
|
|
242
251
|
pycwb/cli/batch_runner.py
|
|
243
252
|
pycwb/cli/batch_setup.py
|
|
244
253
|
pycwb/cli/flow.py
|
|
254
|
+
pycwb/cli/get_external_modules.py
|
|
245
255
|
pycwb/cli/gwosc.py
|
|
246
256
|
pycwb/cli/merge_catalog.py
|
|
247
257
|
pycwb/cli/post_process.py
|
|
@@ -276,19 +286,44 @@ pycwb/modules/cwb_conversions/module.yaml
|
|
|
276
286
|
pycwb/modules/cwb_conversions/pixel.py
|
|
277
287
|
pycwb/modules/cwb_conversions/series.py
|
|
278
288
|
pycwb/modules/cwb_conversions/sparse_series.py
|
|
289
|
+
pycwb/modules/cwb_xgboost/__init__.py
|
|
290
|
+
pycwb/modules/cwb_xgboost/config.py
|
|
291
|
+
pycwb/modules/cwb_xgboost/cwb_xgboost.py
|
|
292
|
+
pycwb/modules/cwb_xgboost/module.yaml
|
|
293
|
+
pycwb/modules/cwb_xgboost/prediction.py
|
|
294
|
+
pycwb/modules/cwb_xgboost/read_data.py
|
|
295
|
+
pycwb/modules/cwb_xgboost/training.py
|
|
296
|
+
pycwb/modules/cwb_xgboost/utils.py
|
|
279
297
|
pycwb/modules/data_conditioning/__init__.py
|
|
280
298
|
pycwb/modules/data_conditioning/data_conditioning.py
|
|
281
299
|
pycwb/modules/data_conditioning/module.yaml
|
|
282
300
|
pycwb/modules/data_conditioning/regression.py
|
|
283
|
-
pycwb/modules/data_conditioning/
|
|
301
|
+
pycwb/modules/data_conditioning/whitening_cwb.py
|
|
302
|
+
pycwb/modules/data_conditioning/whitening_mesa.py
|
|
284
303
|
pycwb/modules/energy_threshold/__init__.py
|
|
285
304
|
pycwb/modules/energy_threshold/threshold.py
|
|
305
|
+
pycwb/modules/external_module_manager/__init__.py
|
|
306
|
+
pycwb/modules/external_module_manager/config_schema.py
|
|
307
|
+
pycwb/modules/external_module_manager/manager.py
|
|
308
|
+
pycwb/modules/external_module_manager/test/sample_config.yaml
|
|
309
|
+
pycwb/modules/external_module_manager/test/test.ipynb
|
|
286
310
|
pycwb/modules/gracedb/__init__.py
|
|
287
311
|
pycwb/modules/gracedb/gracedb.py
|
|
288
312
|
pycwb/modules/gracedb/module.yaml
|
|
289
313
|
pycwb/modules/gracedb/test_gracedb.py
|
|
290
314
|
pycwb/modules/gwosc/__init__.py
|
|
291
315
|
pycwb/modules/gwosc/gwosc.py
|
|
316
|
+
pycwb/modules/injection/__init__.py
|
|
317
|
+
pycwb/modules/injection/distribution_utils.py
|
|
318
|
+
pycwb/modules/injection/injection.py
|
|
319
|
+
pycwb/modules/injection/module.yaml
|
|
320
|
+
pycwb/modules/injection/par_generator.py
|
|
321
|
+
pycwb/modules/injection/sky_distribution.py
|
|
322
|
+
pycwb/modules/injection/wf_generator.py
|
|
323
|
+
pycwb/modules/injection/scripts/injection_module_test.ipynb
|
|
324
|
+
pycwb/modules/injection/scripts/injection_parameters.py
|
|
325
|
+
pycwb/modules/injection/tests/__init__.py
|
|
326
|
+
pycwb/modules/injection/tests/test_injection.py
|
|
292
327
|
pycwb/modules/job_segment/__init__.py
|
|
293
328
|
pycwb/modules/job_segment/dq_segment.py
|
|
294
329
|
pycwb/modules/job_segment/frame.py
|
|
@@ -324,12 +359,18 @@ pycwb/modules/plot_data_quality/plot.py
|
|
|
324
359
|
pycwb/modules/plot_map/__init__.py
|
|
325
360
|
pycwb/modules/plot_map/module.yaml
|
|
326
361
|
pycwb/modules/plot_map/world_map.py
|
|
362
|
+
pycwb/modules/qveto/__init__.py
|
|
363
|
+
pycwb/modules/qveto/qveto.py
|
|
364
|
+
pycwb/modules/qveto/qveto_ext.py
|
|
365
|
+
pycwb/modules/qveto/utils.py
|
|
327
366
|
pycwb/modules/read_data/__init__.py
|
|
328
367
|
pycwb/modules/read_data/data_check.py
|
|
329
368
|
pycwb/modules/read_data/data_find.py
|
|
330
369
|
pycwb/modules/read_data/mdc.py
|
|
331
370
|
pycwb/modules/read_data/module.yaml
|
|
332
371
|
pycwb/modules/read_data/read_data.py
|
|
372
|
+
pycwb/modules/read_data/tests/__init__.py
|
|
373
|
+
pycwb/modules/read_data/tests/test_mdc.py
|
|
333
374
|
pycwb/modules/reconstruction/__init__.py
|
|
334
375
|
pycwb/modules/reconstruction/getMRAwaveform.py
|
|
335
376
|
pycwb/modules/reconstruction/module.yaml
|
|
@@ -338,6 +379,9 @@ pycwb/modules/report/continues_poisson.py
|
|
|
338
379
|
pycwb/modules/report/far_rho.py
|
|
339
380
|
pycwb/modules/report/read_results.py
|
|
340
381
|
pycwb/modules/report/report.py
|
|
382
|
+
pycwb/modules/slurm/__init__.py
|
|
383
|
+
pycwb/modules/slurm/module.yaml
|
|
384
|
+
pycwb/modules/slurm/slurm.py
|
|
341
385
|
pycwb/modules/sparse_series/__init__.py
|
|
342
386
|
pycwb/modules/sparse_series/module.yaml
|
|
343
387
|
pycwb/modules/sparse_series/sparse_table.py
|
|
@@ -412,6 +456,7 @@ pycwb/workflow/batch.py
|
|
|
412
456
|
pycwb/workflow/merge.py
|
|
413
457
|
pycwb/workflow/run.py
|
|
414
458
|
pycwb/workflow/subflow/__init__.py
|
|
459
|
+
pycwb/workflow/subflow/fake_processor.py
|
|
415
460
|
pycwb/workflow/subflow/postprocess_and_plots.py
|
|
416
461
|
pycwb/workflow/subflow/prepare_job_runs.py
|
|
417
462
|
pycwb/workflow/subflow/process_job_segment.py
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Code for testing the orjson performance
|
|
2
|
+
|
|
3
|
+
This is a simple benchmark to test the performance of the orjson library.
|
|
4
|
+
|
|
5
|
+
To generate the data, run the following command:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
python data_gen.py
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
To run the benchmark, run the following command:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
python read_perf.py
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
Results for 1M events on CIT
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
Time taken to read from file: 46.73175929673016
|
|
22
|
+
Time taken to read from file: 36.13206199463457
|
|
23
|
+
Time taken to read from file: 36.519760328345
|
|
24
|
+
```
|
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
import random
|
|
2
|
+
from time import perf_counter
|
|
3
|
+
n_jobs = 60000
|
|
4
|
+
n_events = 1e6
|
|
5
|
+
|
|
6
|
+
start_time = perf_counter()
|
|
7
|
+
|
|
8
|
+
sample_event = [{
|
|
9
|
+
"nevent": 1,
|
|
10
|
+
"ndim": 2,
|
|
11
|
+
"run": 0,
|
|
12
|
+
"rho": [
|
|
13
|
+
random.randint(10, 100),
|
|
14
|
+
random.randint(10, 100)
|
|
15
|
+
],
|
|
16
|
+
"netcc": [
|
|
17
|
+
0,
|
|
18
|
+
0,
|
|
19
|
+
0
|
|
20
|
+
],
|
|
21
|
+
"neted": [
|
|
22
|
+
0,
|
|
23
|
+
0,
|
|
24
|
+
0,
|
|
25
|
+
0,
|
|
26
|
+
0
|
|
27
|
+
],
|
|
28
|
+
"gnet": random.randint(0, 100),
|
|
29
|
+
"anet": random.randint(0, 100),
|
|
30
|
+
"inet": 0.0,
|
|
31
|
+
"ecor": 779.2445068359375,
|
|
32
|
+
"norm": 6.138232707977295,
|
|
33
|
+
"ECOR": 0.0,
|
|
34
|
+
"penalty": 0,
|
|
35
|
+
"likelihood": 785.892578125,
|
|
36
|
+
"factor": 0.0,
|
|
37
|
+
"range": [
|
|
38
|
+
0
|
|
39
|
+
],
|
|
40
|
+
"chirp": [
|
|
41
|
+
0,
|
|
42
|
+
24.399999618530273,
|
|
43
|
+
1.4213848114013672,
|
|
44
|
+
0.9872614741325378,
|
|
45
|
+
0.845714271068573,
|
|
46
|
+
0.8970630168914795
|
|
47
|
+
],
|
|
48
|
+
"eBBH": [],
|
|
49
|
+
"usize": 0.0,
|
|
50
|
+
"ifo_list": [],
|
|
51
|
+
"eventID": [
|
|
52
|
+
1,
|
|
53
|
+
0
|
|
54
|
+
],
|
|
55
|
+
"type": [
|
|
56
|
+
1
|
|
57
|
+
],
|
|
58
|
+
"name": [],
|
|
59
|
+
"log": [],
|
|
60
|
+
"rate": [
|
|
61
|
+
0,
|
|
62
|
+
0
|
|
63
|
+
],
|
|
64
|
+
"volume": [
|
|
65
|
+
432,
|
|
66
|
+
178
|
|
67
|
+
],
|
|
68
|
+
"size": [
|
|
69
|
+
random.randint(10, 100),
|
|
70
|
+
random.randint(10, 100)
|
|
71
|
+
],
|
|
72
|
+
"gap": [
|
|
73
|
+
0,
|
|
74
|
+
0
|
|
75
|
+
],
|
|
76
|
+
"lag": [
|
|
77
|
+
0.0,
|
|
78
|
+
0.0,
|
|
79
|
+
0.0,
|
|
80
|
+
0.0
|
|
81
|
+
],
|
|
82
|
+
"slag": [
|
|
83
|
+
0,
|
|
84
|
+
0,
|
|
85
|
+
0
|
|
86
|
+
],
|
|
87
|
+
"strain": [
|
|
88
|
+
6.880148223850065e-44
|
|
89
|
+
],
|
|
90
|
+
"phi": [
|
|
91
|
+
257.34375,
|
|
92
|
+
0,
|
|
93
|
+
38.66607516538352,
|
|
94
|
+
259.453125
|
|
95
|
+
],
|
|
96
|
+
"theta": [
|
|
97
|
+
random.randint(10, 100),
|
|
98
|
+
0,
|
|
99
|
+
random.randint(10, 100),
|
|
100
|
+
49.37981414794922
|
|
101
|
+
],
|
|
102
|
+
"psi": [
|
|
103
|
+
0.0
|
|
104
|
+
],
|
|
105
|
+
"iota": [
|
|
106
|
+
0.0
|
|
107
|
+
],
|
|
108
|
+
"bp": [
|
|
109
|
+
0.6385361548699656,
|
|
110
|
+
-0.6341107153528613
|
|
111
|
+
],
|
|
112
|
+
"bx": [
|
|
113
|
+
-0.7364173133789823,
|
|
114
|
+
0.7327122618773034
|
|
115
|
+
],
|
|
116
|
+
"time": [
|
|
117
|
+
1126259595.6280518,
|
|
118
|
+
1126259595.6281734
|
|
119
|
+
],
|
|
120
|
+
"gps": [
|
|
121
|
+
1126259253.0,
|
|
122
|
+
1126259253.0
|
|
123
|
+
],
|
|
124
|
+
"right": [
|
|
125
|
+
76.75,
|
|
126
|
+
76.75
|
|
127
|
+
],
|
|
128
|
+
"left": [
|
|
129
|
+
342.25,
|
|
130
|
+
342.25
|
|
131
|
+
],
|
|
132
|
+
"duration": [
|
|
133
|
+
0.04741816414320488,
|
|
134
|
+
1.0
|
|
135
|
+
],
|
|
136
|
+
"start": [
|
|
137
|
+
1126259595.25,
|
|
138
|
+
1126259595.25
|
|
139
|
+
],
|
|
140
|
+
"stop": [
|
|
141
|
+
1126259596.25,
|
|
142
|
+
1126259596.25
|
|
143
|
+
],
|
|
144
|
+
"frequency": [
|
|
145
|
+
149.12086486816406,
|
|
146
|
+
116.93898770299204
|
|
147
|
+
],
|
|
148
|
+
"low": [
|
|
149
|
+
28.0,
|
|
150
|
+
28.0
|
|
151
|
+
],
|
|
152
|
+
"high": [
|
|
153
|
+
416.0,
|
|
154
|
+
416.0
|
|
155
|
+
],
|
|
156
|
+
"bandwidth": [
|
|
157
|
+
83.89502942724967,
|
|
158
|
+
388.0
|
|
159
|
+
],
|
|
160
|
+
"hrss": [
|
|
161
|
+
1.8618007566313623e-22,
|
|
162
|
+
1.8476596457294163e-22
|
|
163
|
+
],
|
|
164
|
+
"noise": [
|
|
165
|
+
0.0078125,
|
|
166
|
+
9.809437292968938e-24
|
|
167
|
+
],
|
|
168
|
+
"erA": [],
|
|
169
|
+
"Psm": [],
|
|
170
|
+
"null": [
|
|
171
|
+
36.03498458862305,
|
|
172
|
+
28.38075065612793
|
|
173
|
+
],
|
|
174
|
+
"nill": [
|
|
175
|
+
27.054473876953125,
|
|
176
|
+
16.872833251953125
|
|
177
|
+
],
|
|
178
|
+
"mass": [],
|
|
179
|
+
"spin": [],
|
|
180
|
+
"snr": [
|
|
181
|
+
411.7388610839844,
|
|
182
|
+
464.72845458984375
|
|
183
|
+
],
|
|
184
|
+
"xSNR": [
|
|
185
|
+
382.6258544921875,
|
|
186
|
+
447.1940612792969
|
|
187
|
+
],
|
|
188
|
+
"sSNR": [
|
|
189
|
+
355.5713806152344,
|
|
190
|
+
430.32122802734375
|
|
191
|
+
],
|
|
192
|
+
"iSNR": [],
|
|
193
|
+
"oSNR": [],
|
|
194
|
+
"ioSNR": [],
|
|
195
|
+
"Deff": [],
|
|
196
|
+
"injection": {
|
|
197
|
+
"mass1": 30,
|
|
198
|
+
"mass2": 20,
|
|
199
|
+
"spin1z": 0,
|
|
200
|
+
"spin2z": 0,
|
|
201
|
+
"distance": 500,
|
|
202
|
+
"inclination": 0.38915451612735563,
|
|
203
|
+
"polarization": 1.140241362410411,
|
|
204
|
+
"coa_phase": 0,
|
|
205
|
+
"t_start": -2,
|
|
206
|
+
"t_end": 0.5,
|
|
207
|
+
"ra": 117.29125184362876,
|
|
208
|
+
"dec": -16.65142046281714,
|
|
209
|
+
"gps_time": 1126259595.6808321,
|
|
210
|
+
"trail_idx": 0,
|
|
211
|
+
"start_time": 1126259593.6808321,
|
|
212
|
+
"end_time": 1126259596.1808321,
|
|
213
|
+
"approximant": "IMRPhenomXPHM",
|
|
214
|
+
"delta_t": 0.00006103515625,
|
|
215
|
+
"f_lower": 16.0
|
|
216
|
+
},
|
|
217
|
+
"job_id": 2
|
|
218
|
+
} for _ in range(int(n_events))]
|
|
219
|
+
|
|
220
|
+
print(f"Time taken to generate events: {perf_counter() - start_time}")
|
|
221
|
+
|
|
222
|
+
start_time = perf_counter()
|
|
223
|
+
sample_job = [{
|
|
224
|
+
"index": index,
|
|
225
|
+
"ifos": [
|
|
226
|
+
"L1",
|
|
227
|
+
"H1"
|
|
228
|
+
],
|
|
229
|
+
"start_time": start_time,
|
|
230
|
+
"end_time": start_time + 4096,
|
|
231
|
+
"sample_rate": 16384,
|
|
232
|
+
"seg_edge": 10,
|
|
233
|
+
"shift": None,
|
|
234
|
+
"channels": [
|
|
235
|
+
"L1:GWOSC-4KHZ_R1_STRAIN",
|
|
236
|
+
"H1:GWOSC-4KHZ_R1_STRAIN"
|
|
237
|
+
],
|
|
238
|
+
"frames": [
|
|
239
|
+
{
|
|
240
|
+
"ifo": "L1",
|
|
241
|
+
"path": "./input/frames/L1_frames/L-L1_GWOSC_4KHZ_R1-1126257415-4096.gwf",
|
|
242
|
+
"start_time": start_time,
|
|
243
|
+
"duration": 4096
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"ifo": "H1",
|
|
247
|
+
"path": "./input/frames/H1_frames/H-H1_GWOSC_4KHZ_R1-1126257415-4096.gwf",
|
|
248
|
+
"start_time": start_time,
|
|
249
|
+
"duration": 4096
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"noise": None,
|
|
253
|
+
"injections": [
|
|
254
|
+
{
|
|
255
|
+
"mass1": random.randint(10, 50),
|
|
256
|
+
"mass2": random.randint(10, 50),
|
|
257
|
+
"spin1z": 0,
|
|
258
|
+
"spin2z": 0,
|
|
259
|
+
"distance": 500,
|
|
260
|
+
"inclination": 0.7398940058902834,
|
|
261
|
+
"polarization": 2.075067879167926,
|
|
262
|
+
"coa_phase": 0,
|
|
263
|
+
"t_start": -2,
|
|
264
|
+
"t_end": 0.5,
|
|
265
|
+
"ra": 88.10490293781076,
|
|
266
|
+
"dec": 5.552833857492445,
|
|
267
|
+
"gps_time": 1126258958.353076,
|
|
268
|
+
"trail_idx": 0,
|
|
269
|
+
"start_time": 1126258956.353076,
|
|
270
|
+
"end_time": 1126258958.853076
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"mass1": random.randint(10, 50),
|
|
274
|
+
"mass2": random.randint(10, 50),
|
|
275
|
+
"spin1z": 0,
|
|
276
|
+
"spin2z": 0,
|
|
277
|
+
"distance": 500,
|
|
278
|
+
"inclination": 1.5264970455989935,
|
|
279
|
+
"polarization": 5.314055176762984,
|
|
280
|
+
"coa_phase": 0,
|
|
281
|
+
"t_start": -2,
|
|
282
|
+
"t_end": 0.5,
|
|
283
|
+
"ra": 180.56665839632885,
|
|
284
|
+
"dec": 33.499932631513005,
|
|
285
|
+
"gps_time": 1126258974.8114996,
|
|
286
|
+
"trail_idx": 1,
|
|
287
|
+
"start_time": 1126258972.8114996,
|
|
288
|
+
"end_time": 1126258975.3114996
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"mass1": 30,
|
|
292
|
+
"mass2": 20,
|
|
293
|
+
"spin1z": 0,
|
|
294
|
+
"spin2z": 0,
|
|
295
|
+
"distance": 500,
|
|
296
|
+
"inclination": 1.1398165180527853,
|
|
297
|
+
"polarization": 3.650515995932227,
|
|
298
|
+
"coa_phase": 0,
|
|
299
|
+
"t_start": -2,
|
|
300
|
+
"t_end": 0.5,
|
|
301
|
+
"ra": 339.56772904070647,
|
|
302
|
+
"dec": -16.653710106043892,
|
|
303
|
+
"gps_time": 1126259148.1039732,
|
|
304
|
+
"trail_idx": 0,
|
|
305
|
+
"start_time": 1126259146.1039732,
|
|
306
|
+
"end_time": 1126259148.6039732
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"mass1": 30,
|
|
310
|
+
"mass2": 20,
|
|
311
|
+
"spin1z": 0,
|
|
312
|
+
"spin2z": 0,
|
|
313
|
+
"distance": 500,
|
|
314
|
+
"inclination": 3.086063534554786,
|
|
315
|
+
"polarization": 0.1691368327017097,
|
|
316
|
+
"coa_phase": 0,
|
|
317
|
+
"t_start": -2,
|
|
318
|
+
"t_end": 0.5,
|
|
319
|
+
"ra": 5.16541812779769,
|
|
320
|
+
"dec": -19.671364176272075,
|
|
321
|
+
"gps_time": 1126259167.123404,
|
|
322
|
+
"trail_idx": 1,
|
|
323
|
+
"start_time": 1126259165.123404,
|
|
324
|
+
"end_time": 1126259167.623404
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"trail_idx": random.randint(0, 10),
|
|
328
|
+
} for start_time in range(1126258863, 1126259263, n_jobs) for index in range(n_jobs)]
|
|
329
|
+
|
|
330
|
+
print(f"Time taken to generate jobs: {perf_counter() - start_time}")
|
|
331
|
+
|
|
332
|
+
generated_output = {
|
|
333
|
+
"config": {},
|
|
334
|
+
"jobs": sample_job,
|
|
335
|
+
"events": sample_event
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
# save as compressed json
|
|
339
|
+
|
|
340
|
+
import orjson
|
|
341
|
+
import gzip
|
|
342
|
+
|
|
343
|
+
start_time = perf_counter()
|
|
344
|
+
with gzip.open("data.json.gz", 'wb') as f:
|
|
345
|
+
f.write(orjson.dumps(generated_output, option=orjson.OPT_SERIALIZE_NUMPY))
|
|
346
|
+
|
|
347
|
+
print(f"Time taken to write to file: {perf_counter() - start_time}")
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
# save as parquet
|
|
351
|
+
import pyarrow as pa
|
|
352
|
+
import pyarrow.parquet as pq
|
|
353
|
+
|
|
354
|
+
# Parquet write test
|
|
355
|
+
start_time = perf_counter()
|
|
356
|
+
|
|
357
|
+
# Convert data to Arrow Tables
|
|
358
|
+
jobs_table = pa.Table.from_pylist(sample_job)
|
|
359
|
+
events_table = pa.Table.from_pylist(sample_event)
|
|
360
|
+
|
|
361
|
+
# Write to Parquet files
|
|
362
|
+
pq.write_table(jobs_table, 'jobs.parquet')
|
|
363
|
+
pq.write_table(events_table, 'events.parquet')
|
|
364
|
+
|
|
365
|
+
print(f"Time taken to write Parquet files: {perf_counter() - start_time}")
|
|
366
|
+
|
|
367
|
+
# Parquet read test
|
|
368
|
+
start_time = perf_counter()
|
|
369
|
+
|
|
370
|
+
# Read from Parquet files
|
|
371
|
+
jobs_table = pq.read_table('jobs.parquet')
|
|
372
|
+
events_table = pq.read_table('events.parquet')
|
|
373
|
+
|
|
374
|
+
# Convert back to Python objects if needed (optional)
|
|
375
|
+
# jobs_data = jobs_table.to_pylist()
|
|
376
|
+
# events_data = events_table.to_pylist()
|
|
377
|
+
|
|
378
|
+
print(f"Time taken to read Parquet files: {perf_counter() - start_time}")
|