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.
Files changed (470) hide show
  1. {pycwb-0.28.0 → pycwb-0.29.0}/PKG-INFO +4 -3
  2. {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/PKG-INFO +4 -3
  3. {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/SOURCES.txt +46 -1
  4. {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/requires.txt +1 -1
  5. pycwb-0.29.0/benchmark/io_performance/README.md +24 -0
  6. pycwb-0.29.0/benchmark/io_performance/data_gen.py +378 -0
  7. pycwb-0.29.0/benchmark/io_performance/parquet_perf.py +353 -0
  8. pycwb-0.29.0/benchmark/io_performance/parquet_read_perf.py +47 -0
  9. pycwb-0.29.0/benchmark/io_performance/read_pref.py +11 -0
  10. {pycwb-0.28.0 → pycwb-0.29.0}/bin/pycwb +6 -0
  11. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/monster.cc +1 -2
  12. pycwb-0.29.0/examples/colab/notebook_updated/pycWB_GW150914_VScode_adapted.ipynb +522 -0
  13. pycwb-0.29.0/examples/colab/pycWB_GW150914.ipynb +1500 -0
  14. pycwb-0.29.0/examples/data_injection/README.md +49 -0
  15. pycwb-0.29.0/examples/data_injection/injection_parameters.py +24 -0
  16. pycwb-0.29.0/examples/data_injection/user_parameters.yaml +102 -0
  17. {pycwb-0.28.0 → pycwb-0.29.0}/examples/injection/pycwb_injection.ipynb +39 -39
  18. {pycwb-0.28.0 → pycwb-0.29.0}/examples/injection/user_parameters_injection.yaml +3 -1
  19. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/_version.py +2 -2
  20. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/batch_runner.py +10 -1
  21. pycwb-0.29.0/pycwb/cli/get_external_modules.py +47 -0
  22. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/config/config.py +45 -33
  23. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/user_parameters_schema.py +32 -0
  24. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/coherence.py +1 -1
  25. pycwb-0.29.0/pycwb/modules/condor/condor.py +167 -0
  26. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/condor/module.yaml +1 -1
  27. pycwb-0.29.0/pycwb/modules/cwb_xgboost/config.py +330 -0
  28. pycwb-0.29.0/pycwb/modules/cwb_xgboost/cwb_xgboost.py +43 -0
  29. pycwb-0.29.0/pycwb/modules/cwb_xgboost/module.yaml +7 -0
  30. pycwb-0.29.0/pycwb/modules/cwb_xgboost/prediction.py +58 -0
  31. pycwb-0.29.0/pycwb/modules/cwb_xgboost/read_data.py +105 -0
  32. pycwb-0.29.0/pycwb/modules/cwb_xgboost/utils.py +73 -0
  33. pycwb-0.29.0/pycwb/modules/data_conditioning/__init__.py +4 -0
  34. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/data_conditioning/data_conditioning.py +16 -4
  35. pycwb-0.28.0/pycwb/modules/data_conditioning/whitening.py → pycwb-0.29.0/pycwb/modules/data_conditioning/whitening_cwb.py +2 -2
  36. pycwb-0.29.0/pycwb/modules/data_conditioning/whitening_mesa.py +177 -0
  37. pycwb-0.29.0/pycwb/modules/external_module_manager/config_schema.py +35 -0
  38. pycwb-0.29.0/pycwb/modules/external_module_manager/manager.py +103 -0
  39. pycwb-0.29.0/pycwb/modules/external_module_manager/test/sample_config.yaml +5 -0
  40. pycwb-0.29.0/pycwb/modules/external_module_manager/test/test.ipynb +228 -0
  41. pycwb-0.29.0/pycwb/modules/injection/distribution_utils.py +21 -0
  42. pycwb-0.29.0/pycwb/modules/injection/injection.py +186 -0
  43. pycwb-0.29.0/pycwb/modules/injection/module.yaml +4 -0
  44. pycwb-0.29.0/pycwb/modules/injection/par_generator.py +84 -0
  45. pycwb-0.29.0/pycwb/modules/injection/scripts/injection_module_test.ipynb +207 -0
  46. pycwb-0.29.0/pycwb/modules/injection/scripts/injection_parameters.py +39 -0
  47. pycwb-0.29.0/pycwb/modules/injection/sky_distribution.py +136 -0
  48. pycwb-0.29.0/pycwb/modules/injection/tests/test_injection.py +50 -0
  49. pycwb-0.29.0/pycwb/modules/injection/wf_generator.py +23 -0
  50. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/job_segment.py +49 -27
  51. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihood/likelihood.py +8 -8
  52. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/logger/logger.py +15 -8
  53. pycwb-0.29.0/pycwb/modules/qveto/qveto.py +77 -0
  54. pycwb-0.29.0/pycwb/modules/qveto/qveto_ext.py +227 -0
  55. pycwb-0.29.0/pycwb/modules/qveto/utils.py +178 -0
  56. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/mdc.py +78 -141
  57. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/read_data.py +16 -7
  58. pycwb-0.29.0/pycwb/modules/read_data/tests/test_mdc.py +167 -0
  59. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/reconstruction/getMRAwaveform.py +12 -1
  60. pycwb-0.29.0/pycwb/modules/slurm/module.yaml +4 -0
  61. pycwb-0.29.0/pycwb/modules/slurm/slurm.py +85 -0
  62. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/workflow_utils/job_setup.py +30 -27
  63. pycwb-0.29.0/pycwb/prefect_flow/tasks/__init__.py +0 -0
  64. pycwb-0.29.0/pycwb/types/__init__.py +0 -0
  65. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/data_quality_file.py +10 -10
  66. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/job.py +6 -3
  67. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network_event.py +33 -5
  68. pycwb-0.29.0/pycwb/utils/__init__.py +0 -0
  69. pycwb-0.29.0/pycwb/utils/conversions/__init__.py +0 -0
  70. pycwb-0.29.0/pycwb/utils/module.py +96 -0
  71. pycwb-0.29.0/pycwb/vendor/__init__.py +0 -0
  72. pycwb-0.29.0/pycwb/vendor/autoencoder/__init__.py +0 -0
  73. pycwb-0.29.0/pycwb/vendor/lib/__init__.py +0 -0
  74. pycwb-0.29.0/pycwb/workflow/__init__.py +0 -0
  75. pycwb-0.29.0/pycwb/workflow/batch.py +127 -0
  76. pycwb-0.29.0/pycwb/workflow/subflow/fake_processor.py +36 -0
  77. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/subflow/postprocess_and_plots.py +45 -21
  78. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/subflow/prepare_job_runs.py +22 -11
  79. pycwb-0.29.0/pycwb/workflow/subflow/process_job_segment.py +310 -0
  80. {pycwb-0.28.0 → pycwb-0.29.0}/setup.py +1 -1
  81. pycwb-0.28.0/examples/colab/pycWB_GW150914.ipynb +0 -1136
  82. pycwb-0.28.0/pycwb/modules/condor/condor.py +0 -88
  83. pycwb-0.28.0/pycwb/modules/data_conditioning/__init__.py +0 -3
  84. pycwb-0.28.0/pycwb/utils/module.py +0 -25
  85. pycwb-0.28.0/pycwb/workflow/batch.py +0 -183
  86. pycwb-0.28.0/pycwb/workflow/subflow/process_job_segment.py +0 -171
  87. {pycwb-0.28.0 → pycwb-0.29.0}/.gitignore +0 -0
  88. {pycwb-0.28.0 → pycwb-0.29.0}/.gitlab-ci.yml +0 -0
  89. {pycwb-0.28.0 → pycwb-0.29.0}/.readthedocs.yaml +0 -0
  90. {pycwb-0.28.0 → pycwb-0.29.0}/LICENSE +0 -0
  91. {pycwb-0.28.0 → pycwb-0.29.0}/MANIFEST.in +0 -0
  92. {pycwb-0.28.0 → pycwb-0.29.0}/Makefile +0 -0
  93. {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/dependency_links.txt +0 -0
  94. {pycwb-0.28.0 → pycwb-0.29.0}/PycWB.egg-info/top_level.txt +0 -0
  95. {pycwb-0.28.0 → pycwb-0.29.0}/README.md +0 -0
  96. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/README.md +0 -0
  97. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/README.md +0 -0
  98. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/generate_data_for_likelihood.py +0 -0
  99. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/perf_cuda.py +0 -0
  100. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/performance_test_dpf.py +0 -0
  101. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/performance_test_opt_sky.py +0 -0
  102. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/likelihood/user_parameters_injection.yaml +0 -0
  103. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/README.md +0 -0
  104. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/generate_data.py +0 -0
  105. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/generate_data_2.py +0 -0
  106. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/performance_supercluster.py +0 -0
  107. {pycwb-0.28.0 → pycwb-0.29.0}/benchmark/supercluster/user_parameters_injection.yaml +0 -0
  108. {pycwb-0.28.0 → pycwb-0.29.0}/bin/pycwb_search +0 -0
  109. {pycwb-0.28.0 → pycwb-0.29.0}/bin/pycwb_show +0 -0
  110. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Biorthogonal.cc +0 -0
  111. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Biorthogonal.hh +0 -0
  112. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/CMakeLists.txt +0 -0
  113. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Daubechies.cc +0 -0
  114. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Daubechies.hh +0 -0
  115. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/FourierCoefficients.icc +0 -0
  116. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Haar.cc +0 -0
  117. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Haar.hh +0 -0
  118. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/LineFilter.cc +0 -0
  119. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/LineFilter.hh +0 -0
  120. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Makefile +0 -0
  121. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Meyer.cc +0 -0
  122. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Meyer.hh +0 -0
  123. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Symlet.cc +0 -0
  124. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Symlet.hh +0 -0
  125. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArray.cc +0 -0
  126. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArray.hh +0 -0
  127. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArraySSE.cc +0 -0
  128. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmArraySSE.hh +0 -0
  129. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmObjArray.cc +0 -0
  130. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/SymmObjArray.hh +0 -0
  131. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDM.cc +0 -0
  132. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDM.hh +0 -0
  133. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDMOverlap.cc +0 -0
  134. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WDMOverlap.hh +0 -0
  135. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WaveDWT.cc +0 -0
  136. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/WaveDWT.hh +0 -0
  137. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Wavelet.cc +0 -0
  138. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/Wavelet.hh +0 -0
  139. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/alm.hh +0 -0
  140. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/build.sh +0 -0
  141. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cluster.cc +0 -0
  142. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cluster.hh +0 -0
  143. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cmake/FindHealpix.cmake +0 -0
  144. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cmake/FindeBBH.cmake +0 -0
  145. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/cmake/install_function.cmake +0 -0
  146. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/constants.hh +0 -0
  147. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/detector.cc +0 -0
  148. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/detector.hh +0 -0
  149. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/injection.cc +0 -0
  150. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/injection.hh +0 -0
  151. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/lossy.cc +0 -0
  152. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/lossy.hh +0 -0
  153. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/monster.hh +0 -0
  154. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netcluster.cc +0 -0
  155. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netcluster.hh +0 -0
  156. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netevent.cc +0 -0
  157. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netevent.hh +0 -0
  158. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netpixel.cc +0 -0
  159. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/netpixel.hh +0 -0
  160. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/network.cc +0 -0
  161. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/network.hh +0 -0
  162. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/pycwb.hh +0 -0
  163. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/rdfr.cc +0 -0
  164. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/rdfr.hh +0 -0
  165. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readframe.cc +0 -0
  166. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readframe.hh +0 -0
  167. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readfrfile.cc +0 -0
  168. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/readfrfile.hh +0 -0
  169. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/regression.cc +0 -0
  170. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/regression.hh +0 -0
  171. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/skycoord.hh +0 -0
  172. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/skymap.cc +0 -0
  173. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/skymap.hh +0 -0
  174. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/sseries.cc +0 -0
  175. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/sseries.hh +0 -0
  176. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/time.cc +0 -0
  177. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/time.hh +0 -0
  178. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wat.hh +0 -0
  179. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watasm.S +0 -0
  180. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watasm_elf64.o +0 -0
  181. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watavx.hh +0 -0
  182. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watbranch.in +0 -0
  183. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watfun.hh +0 -0
  184. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wathash.in +0 -0
  185. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watplot.cc +0 -0
  186. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watplot.hh +0 -0
  187. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watsse.hh +0 -0
  188. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wattag.in +0 -0
  189. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/waturl.in +0 -0
  190. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/watversion.hh.in +0 -0
  191. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavearray.cc +0 -0
  192. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavearray.hh +0 -0
  193. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecomplex.cc +0 -0
  194. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecomplex.hh +0 -0
  195. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecor.cc +0 -0
  196. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavecor.hh +0 -0
  197. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavefft.cc +0 -0
  198. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavefft.hh +0 -0
  199. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavelet_LinkDef.h +0 -0
  200. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavelinefilter.cc +0 -0
  201. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wavelinefilter.hh +0 -0
  202. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/waverdc.cc +0 -0
  203. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/waverdc.hh +0 -0
  204. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wseries.cc +0 -0
  205. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wseries.hh +0 -0
  206. {pycwb-0.28.0 → pycwb-0.29.0}/cwb-core/wslice.hh +0 -0
  207. {pycwb-0.28.0 → pycwb-0.29.0}/docs/0.installation_guide.md +0 -0
  208. {pycwb-0.28.0 → pycwb-0.29.0}/docs/1.initialisation_guide.md +0 -0
  209. {pycwb-0.28.0 → pycwb-0.29.0}/docs/2.test_interactive_multistages_2G_analysis.md +0 -0
  210. {pycwb-0.28.0 → pycwb-0.29.0}/docs/3.run_pycwb_with_yaml_config.md +0 -0
  211. {pycwb-0.28.0 → pycwb-0.29.0}/docs/4.py_cwb_inet_2G.md +0 -0
  212. {pycwb-0.28.0 → pycwb-0.29.0}/docs/5.cwb2G_analyse.md +0 -0
  213. {pycwb-0.28.0 → pycwb-0.29.0}/docs/6.wat_codes_notes.md +0 -0
  214. {pycwb-0.28.0 → pycwb-0.29.0}/docs/Makefile +0 -0
  215. {pycwb-0.28.0 → pycwb-0.29.0}/docs/diagram.py +0 -0
  216. {pycwb-0.28.0 → pycwb-0.29.0}/docs/make.bat +0 -0
  217. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/_static/.keep +0 -0
  218. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/_templates/.keep +0 -0
  219. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/conf.py +0 -0
  220. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/credit.rst +0 -0
  221. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/index.rst +0 -0
  222. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/install.rst +0 -0
  223. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/mod_cwb.rst +0 -0
  224. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/package.rst +0 -0
  225. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/schema.rst +0 -0
  226. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_batch_inj.rst +0 -0
  227. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_customized_wf_gen.rst +0 -0
  228. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_injection.rst +0 -0
  229. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_multi_injection.rst +0 -0
  230. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorial_search.rst +0 -0
  231. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/tutorials.rst +0 -0
  232. {pycwb-0.28.0 → pycwb-0.29.0}/docs/source/workflow.png +0 -0
  233. {pycwb-0.28.0 → pycwb-0.29.0}/envs/Dockerfile +0 -0
  234. {pycwb-0.28.0 → pycwb-0.29.0}/envs/environment.yml +0 -0
  235. {pycwb-0.28.0 → pycwb-0.29.0}/envs/mamba/Dockerfile +0 -0
  236. {pycwb-0.28.0 → pycwb-0.29.0}/examples/autoencoder/pycwb_injection.ipynb +0 -0
  237. {pycwb-0.28.0 → pycwb-0.29.0}/examples/autoencoder/user_parameters_injection.yaml +0 -0
  238. {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/generate_parameters.py +0 -0
  239. {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycbc_inject/hyperbolicTD/__init__.py +0 -0
  240. {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycbc_inject/hyperbolicTD/parameters.py +0 -0
  241. {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycbc_inject/hyperbolicTD/waveform.py +0 -0
  242. {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/pycwb_injection.py +0 -0
  243. {pycwb-0.28.0 → pycwb-0.29.0}/examples/batch_injection/user_parameters_injection.yaml +0 -0
  244. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat0.txt +0 -0
  245. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat1.txt +0 -0
  246. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat2.txt +0 -0
  247. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/H1_cat4.txt +0 -0
  248. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat0.txt +0 -0
  249. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat1.txt +0 -0
  250. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat2.txt +0 -0
  251. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/DQ/L1_cat4.txt +0 -0
  252. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/input/OPBM.period +0 -0
  253. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/input/OPBM_H1.frames +0 -0
  254. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/input/OPBM_L1.frames +0 -0
  255. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/pycwb_mdc.py +0 -0
  256. {pycwb-0.28.0 → pycwb-0.29.0}/examples/benchmark/user_parameters_mdc.yaml +0 -0
  257. {pycwb-0.28.0 → pycwb-0.29.0}/examples/gwosc/user_parameters.yaml +0 -0
  258. {pycwb-0.28.0 → pycwb-0.29.0}/examples/injection/wdmXTalk/OverlapCatalog16-1024.bin +0 -0
  259. {pycwb-0.28.0 → pycwb-0.29.0}/examples/lvk_sep_2023/demo.ipynb +0 -0
  260. {pycwb-0.28.0 → pycwb-0.29.0}/examples/lvk_sep_2023/user_parameters.yaml +0 -0
  261. {pycwb-0.28.0 → pycwb-0.29.0}/examples/multiple_injection/pycwb_injection.py +0 -0
  262. {pycwb-0.28.0 → pycwb-0.29.0}/examples/multiple_injection/user_parameters_injection.yaml +0 -0
  263. {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/generate_parameters.py +0 -0
  264. {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/user_parameters_injection.yaml +0 -0
  265. {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/waveform_model/__init__.py +0 -0
  266. {pycwb-0.28.0 → pycwb-0.29.0}/examples/pyseobnr_injection/waveform_model/waveform.py +0 -0
  267. {pycwb-0.28.0 → pycwb-0.29.0}/examples/waveform_reconstruction/reconstruct_waveform_from_cluster.ipynb +0 -0
  268. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/coherence.cc +0 -0
  269. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/coherence.hh +0 -0
  270. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/likelihood.cc +0 -0
  271. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/cwb_core/likelihood.hh +0 -0
  272. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/dag/dag.py +0 -0
  273. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/dag/dask-prefect.py +0 -0
  274. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/dag/prefect_test.py +0 -0
  275. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger/__init__.py +0 -0
  276. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger/server.py +0 -0
  277. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger/visualizition.py +0 -0
  278. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/.eslintrc.cjs +0 -0
  279. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/.gitignore +0 -0
  280. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/.prettierrc.json +0 -0
  281. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/README.md +0 -0
  282. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/index.html +0 -0
  283. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/package-lock.json +0 -0
  284. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/package.json +0 -0
  285. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/public/favicon.ico +0 -0
  286. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/App.vue +0 -0
  287. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/base.css +0 -0
  288. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/cwb_icon_modern_blue_alfa.png +0 -0
  289. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/main.css +0 -0
  290. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/assets/style.css +0 -0
  291. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/HelloWorld.vue +0 -0
  292. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/TheWelcome.vue +0 -0
  293. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/WelcomeItem.vue +0 -0
  294. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/__tests__/HelloWorld.spec.js +0 -0
  295. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconCommunity.vue +0 -0
  296. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconDocumentation.vue +0 -0
  297. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconEcosystem.vue +0 -0
  298. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconSupport.vue +0 -0
  299. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/components/icons/IconTooling.vue +0 -0
  300. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/main.js +0 -0
  301. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/router/index.js +0 -0
  302. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/stores/counter.js +0 -0
  303. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/drawflow.vue +0 -0
  304. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/node1.vue +0 -0
  305. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/node2.vue +0 -0
  306. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/node3.vue +0 -0
  307. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/src/views/nodes/nodeHeader.vue +0 -0
  308. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/messenger-web-interface/vite.config.js +0 -0
  309. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/performance/numba_test.py +0 -0
  310. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/performance/taichi_test.py +0 -0
  311. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/pp_workflow/simple.yaml +0 -0
  312. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/pp_workflow/simple_module.yaml +0 -0
  313. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/pp_workflow/workflow.yaml +0 -0
  314. {pycwb-0.28.0 → pycwb-0.29.0}/prototypes/search.yaml +0 -0
  315. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/__init__.py +0 -0
  316. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/__init__.py +0 -0
  317. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/batch_setup.py +0 -0
  318. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/flow.py +0 -0
  319. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/gwosc.py +0 -0
  320. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/merge_catalog.py +0 -0
  321. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/post_process.py +0 -0
  322. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/run.py +0 -0
  323. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/server.py +0 -0
  324. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/cli/xtalk.py +0 -0
  325. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/config/__init__.py +0 -0
  326. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/__init__.py +0 -0
  327. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/detectors.py +0 -0
  328. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/physics_constants.py +0 -0
  329. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/constants/project_constants.py +0 -0
  330. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/__init__.py +0 -0
  331. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/__init__.py +0 -0
  332. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/autoencoder.py +0 -0
  333. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/cwb_autoencoder.py +0 -0
  334. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/autoencoder/module.yaml +0 -0
  335. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/catalog/__init__.py +0 -0
  336. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/catalog/catalog.py +0 -0
  337. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/catalog/module.yaml +0 -0
  338. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/__init__.py +0 -0
  339. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/coherence_lite.py +0 -0
  340. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/coherence/module.yaml +0 -0
  341. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/condor/__init__.py +0 -0
  342. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/__init__.py +0 -0
  343. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/cluster.py +0 -0
  344. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/module.yaml +0 -0
  345. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/pixel.py +0 -0
  346. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/series.py +0 -0
  347. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/cwb_conversions/sparse_series.py +0 -0
  348. {pycwb-0.28.0/pycwb/modules/energy_threshold → pycwb-0.29.0/pycwb/modules/cwb_xgboost}/__init__.py +0 -0
  349. /pycwb-0.28.0/pycwb/modules/gwosc/__init__.py → /pycwb-0.29.0/pycwb/modules/cwb_xgboost/training.py +0 -0
  350. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/data_conditioning/module.yaml +0 -0
  351. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/data_conditioning/regression.py +0 -0
  352. {pycwb-0.28.0/pycwb/modules/likelihoodWP → pycwb-0.29.0/pycwb/modules/energy_threshold}/__init__.py +0 -0
  353. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/energy_threshold/threshold.py +0 -0
  354. {pycwb-0.28.0/pycwb/modules/plot_map → pycwb-0.29.0/pycwb/modules/external_module_manager}/__init__.py +0 -0
  355. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/__init__.py +0 -0
  356. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/gracedb.py +0 -0
  357. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/module.yaml +0 -0
  358. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gracedb/test_gracedb.py +0 -0
  359. {pycwb-0.28.0/pycwb/modules/report → pycwb-0.29.0/pycwb/modules/gwosc}/__init__.py +0 -0
  360. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/gwosc/gwosc.py +0 -0
  361. {pycwb-0.28.0/pycwb/modules/statistics → pycwb-0.29.0/pycwb/modules/injection}/__init__.py +0 -0
  362. {pycwb-0.28.0/pycwb/modules/supercluster_naive → pycwb-0.29.0/pycwb/modules/injection/tests}/__init__.py +0 -0
  363. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/__init__.py +0 -0
  364. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/dq_segment.py +0 -0
  365. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/frame.py +0 -0
  366. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/module.yaml +0 -0
  367. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/plots.py +0 -0
  368. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/super_lag.py +0 -0
  369. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/job_segment/test_job_segment.py +0 -0
  370. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihood/__init__.py +0 -0
  371. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihood/module.yaml +0 -0
  372. {pycwb-0.28.0/pycwb/modules/web_viewer → pycwb-0.29.0/pycwb/modules/likelihoodWP}/__init__.py +0 -0
  373. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/dpf.py +0 -0
  374. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/dpf_cython.pyx +0 -0
  375. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/likelihood.py +0 -0
  376. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/sky_stat.py +0 -0
  377. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/likelihoodWP/utils.py +0 -0
  378. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/logger/__init__.py +0 -0
  379. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/logger/module.yaml +0 -0
  380. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/multi_resolution_wdm/__init__.py +0 -0
  381. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/multi_resolution_wdm/module.yaml +0 -0
  382. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/multi_resolution_wdm/wdm.py +0 -0
  383. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/__init__.py +0 -0
  384. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/cluster_statistics.py +0 -0
  385. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/event.py +0 -0
  386. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/module.yaml +0 -0
  387. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/spectrogram.py +0 -0
  388. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot/waveform.py +0 -0
  389. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_data_quality/__init__.py +0 -0
  390. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_data_quality/module.yaml +0 -0
  391. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_data_quality/plot.py +0 -0
  392. {pycwb-0.28.0/pycwb/modules/workflow_utils → pycwb-0.29.0/pycwb/modules/plot_map}/__init__.py +0 -0
  393. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_map/module.yaml +0 -0
  394. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/plot_map/world_map.py +0 -0
  395. {pycwb-0.28.0/pycwb/modules/xtalk → pycwb-0.29.0/pycwb/modules/qveto}/__init__.py +0 -0
  396. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/__init__.py +0 -0
  397. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/data_check.py +0 -0
  398. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/data_find.py +0 -0
  399. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/read_data/module.yaml +0 -0
  400. {pycwb-0.28.0/pycwb/post_production → pycwb-0.29.0/pycwb/modules/read_data/tests}/__init__.py +0 -0
  401. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/reconstruction/__init__.py +0 -0
  402. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/reconstruction/module.yaml +0 -0
  403. {pycwb-0.28.0/pycwb/prefect_flow → pycwb-0.29.0/pycwb/modules/report}/__init__.py +0 -0
  404. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/continues_poisson.py +0 -0
  405. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/far_rho.py +0 -0
  406. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/read_results.py +0 -0
  407. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/report/report.py +0 -0
  408. {pycwb-0.28.0/pycwb/prefect_flow/tasks → pycwb-0.29.0/pycwb/modules/slurm}/__init__.py +0 -0
  409. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/sparse_series/__init__.py +0 -0
  410. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/sparse_series/module.yaml +0 -0
  411. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/sparse_series/sparse_table.py +0 -0
  412. {pycwb-0.28.0/pycwb/types → pycwb-0.29.0/pycwb/modules/statistics}/__init__.py +0 -0
  413. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/eff.py +0 -0
  414. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/eff_plot.py +0 -0
  415. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/merge.py +0 -0
  416. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/statistics/sigmoid_fit.py +0 -0
  417. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/__init__.py +0 -0
  418. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/module.yaml +0 -0
  419. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/sub_net_cut.py +0 -0
  420. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/super_cluster.py +0 -0
  421. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/supercluster.py +0 -0
  422. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/super_cluster/utils.py +0 -0
  423. {pycwb-0.28.0/pycwb/utils → pycwb-0.29.0/pycwb/modules/supercluster_naive}/__init__.py +0 -0
  424. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/supercluster_naive/supercluster2.py +0 -0
  425. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/superlag/__init__.py +0 -0
  426. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/superlag/module.yaml +0 -0
  427. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/superlag/superlag.py +0 -0
  428. {pycwb-0.28.0/pycwb/utils/conversions → pycwb-0.29.0/pycwb/modules/web_viewer}/__init__.py +0 -0
  429. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/web_viewer/create.py +0 -0
  430. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/web_viewer/module.yaml +0 -0
  431. {pycwb-0.28.0/pycwb/vendor → pycwb-0.29.0/pycwb/modules/workflow_utils}/__init__.py +0 -0
  432. {pycwb-0.28.0/pycwb/vendor/autoencoder → pycwb-0.29.0/pycwb/modules/xtalk}/__init__.py +0 -0
  433. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/xtalk/monster.py +0 -0
  434. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/xtalk/monster_old.py +0 -0
  435. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/modules/xtalk/xtalk_data.py +0 -0
  436. {pycwb-0.28.0/pycwb/vendor/lib → pycwb-0.29.0/pycwb/post_production}/__init__.py +0 -0
  437. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/post_production/workflow.py +0 -0
  438. {pycwb-0.28.0/pycwb/workflow → pycwb-0.29.0/pycwb/prefect_flow}/__init__.py +0 -0
  439. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/prefect_flow/pycwb_flow.py +0 -0
  440. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/prefect_flow/tasks/builtin.py +0 -0
  441. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/detector.py +0 -0
  442. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network.py +0 -0
  443. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network_cluster.py +0 -0
  444. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/network_pixel.py +0 -0
  445. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/sparse_series.py +0 -0
  446. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/time_frequency_series.py +0 -0
  447. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/wdm.py +0 -0
  448. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/types/wdm_xtalk.py +0 -0
  449. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/async_write.py +0 -0
  450. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/check_ROOT.py +0 -0
  451. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/conversions/timeseries.py +0 -0
  452. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/dataclass_object_io.py +0 -0
  453. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/dep_check.py +0 -0
  454. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/generate_params_table.py +0 -0
  455. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/image.py +0 -0
  456. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/network.py +0 -0
  457. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/parser.py +0 -0
  458. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/skymap_coord.py +0 -0
  459. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/utils/yaml_helper.py +0 -0
  460. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/autoencoder/cwb_autoencoder.h5 +0 -0
  461. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/example.yaml +0 -0
  462. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/template/gwosc/user_parameters.yaml +0 -0
  463. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/web_viewer/event_dump.html +0 -0
  464. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/web_viewer/styles.css +0 -0
  465. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/vendor/web_viewer/viewer.html +0 -0
  466. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/merge.py +0 -0
  467. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/run.py +0 -0
  468. {pycwb-0.28.0 → pycwb-0.29.0}/pycwb/workflow/subflow/__init__.py +0 -0
  469. {pycwb-0.28.0 → pycwb-0.29.0}/pyproject.toml +0 -0
  470. {pycwb-0.28.0 → pycwb-0.29.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: PycWB
3
- Version: 0.28.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.2
1
+ Metadata-Version: 2.4
2
2
  Name: PycWB
3
- Version: 0.28.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/whitening.py
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
@@ -10,7 +10,7 @@ ligo-segments
10
10
  aiohttp
11
11
  pycbc
12
12
  filelock
13
- scipy
13
+ scipy<1.14
14
14
  pillow>=9.0.0
15
15
  click
16
16
  orjson
@@ -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}")