PycWB 0.17.3__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 (360) hide show
  1. PycWB-0.17.3/.gitignore +25 -0
  2. PycWB-0.17.3/.gitlab-ci.yml +126 -0
  3. PycWB-0.17.3/LICENSE +674 -0
  4. PycWB-0.17.3/MANIFEST.in +7 -0
  5. PycWB-0.17.3/Makefile +26 -0
  6. PycWB-0.17.3/PKG-INFO +55 -0
  7. PycWB-0.17.3/PycWB.egg-info/PKG-INFO +55 -0
  8. PycWB-0.17.3/PycWB.egg-info/SOURCES.txt +358 -0
  9. PycWB-0.17.3/PycWB.egg-info/dependency_links.txt +1 -0
  10. PycWB-0.17.3/PycWB.egg-info/requires.txt +14 -0
  11. PycWB-0.17.3/PycWB.egg-info/top_level.txt +2 -0
  12. PycWB-0.17.3/README.md +44 -0
  13. PycWB-0.17.3/archived/bin/pycwb_gen_config +100 -0
  14. PycWB-0.17.3/archived/cwb_wrapper/__init__.py +88 -0
  15. PycWB-0.17.3/archived/cwb_wrapper/config/__init__.py +1 -0
  16. PycWB-0.17.3/archived/cwb_wrapper/config/cwb_config.py +107 -0
  17. PycWB-0.17.3/archived/cwb_wrapper/config/user_parameters.py +150 -0
  18. PycWB-0.17.3/archived/cwb_wrapper/constants/__init__.py +1 -0
  19. PycWB-0.17.3/archived/cwb_wrapper/constants/cwb_dict.py +22 -0
  20. PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/__init__.py +5 -0
  21. PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb.py +247 -0
  22. PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb_inet2G.py +76 -0
  23. PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb_root_logon.py +114 -0
  24. PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb_xnet.py +104 -0
  25. PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/utils.py +23 -0
  26. PycWB-0.17.3/archived/cwb_wrapper/tools/__init__.py +1 -0
  27. PycWB-0.17.3/archived/cwb_wrapper/tools/sim/__init__.py +18 -0
  28. PycWB-0.17.3/archived/cwb_wrapper/vendor/CreateFramesNOISE.C +106 -0
  29. PycWB-0.17.3/archived/cwb_wrapper/vendor/__init__.py +0 -0
  30. PycWB-0.17.3/archived/cwb_wrapper/vendor/dumb.c +1 -0
  31. PycWB-0.17.3/archived/event_interface/__init__.py +0 -0
  32. PycWB-0.17.3/archived/event_interface/handlers.py +92 -0
  33. PycWB-0.17.3/archived/event_interface/middlewares.py +17 -0
  34. PycWB-0.17.3/archived/messenger_test/__init__.py +0 -0
  35. PycWB-0.17.3/archived/messenger_test/_config.py +86 -0
  36. PycWB-0.17.3/archived/messenger_test/_handlers.py +81 -0
  37. PycWB-0.17.3/archived/messenger_test/_middlewares.py +17 -0
  38. PycWB-0.17.3/archived/messenger_test/run.py +13 -0
  39. PycWB-0.17.3/archived/netcluster.py +79 -0
  40. PycWB-0.17.3/archived/netpixel.py +12 -0
  41. PycWB-0.17.3/archived/pycwb_eda/__init__.py +0 -0
  42. PycWB-0.17.3/archived/pycwb_eda/_config.py +70 -0
  43. PycWB-0.17.3/archived/pycwb_eda/example.py +15 -0
  44. PycWB-0.17.3/bin/pycwb_search +79 -0
  45. PycWB-0.17.3/bin/pycwb_show +44 -0
  46. PycWB-0.17.3/cwb-core/Biorthogonal.cc +170 -0
  47. PycWB-0.17.3/cwb-core/Biorthogonal.hh +94 -0
  48. PycWB-0.17.3/cwb-core/CMakeLists.txt +183 -0
  49. PycWB-0.17.3/cwb-core/Daubechies.cc +488 -0
  50. PycWB-0.17.3/cwb-core/Daubechies.hh +94 -0
  51. PycWB-0.17.3/cwb-core/FourierCoefficients.icc +2483 -0
  52. PycWB-0.17.3/cwb-core/Haar.cc +169 -0
  53. PycWB-0.17.3/cwb-core/Haar.hh +82 -0
  54. PycWB-0.17.3/cwb-core/LineFilter.cc +1575 -0
  55. PycWB-0.17.3/cwb-core/LineFilter.hh +267 -0
  56. PycWB-0.17.3/cwb-core/Makefile +386 -0
  57. PycWB-0.17.3/cwb-core/Meyer.cc +741 -0
  58. PycWB-0.17.3/cwb-core/Meyer.hh +93 -0
  59. PycWB-0.17.3/cwb-core/Symlet.cc +493 -0
  60. PycWB-0.17.3/cwb-core/Symlet.hh +94 -0
  61. PycWB-0.17.3/cwb-core/SymmArray.cc +103 -0
  62. PycWB-0.17.3/cwb-core/SymmArray.hh +54 -0
  63. PycWB-0.17.3/cwb-core/SymmArraySSE.cc +118 -0
  64. PycWB-0.17.3/cwb-core/SymmArraySSE.hh +58 -0
  65. PycWB-0.17.3/cwb-core/SymmObjArray.cc +89 -0
  66. PycWB-0.17.3/cwb-core/SymmObjArray.hh +52 -0
  67. PycWB-0.17.3/cwb-core/WDM.cc +1722 -0
  68. PycWB-0.17.3/cwb-core/WDM.hh +189 -0
  69. PycWB-0.17.3/cwb-core/WDMOverlap.cc +375 -0
  70. PycWB-0.17.3/cwb-core/WDMOverlap.hh +104 -0
  71. PycWB-0.17.3/cwb-core/WaveDWT.cc +1038 -0
  72. PycWB-0.17.3/cwb-core/WaveDWT.hh +146 -0
  73. PycWB-0.17.3/cwb-core/Wavelet.cc +133 -0
  74. PycWB-0.17.3/cwb-core/Wavelet.hh +162 -0
  75. PycWB-0.17.3/cwb-core/alm.hh +251 -0
  76. PycWB-0.17.3/cwb-core/build.sh +50 -0
  77. PycWB-0.17.3/cwb-core/cluster.cc +1473 -0
  78. PycWB-0.17.3/cwb-core/cluster.hh +274 -0
  79. PycWB-0.17.3/cwb-core/cmake/FindHealpix.cmake +72 -0
  80. PycWB-0.17.3/cwb-core/cmake/FindeBBH.cmake +38 -0
  81. PycWB-0.17.3/cwb-core/cmake/install_function.cmake +35 -0
  82. PycWB-0.17.3/cwb-core/constants.hh +250 -0
  83. PycWB-0.17.3/cwb-core/detector.cc +2011 -0
  84. PycWB-0.17.3/cwb-core/detector.hh +412 -0
  85. PycWB-0.17.3/cwb-core/injection.cc +721 -0
  86. PycWB-0.17.3/cwb-core/injection.hh +206 -0
  87. PycWB-0.17.3/cwb-core/lossy.cc +369 -0
  88. PycWB-0.17.3/cwb-core/lossy.hh +58 -0
  89. PycWB-0.17.3/cwb-core/monster.cc +537 -0
  90. PycWB-0.17.3/cwb-core/monster.hh +130 -0
  91. PycWB-0.17.3/cwb-core/netcluster.cc +4176 -0
  92. PycWB-0.17.3/cwb-core/netcluster.hh +492 -0
  93. PycWB-0.17.3/cwb-core/netevent.cc +1713 -0
  94. PycWB-0.17.3/cwb-core/netevent.hh +417 -0
  95. PycWB-0.17.3/cwb-core/netpixel.cc +221 -0
  96. PycWB-0.17.3/cwb-core/netpixel.hh +147 -0
  97. PycWB-0.17.3/cwb-core/network.cc +8232 -0
  98. PycWB-0.17.3/cwb-core/network.hh +1506 -0
  99. PycWB-0.17.3/cwb-core/pycwb.hh +40 -0
  100. PycWB-0.17.3/cwb-core/rdfr.cc +130 -0
  101. PycWB-0.17.3/cwb-core/rdfr.hh +26 -0
  102. PycWB-0.17.3/cwb-core/readframe.cc +239 -0
  103. PycWB-0.17.3/cwb-core/readframe.hh +38 -0
  104. PycWB-0.17.3/cwb-core/readfrfile.cc +589 -0
  105. PycWB-0.17.3/cwb-core/readfrfile.hh +51 -0
  106. PycWB-0.17.3/cwb-core/regression.cc +948 -0
  107. PycWB-0.17.3/cwb-core/regression.hh +202 -0
  108. PycWB-0.17.3/cwb-core/skycoord.hh +445 -0
  109. PycWB-0.17.3/cwb-core/skymap.cc +1238 -0
  110. PycWB-0.17.3/cwb-core/skymap.hh +360 -0
  111. PycWB-0.17.3/cwb-core/sseries.cc +569 -0
  112. PycWB-0.17.3/cwb-core/sseries.hh +202 -0
  113. PycWB-0.17.3/cwb-core/time.cc +660 -0
  114. PycWB-0.17.3/cwb-core/time.hh +271 -0
  115. PycWB-0.17.3/cwb-core/wat.hh +195 -0
  116. PycWB-0.17.3/cwb-core/watasm.S +290 -0
  117. PycWB-0.17.3/cwb-core/watasm_elf64.o +0 -0
  118. PycWB-0.17.3/cwb-core/watavx.hh +1386 -0
  119. PycWB-0.17.3/cwb-core/watbranch.in +1 -0
  120. PycWB-0.17.3/cwb-core/watfun.hh +254 -0
  121. PycWB-0.17.3/cwb-core/wathash.in +1 -0
  122. PycWB-0.17.3/cwb-core/watplot.cc +1371 -0
  123. PycWB-0.17.3/cwb-core/watplot.hh +225 -0
  124. PycWB-0.17.3/cwb-core/watsse.hh +1303 -0
  125. PycWB-0.17.3/cwb-core/wattag.in +1 -0
  126. PycWB-0.17.3/cwb-core/waturl.in +1 -0
  127. PycWB-0.17.3/cwb-core/watversion.hh.in +59 -0
  128. PycWB-0.17.3/cwb-core/wavearray.cc +2336 -0
  129. PycWB-0.17.3/cwb-core/wavearray.hh +403 -0
  130. PycWB-0.17.3/cwb-core/wavecomplex.cc +102 -0
  131. PycWB-0.17.3/cwb-core/wavecomplex.hh +86 -0
  132. PycWB-0.17.3/cwb-core/wavecor.cc +343 -0
  133. PycWB-0.17.3/cwb-core/wavecor.hh +109 -0
  134. PycWB-0.17.3/cwb-core/wavefft.cc +665 -0
  135. PycWB-0.17.3/cwb-core/wavefft.hh +27 -0
  136. PycWB-0.17.3/cwb-core/wavelet_LinkDef.h +178 -0
  137. PycWB-0.17.3/cwb-core/wavelinefilter.cc +1506 -0
  138. PycWB-0.17.3/cwb-core/wavelinefilter.hh +234 -0
  139. PycWB-0.17.3/cwb-core/waverdc.cc +822 -0
  140. PycWB-0.17.3/cwb-core/waverdc.hh +120 -0
  141. PycWB-0.17.3/cwb-core/wseries.cc +2432 -0
  142. PycWB-0.17.3/cwb-core/wseries.hh +474 -0
  143. PycWB-0.17.3/cwb-core/wslice.hh +103 -0
  144. PycWB-0.17.3/docs/0.installation_guide.md +94 -0
  145. PycWB-0.17.3/docs/1.initialisation_guide.md +193 -0
  146. PycWB-0.17.3/docs/2.test_interactive_multistages_2G_analysis.md +209 -0
  147. PycWB-0.17.3/docs/3.run_pycwb_with_yaml_config.md +37 -0
  148. PycWB-0.17.3/docs/4.py_cwb_inet_2G.md +104 -0
  149. PycWB-0.17.3/docs/5.cwb2G_analyse.md +1467 -0
  150. PycWB-0.17.3/docs/6.wat_codes_notes.md +35 -0
  151. PycWB-0.17.3/docs/Makefile +20 -0
  152. PycWB-0.17.3/docs/diagram.py +129 -0
  153. PycWB-0.17.3/docs/make.bat +35 -0
  154. PycWB-0.17.3/docs/source/_static/.keep +0 -0
  155. PycWB-0.17.3/docs/source/_templates/.keep +0 -0
  156. PycWB-0.17.3/docs/source/conf.py +85 -0
  157. PycWB-0.17.3/docs/source/credit.rst +30 -0
  158. PycWB-0.17.3/docs/source/index.rst +103 -0
  159. PycWB-0.17.3/docs/source/install.rst +64 -0
  160. PycWB-0.17.3/docs/source/mod_cwb.rst +64 -0
  161. PycWB-0.17.3/docs/source/package.rst +14 -0
  162. PycWB-0.17.3/docs/source/schema.rst +12 -0
  163. PycWB-0.17.3/docs/source/tutorial_batch_inj.rst +6 -0
  164. PycWB-0.17.3/docs/source/tutorial_customized_wf_gen.rst +7 -0
  165. PycWB-0.17.3/docs/source/tutorial_injection.rst +119 -0
  166. PycWB-0.17.3/docs/source/tutorial_multi_injection.rst +8 -0
  167. PycWB-0.17.3/docs/source/tutorial_search.rst +179 -0
  168. PycWB-0.17.3/docs/source/tutorials.rst +16 -0
  169. PycWB-0.17.3/docs/source/workflow.png +0 -0
  170. PycWB-0.17.3/examples/autoencoder/pycwb_injection.ipynb +283 -0
  171. PycWB-0.17.3/examples/autoencoder/user_parameters_injection.yaml +92 -0
  172. PycWB-0.17.3/examples/batch_injection/generate_parameters.py +20 -0
  173. PycWB-0.17.3/examples/batch_injection/pycbc_inject/hyperbolicTD/__init__.py +11 -0
  174. PycWB-0.17.3/examples/batch_injection/pycbc_inject/hyperbolicTD/parameters.py +651 -0
  175. PycWB-0.17.3/examples/batch_injection/pycbc_inject/hyperbolicTD/waveform.py +1256 -0
  176. PycWB-0.17.3/examples/batch_injection/pycwb_injection.py +3 -0
  177. PycWB-0.17.3/examples/batch_injection/user_parameters_injection.yaml +86 -0
  178. PycWB-0.17.3/examples/benchmark/DQ/H1_cat0.txt +416 -0
  179. PycWB-0.17.3/examples/benchmark/DQ/H1_cat1.txt +1042 -0
  180. PycWB-0.17.3/examples/benchmark/DQ/H1_cat2.txt +22602 -0
  181. PycWB-0.17.3/examples/benchmark/DQ/H1_cat4.txt +2 -0
  182. PycWB-0.17.3/examples/benchmark/DQ/L1_cat0.txt +363 -0
  183. PycWB-0.17.3/examples/benchmark/DQ/L1_cat1.txt +1199 -0
  184. PycWB-0.17.3/examples/benchmark/DQ/L1_cat2.txt +29295 -0
  185. PycWB-0.17.3/examples/benchmark/DQ/L1_cat4.txt +4 -0
  186. PycWB-0.17.3/examples/benchmark/input/OPBM.period +1 -0
  187. PycWB-0.17.3/examples/benchmark/input/OPBM_H1.frames +3377 -0
  188. PycWB-0.17.3/examples/benchmark/input/OPBM_L1.frames +3363 -0
  189. PycWB-0.17.3/examples/benchmark/pycwb_mdc.py +3 -0
  190. PycWB-0.17.3/examples/benchmark/user_parameters_mdc.yaml +89 -0
  191. PycWB-0.17.3/examples/injection/pycwb_injection.ipynb +246 -0
  192. PycWB-0.17.3/examples/injection/pycwb_injection.py +3 -0
  193. PycWB-0.17.3/examples/injection/user_parameters_injection.yaml +92 -0
  194. PycWB-0.17.3/examples/multiple_injection/pycwb_injection.py +3 -0
  195. PycWB-0.17.3/examples/multiple_injection/user_parameters_injection.yaml +104 -0
  196. PycWB-0.17.3/examples/pyseobnr_injection/generate_parameters.py +22 -0
  197. PycWB-0.17.3/examples/pyseobnr_injection/user_parameters_injection.yaml +85 -0
  198. PycWB-0.17.3/examples/pyseobnr_injection/waveform_model/__init__.py +0 -0
  199. PycWB-0.17.3/examples/pyseobnr_injection/waveform_model/waveform.py +28 -0
  200. PycWB-0.17.3/prototypes/cwb_core/coherence.cc +316 -0
  201. PycWB-0.17.3/prototypes/cwb_core/coherence.hh +36 -0
  202. PycWB-0.17.3/prototypes/cwb_core/likelihood.cc +941 -0
  203. PycWB-0.17.3/prototypes/cwb_core/likelihood.hh +201 -0
  204. PycWB-0.17.3/prototypes/messenger/__init__.py +279 -0
  205. PycWB-0.17.3/prototypes/messenger/server.py +76 -0
  206. PycWB-0.17.3/prototypes/messenger/visualizition.py +0 -0
  207. PycWB-0.17.3/prototypes/messenger-web-interface/.eslintrc.cjs +14 -0
  208. PycWB-0.17.3/prototypes/messenger-web-interface/.gitignore +28 -0
  209. PycWB-0.17.3/prototypes/messenger-web-interface/.prettierrc.json +1 -0
  210. PycWB-0.17.3/prototypes/messenger-web-interface/README.md +41 -0
  211. PycWB-0.17.3/prototypes/messenger-web-interface/index.html +13 -0
  212. PycWB-0.17.3/prototypes/messenger-web-interface/package-lock.json +3343 -0
  213. PycWB-0.17.3/prototypes/messenger-web-interface/package.json +33 -0
  214. PycWB-0.17.3/prototypes/messenger-web-interface/public/favicon.ico +0 -0
  215. PycWB-0.17.3/prototypes/messenger-web-interface/src/App.vue +45 -0
  216. PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/base.css +74 -0
  217. PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/cwb_icon_modern_blue_alfa.png +0 -0
  218. PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/main.css +35 -0
  219. PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/style.css +60 -0
  220. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/HelloWorld.vue +43 -0
  221. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/TheWelcome.vue +86 -0
  222. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/WelcomeItem.vue +85 -0
  223. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/__tests__/HelloWorld.spec.js +11 -0
  224. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconCommunity.vue +7 -0
  225. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconDocumentation.vue +7 -0
  226. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconEcosystem.vue +7 -0
  227. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconSupport.vue +7 -0
  228. PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconTooling.vue +19 -0
  229. PycWB-0.17.3/prototypes/messenger-web-interface/src/main.js +16 -0
  230. PycWB-0.17.3/prototypes/messenger-web-interface/src/router/index.js +14 -0
  231. PycWB-0.17.3/prototypes/messenger-web-interface/src/stores/counter.js +12 -0
  232. PycWB-0.17.3/prototypes/messenger-web-interface/src/views/drawflow.vue +200 -0
  233. PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/node1.vue +70 -0
  234. PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/node2.vue +88 -0
  235. PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/node3.vue +3 -0
  236. PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/nodeHeader.vue +22 -0
  237. PycWB-0.17.3/prototypes/messenger-web-interface/vite.config.js +14 -0
  238. PycWB-0.17.3/prototypes/search.yaml +141 -0
  239. PycWB-0.17.3/pycwb/__init__.py +7 -0
  240. PycWB-0.17.3/pycwb/_version.py +4 -0
  241. PycWB-0.17.3/pycwb/config/__init__.py +1 -0
  242. PycWB-0.17.3/pycwb/config/config.py +192 -0
  243. PycWB-0.17.3/pycwb/constants/__init__.py +6 -0
  244. PycWB-0.17.3/pycwb/constants/project_constants.py +1 -0
  245. PycWB-0.17.3/pycwb/constants/user_parameters_schema.py +533 -0
  246. PycWB-0.17.3/pycwb/messenger/__init__.py +0 -0
  247. PycWB-0.17.3/pycwb/messenger/messenger.py +15 -0
  248. PycWB-0.17.3/pycwb/modules/__init__.py +0 -0
  249. PycWB-0.17.3/pycwb/modules/autoencoder/__init__.py +1 -0
  250. PycWB-0.17.3/pycwb/modules/autoencoder/autoencoder.py +40 -0
  251. PycWB-0.17.3/pycwb/modules/autoencoder/cwb_autoencoder.py +189 -0
  252. PycWB-0.17.3/pycwb/modules/autoencoder/module.yaml +38 -0
  253. PycWB-0.17.3/pycwb/modules/catalog/__init__.py +1 -0
  254. PycWB-0.17.3/pycwb/modules/catalog/catalog.py +73 -0
  255. PycWB-0.17.3/pycwb/modules/catalog/module.yaml +4 -0
  256. PycWB-0.17.3/pycwb/modules/coherence/__init__.py +1 -0
  257. PycWB-0.17.3/pycwb/modules/coherence/coherence.py +190 -0
  258. PycWB-0.17.3/pycwb/modules/coherence/coherence_lite.py +194 -0
  259. PycWB-0.17.3/pycwb/modules/coherence/module.yaml +4 -0
  260. PycWB-0.17.3/pycwb/modules/condor/__init__.py +0 -0
  261. PycWB-0.17.3/pycwb/modules/condor/condor.py +88 -0
  262. PycWB-0.17.3/pycwb/modules/condor/module.yaml +4 -0
  263. PycWB-0.17.3/pycwb/modules/cwb_conversions/__init__.py +4 -0
  264. PycWB-0.17.3/pycwb/modules/cwb_conversions/cluster.py +105 -0
  265. PycWB-0.17.3/pycwb/modules/cwb_conversions/module.yaml +4 -0
  266. PycWB-0.17.3/pycwb/modules/cwb_conversions/pixel.py +41 -0
  267. PycWB-0.17.3/pycwb/modules/cwb_conversions/series.py +444 -0
  268. PycWB-0.17.3/pycwb/modules/cwb_conversions/sparse_series.py +34 -0
  269. PycWB-0.17.3/pycwb/modules/data_conditioning/__init__.py +3 -0
  270. PycWB-0.17.3/pycwb/modules/data_conditioning/data_conditioning.py +41 -0
  271. PycWB-0.17.3/pycwb/modules/data_conditioning/module.yaml +4 -0
  272. PycWB-0.17.3/pycwb/modules/data_conditioning/regression.py +55 -0
  273. PycWB-0.17.3/pycwb/modules/data_conditioning/whitening.py +58 -0
  274. PycWB-0.17.3/pycwb/modules/job_segment/__init__.py +3 -0
  275. PycWB-0.17.3/pycwb/modules/job_segment/dq_segment.py +181 -0
  276. PycWB-0.17.3/pycwb/modules/job_segment/frame.py +83 -0
  277. PycWB-0.17.3/pycwb/modules/job_segment/job_segment.py +169 -0
  278. PycWB-0.17.3/pycwb/modules/job_segment/module.yaml +4 -0
  279. PycWB-0.17.3/pycwb/modules/job_segment/plots.py +33 -0
  280. PycWB-0.17.3/pycwb/modules/job_segment/super_lag.py +76 -0
  281. PycWB-0.17.3/pycwb/modules/likelihood/__init__.py +1 -0
  282. PycWB-0.17.3/pycwb/modules/likelihood/likelihood.py +175 -0
  283. PycWB-0.17.3/pycwb/modules/likelihood/module.yaml +4 -0
  284. PycWB-0.17.3/pycwb/modules/logger/__init__.py +1 -0
  285. PycWB-0.17.3/pycwb/modules/logger/logger.py +25 -0
  286. PycWB-0.17.3/pycwb/modules/logger/module.yaml +4 -0
  287. PycWB-0.17.3/pycwb/modules/multi_resolution_wdm/__init__.py +1 -0
  288. PycWB-0.17.3/pycwb/modules/multi_resolution_wdm/module.yaml +4 -0
  289. PycWB-0.17.3/pycwb/modules/multi_resolution_wdm/wdm.py +80 -0
  290. PycWB-0.17.3/pycwb/modules/plot/__init__.py +2 -0
  291. PycWB-0.17.3/pycwb/modules/plot/cluster_statistics.py +21 -0
  292. PycWB-0.17.3/pycwb/modules/plot/event.py +21 -0
  293. PycWB-0.17.3/pycwb/modules/plot/module.yaml +4 -0
  294. PycWB-0.17.3/pycwb/modules/plot/spectrogram.py +65 -0
  295. PycWB-0.17.3/pycwb/modules/plot_data_quality/__init__.py +1 -0
  296. PycWB-0.17.3/pycwb/modules/plot_data_quality/module.yaml +4 -0
  297. PycWB-0.17.3/pycwb/modules/plot_data_quality/plot.py +35 -0
  298. PycWB-0.17.3/pycwb/modules/plot_map/__init__.py +0 -0
  299. PycWB-0.17.3/pycwb/modules/plot_map/module.yaml +4 -0
  300. PycWB-0.17.3/pycwb/modules/plot_map/world_map.py +98 -0
  301. PycWB-0.17.3/pycwb/modules/read_data/__init__.py +3 -0
  302. PycWB-0.17.3/pycwb/modules/read_data/data_check.py +63 -0
  303. PycWB-0.17.3/pycwb/modules/read_data/mdc.py +326 -0
  304. PycWB-0.17.3/pycwb/modules/read_data/module.yaml +4 -0
  305. PycWB-0.17.3/pycwb/modules/read_data/read_data.py +190 -0
  306. PycWB-0.17.3/pycwb/modules/reconstruction/__init__.py +1 -0
  307. PycWB-0.17.3/pycwb/modules/reconstruction/getMRAwaveform.py +171 -0
  308. PycWB-0.17.3/pycwb/modules/reconstruction/module.yaml +4 -0
  309. PycWB-0.17.3/pycwb/modules/sparse_series/__init__.py +1 -0
  310. PycWB-0.17.3/pycwb/modules/sparse_series/module.yaml +4 -0
  311. PycWB-0.17.3/pycwb/modules/sparse_series/sparse_table.py +52 -0
  312. PycWB-0.17.3/pycwb/modules/super_cluster/__init__.py +1 -0
  313. PycWB-0.17.3/pycwb/modules/super_cluster/module.yaml +4 -0
  314. PycWB-0.17.3/pycwb/modules/super_cluster/supercluster.py +167 -0
  315. PycWB-0.17.3/pycwb/modules/web_viewer/__init__.py +0 -0
  316. PycWB-0.17.3/pycwb/modules/web_viewer/create.py +11 -0
  317. PycWB-0.17.3/pycwb/modules/web_viewer/module.yaml +4 -0
  318. PycWB-0.17.3/pycwb/search.py +236 -0
  319. PycWB-0.17.3/pycwb/types/__init__.py +0 -0
  320. PycWB-0.17.3/pycwb/types/data_quality_file.py +130 -0
  321. PycWB-0.17.3/pycwb/types/detector.py +14 -0
  322. PycWB-0.17.3/pycwb/types/job.py +143 -0
  323. PycWB-0.17.3/pycwb/types/network.py +525 -0
  324. PycWB-0.17.3/pycwb/types/network_cluster.py +563 -0
  325. PycWB-0.17.3/pycwb/types/network_event.py +324 -0
  326. PycWB-0.17.3/pycwb/types/network_pixel.py +75 -0
  327. PycWB-0.17.3/pycwb/types/sparse_series.py +217 -0
  328. PycWB-0.17.3/pycwb/types/time_frequency_series.py +144 -0
  329. PycWB-0.17.3/pycwb/types/wdm.py +278 -0
  330. PycWB-0.17.3/pycwb/types/wdm_xtalk.py +81 -0
  331. PycWB-0.17.3/pycwb/utils/__init__.py +0 -0
  332. PycWB-0.17.3/pycwb/utils/async_write.py +25 -0
  333. PycWB-0.17.3/pycwb/utils/check_ROOT.py +28 -0
  334. PycWB-0.17.3/pycwb/utils/conversions/__init__.py +0 -0
  335. PycWB-0.17.3/pycwb/utils/conversions/timeseries.py +17 -0
  336. PycWB-0.17.3/pycwb/utils/dep_check.py +93 -0
  337. PycWB-0.17.3/pycwb/utils/image.py +45 -0
  338. PycWB-0.17.3/pycwb/utils/module.py +15 -0
  339. PycWB-0.17.3/pycwb/utils/network.py +41 -0
  340. PycWB-0.17.3/pycwb/utils/skymap_coord.py +15 -0
  341. PycWB-0.17.3/pycwb/utils/yaml_helper.py +48 -0
  342. PycWB-0.17.3/pycwb/vendor/__init__.py +0 -0
  343. PycWB-0.17.3/pycwb/vendor/autoencoder/__init__.py +0 -0
  344. PycWB-0.17.3/pycwb/vendor/autoencoder/cwb_autoencoder.h5 +0 -0
  345. PycWB-0.17.3/pycwb/vendor/example.yaml +65 -0
  346. PycWB-0.17.3/pycwb/vendor/lib/__init__.py +0 -0
  347. PycWB-0.17.3/pycwb/vendor/wdmXTalk/OverlapCatalog16-1024.bin +0 -0
  348. PycWB-0.17.3/pycwb/vendor/wdmXTalk/OverlapCatalog_Lev_8_16_32_64_128_256_iNu_4_Prec_10.bin +0 -0
  349. PycWB-0.17.3/pycwb/vendor/wdmXTalk/__init__.py +0 -0
  350. PycWB-0.17.3/pycwb/vendor/web_viewer/event_dump.html +138 -0
  351. PycWB-0.17.3/pycwb/vendor/web_viewer/styles.css +248 -0
  352. PycWB-0.17.3/pycwb/vendor/web_viewer/viewer.html +163 -0
  353. PycWB-0.17.3/pyproject.toml +17 -0
  354. PycWB-0.17.3/setup.cfg +4 -0
  355. PycWB-0.17.3/setup.py +168 -0
  356. PycWB-0.17.3/tests/new_pycwb_test.py +10 -0
  357. PycWB-0.17.3/tests/pycwb_mdc_test.py +20 -0
  358. PycWB-0.17.3/tests/pycwb_test.py +20 -0
  359. PycWB-0.17.3/tests/user_parameters_online.yaml +68 -0
  360. PycWB-0.17.3/tests/wdm_test.ipynb +411 -0
@@ -0,0 +1,25 @@
1
+ __pycache__
2
+ .DS_Store
3
+ .idea
4
+ *.egg-info
5
+ build
6
+ dist
7
+ output
8
+ log
9
+ messenger_test/data
10
+ docs/source/pycwb*.rst
11
+ docs/source/modules.rst
12
+
13
+ tests/*
14
+ .pytest_cache
15
+ *.iml
16
+ cwb-core/install
17
+ cwb-core/cmake-build-debug
18
+ */vendor/lib/*
19
+ !*/vendor/lib/*.py
20
+
21
+ messenger-web-interface/node_modules
22
+ messenger-web-interface/dist
23
+
24
+ cwb_wrapper/_version.py
25
+ pycwb/_version.py
@@ -0,0 +1,126 @@
1
+ # This file is a template, and might need editing before it works on your project.
2
+ # This is a sample GitLab CI/CD configuration file that should run without any modifications.
3
+ # It demonstrates a basic 3 stage CI/CD pipeline. Instead of real tests or scripts,
4
+ # it uses echo commands to simulate the pipeline execution.
5
+ #
6
+ # A pipeline is composed of independent jobs that run scripts, grouped into stages.
7
+ # Stages run in sequential order, but jobs within stages run in parallel.
8
+ #
9
+ # For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
10
+ #
11
+ # You can copy and paste this template into a new `.gitlab-ci.yml` file.
12
+ # You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
13
+ #
14
+ # To contribute improvements to CI/CD templates, please follow the Development guide at:
15
+ # https://docs.gitlab.com/ee/development/cicd/templates.html
16
+ # This specific template is located at:
17
+ # https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml
18
+ image: buildpack-deps:jammy
19
+
20
+ stages: # List of stages for jobs, and their order of execution
21
+ - build
22
+ - deploy
23
+ - post-deploy
24
+
25
+ .install_common: &install_common
26
+ - wget -q https://root.cern/download/root_v6.26.04.Linux-ubuntu22-x86_64-gcc11.2.tar.gz
27
+ - tar -xf root_v6.26.04.Linux-ubuntu22-x86_64-gcc11.2.tar.gz --strip-components=1 -C /usr/local/
28
+ - export ROOTSYS=/usr/local
29
+ - export PYTHONPATH=$ROOTSYS/lib:$PYTHONPATH
30
+ - export CLING_STANDARD_PCH=none
31
+ - apt-get update
32
+ - apt-get -y install git dpkg-dev cmake pkg-config g++ gcc binutils libx11-dev libxpm-dev libxft-dev libxext-dev tar gfortran subversion
33
+ - apt-get -y install libfftw3-dev libcfitsio9 libsharp0 python3-pip
34
+ - wget -q http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
35
+ - dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
36
+ - wget -q https://launchpad.net/ubuntu/+archive/primary/+files/libhealpix-cxx3_3.80.0-5_amd64.deb
37
+ - wget -q https://launchpad.net/ubuntu/+archive/primary/+files/libhealpix-cxx-dev_3.80.0-5_amd64.deb
38
+ - dpkg -i libhealpix-cxx3_3.80.0-5_amd64.deb
39
+ - dpkg -i libhealpix-cxx-dev_3.80.0-5_amd64.deb
40
+ - apt-get -y install python3-pip python3-venv
41
+ - ln -s /usr/bin/python3 /usr/bin/python
42
+ - python3 -m pip install pip setuptools -U
43
+
44
+ build-job: # This job runs in the build stage, which runs first.
45
+ stage: build
46
+ script:
47
+ - *install_common
48
+ - python3 -m pip install build
49
+ - python3 -m build --sdist
50
+ - pip install dist/*.tar.gz
51
+ - python3 -c "import pycwb; print(pycwb.__version__)"
52
+ artifacts:
53
+ paths:
54
+ - dist/*
55
+
56
+ publish:
57
+ image: python:3.10
58
+ stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
59
+ environment: production
60
+ only:
61
+ - tags
62
+ script:
63
+ - echo "Deploying to PyPI..."
64
+ - pip install twine
65
+ - TWINE_PASSWORD=${PYPI_TOKEN} TWINE_USERNAME=__token__ python -m twine upload dist/*
66
+
67
+ pages:
68
+ stage: post-deploy
69
+ rules:
70
+ - changes:
71
+ - docs/**/*
72
+ - if: '$CI_COMMIT_TAG'
73
+ script:
74
+ - *install_common
75
+ - pip install pycwb
76
+ - pip install "sphinx<7.0.0" sphinx_rtd_theme
77
+ - make doc
78
+ - mkdir public
79
+ - cp -r docs/build/html/* public/
80
+ artifacts:
81
+ paths:
82
+ - public
83
+ #test-job: # This job runs in the test stage.
84
+ # image: continuumio/miniconda3
85
+ # stage: test # It only starts when the job in the build stage completes successfully.
86
+ # script:
87
+ # - conda create -c conda-forge --name pycwb root=6.26.10
88
+ # - conda init bash
89
+ # - source ~/.bashrc
90
+ # - conda activate pycwb
91
+ # - conda install -c conda-forge healpix_cxx=3.81 nds2-client python-nds2-client lalsuite setuptools_scm cmake pkg-config make gxx_linux-64 binutils
92
+ # - make install
93
+ # - python -c "import pycwb; print(pycwb.__version__)"
94
+
95
+
96
+ #deploy-testPyPi: # This job runs in the deploy stage.
97
+ # stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
98
+ # environment: testing
99
+ # only:
100
+ # - tags
101
+ # script:
102
+ # - echo "Deploying to TestPyPI..."
103
+ # - pip install twine
104
+ # - TWINE_PASSWORD=${PYPI_TEST_TOKEN} TWINE_USERNAME=__token__ python -m twine upload --repository testpypi dist/*
105
+
106
+ #pages:
107
+ # stage: post-deploy
108
+ # rules:
109
+ # - changes:
110
+ # - docs/**/*
111
+ # - if: '$CI_COMMIT_TAG'
112
+ # image: continuumio/miniconda3
113
+ # script:
114
+ # - conda create --name pycwb
115
+ # - conda init bash
116
+ # - source ~/.bashrc
117
+ # - conda activate pycwb
118
+ # - conda install -c conda-forge root=6.26.10 healpix_cxx=3.81 nds2-client python-nds2-client lalsuite setuptools_scm cmake pkg-config make gxx_linux-64 binutils
119
+ # - pip install pycwb
120
+ # - pip install "sphinx<7.0.0" sphinx_rtd_theme
121
+ # - make doc
122
+ # - mkdir public
123
+ # - cp -r docs/build/html/* public/
124
+ # artifacts:
125
+ # paths:
126
+ # - public