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.
- PycWB-0.17.3/.gitignore +25 -0
- PycWB-0.17.3/.gitlab-ci.yml +126 -0
- PycWB-0.17.3/LICENSE +674 -0
- PycWB-0.17.3/MANIFEST.in +7 -0
- PycWB-0.17.3/Makefile +26 -0
- PycWB-0.17.3/PKG-INFO +55 -0
- PycWB-0.17.3/PycWB.egg-info/PKG-INFO +55 -0
- PycWB-0.17.3/PycWB.egg-info/SOURCES.txt +358 -0
- PycWB-0.17.3/PycWB.egg-info/dependency_links.txt +1 -0
- PycWB-0.17.3/PycWB.egg-info/requires.txt +14 -0
- PycWB-0.17.3/PycWB.egg-info/top_level.txt +2 -0
- PycWB-0.17.3/README.md +44 -0
- PycWB-0.17.3/archived/bin/pycwb_gen_config +100 -0
- PycWB-0.17.3/archived/cwb_wrapper/__init__.py +88 -0
- PycWB-0.17.3/archived/cwb_wrapper/config/__init__.py +1 -0
- PycWB-0.17.3/archived/cwb_wrapper/config/cwb_config.py +107 -0
- PycWB-0.17.3/archived/cwb_wrapper/config/user_parameters.py +150 -0
- PycWB-0.17.3/archived/cwb_wrapper/constants/__init__.py +1 -0
- PycWB-0.17.3/archived/cwb_wrapper/constants/cwb_dict.py +22 -0
- PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/__init__.py +5 -0
- PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb.py +247 -0
- PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb_inet2G.py +76 -0
- PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb_root_logon.py +114 -0
- PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/cwb_xnet.py +104 -0
- PycWB-0.17.3/archived/cwb_wrapper/cwb_interface/utils.py +23 -0
- PycWB-0.17.3/archived/cwb_wrapper/tools/__init__.py +1 -0
- PycWB-0.17.3/archived/cwb_wrapper/tools/sim/__init__.py +18 -0
- PycWB-0.17.3/archived/cwb_wrapper/vendor/CreateFramesNOISE.C +106 -0
- PycWB-0.17.3/archived/cwb_wrapper/vendor/__init__.py +0 -0
- PycWB-0.17.3/archived/cwb_wrapper/vendor/dumb.c +1 -0
- PycWB-0.17.3/archived/event_interface/__init__.py +0 -0
- PycWB-0.17.3/archived/event_interface/handlers.py +92 -0
- PycWB-0.17.3/archived/event_interface/middlewares.py +17 -0
- PycWB-0.17.3/archived/messenger_test/__init__.py +0 -0
- PycWB-0.17.3/archived/messenger_test/_config.py +86 -0
- PycWB-0.17.3/archived/messenger_test/_handlers.py +81 -0
- PycWB-0.17.3/archived/messenger_test/_middlewares.py +17 -0
- PycWB-0.17.3/archived/messenger_test/run.py +13 -0
- PycWB-0.17.3/archived/netcluster.py +79 -0
- PycWB-0.17.3/archived/netpixel.py +12 -0
- PycWB-0.17.3/archived/pycwb_eda/__init__.py +0 -0
- PycWB-0.17.3/archived/pycwb_eda/_config.py +70 -0
- PycWB-0.17.3/archived/pycwb_eda/example.py +15 -0
- PycWB-0.17.3/bin/pycwb_search +79 -0
- PycWB-0.17.3/bin/pycwb_show +44 -0
- PycWB-0.17.3/cwb-core/Biorthogonal.cc +170 -0
- PycWB-0.17.3/cwb-core/Biorthogonal.hh +94 -0
- PycWB-0.17.3/cwb-core/CMakeLists.txt +183 -0
- PycWB-0.17.3/cwb-core/Daubechies.cc +488 -0
- PycWB-0.17.3/cwb-core/Daubechies.hh +94 -0
- PycWB-0.17.3/cwb-core/FourierCoefficients.icc +2483 -0
- PycWB-0.17.3/cwb-core/Haar.cc +169 -0
- PycWB-0.17.3/cwb-core/Haar.hh +82 -0
- PycWB-0.17.3/cwb-core/LineFilter.cc +1575 -0
- PycWB-0.17.3/cwb-core/LineFilter.hh +267 -0
- PycWB-0.17.3/cwb-core/Makefile +386 -0
- PycWB-0.17.3/cwb-core/Meyer.cc +741 -0
- PycWB-0.17.3/cwb-core/Meyer.hh +93 -0
- PycWB-0.17.3/cwb-core/Symlet.cc +493 -0
- PycWB-0.17.3/cwb-core/Symlet.hh +94 -0
- PycWB-0.17.3/cwb-core/SymmArray.cc +103 -0
- PycWB-0.17.3/cwb-core/SymmArray.hh +54 -0
- PycWB-0.17.3/cwb-core/SymmArraySSE.cc +118 -0
- PycWB-0.17.3/cwb-core/SymmArraySSE.hh +58 -0
- PycWB-0.17.3/cwb-core/SymmObjArray.cc +89 -0
- PycWB-0.17.3/cwb-core/SymmObjArray.hh +52 -0
- PycWB-0.17.3/cwb-core/WDM.cc +1722 -0
- PycWB-0.17.3/cwb-core/WDM.hh +189 -0
- PycWB-0.17.3/cwb-core/WDMOverlap.cc +375 -0
- PycWB-0.17.3/cwb-core/WDMOverlap.hh +104 -0
- PycWB-0.17.3/cwb-core/WaveDWT.cc +1038 -0
- PycWB-0.17.3/cwb-core/WaveDWT.hh +146 -0
- PycWB-0.17.3/cwb-core/Wavelet.cc +133 -0
- PycWB-0.17.3/cwb-core/Wavelet.hh +162 -0
- PycWB-0.17.3/cwb-core/alm.hh +251 -0
- PycWB-0.17.3/cwb-core/build.sh +50 -0
- PycWB-0.17.3/cwb-core/cluster.cc +1473 -0
- PycWB-0.17.3/cwb-core/cluster.hh +274 -0
- PycWB-0.17.3/cwb-core/cmake/FindHealpix.cmake +72 -0
- PycWB-0.17.3/cwb-core/cmake/FindeBBH.cmake +38 -0
- PycWB-0.17.3/cwb-core/cmake/install_function.cmake +35 -0
- PycWB-0.17.3/cwb-core/constants.hh +250 -0
- PycWB-0.17.3/cwb-core/detector.cc +2011 -0
- PycWB-0.17.3/cwb-core/detector.hh +412 -0
- PycWB-0.17.3/cwb-core/injection.cc +721 -0
- PycWB-0.17.3/cwb-core/injection.hh +206 -0
- PycWB-0.17.3/cwb-core/lossy.cc +369 -0
- PycWB-0.17.3/cwb-core/lossy.hh +58 -0
- PycWB-0.17.3/cwb-core/monster.cc +537 -0
- PycWB-0.17.3/cwb-core/monster.hh +130 -0
- PycWB-0.17.3/cwb-core/netcluster.cc +4176 -0
- PycWB-0.17.3/cwb-core/netcluster.hh +492 -0
- PycWB-0.17.3/cwb-core/netevent.cc +1713 -0
- PycWB-0.17.3/cwb-core/netevent.hh +417 -0
- PycWB-0.17.3/cwb-core/netpixel.cc +221 -0
- PycWB-0.17.3/cwb-core/netpixel.hh +147 -0
- PycWB-0.17.3/cwb-core/network.cc +8232 -0
- PycWB-0.17.3/cwb-core/network.hh +1506 -0
- PycWB-0.17.3/cwb-core/pycwb.hh +40 -0
- PycWB-0.17.3/cwb-core/rdfr.cc +130 -0
- PycWB-0.17.3/cwb-core/rdfr.hh +26 -0
- PycWB-0.17.3/cwb-core/readframe.cc +239 -0
- PycWB-0.17.3/cwb-core/readframe.hh +38 -0
- PycWB-0.17.3/cwb-core/readfrfile.cc +589 -0
- PycWB-0.17.3/cwb-core/readfrfile.hh +51 -0
- PycWB-0.17.3/cwb-core/regression.cc +948 -0
- PycWB-0.17.3/cwb-core/regression.hh +202 -0
- PycWB-0.17.3/cwb-core/skycoord.hh +445 -0
- PycWB-0.17.3/cwb-core/skymap.cc +1238 -0
- PycWB-0.17.3/cwb-core/skymap.hh +360 -0
- PycWB-0.17.3/cwb-core/sseries.cc +569 -0
- PycWB-0.17.3/cwb-core/sseries.hh +202 -0
- PycWB-0.17.3/cwb-core/time.cc +660 -0
- PycWB-0.17.3/cwb-core/time.hh +271 -0
- PycWB-0.17.3/cwb-core/wat.hh +195 -0
- PycWB-0.17.3/cwb-core/watasm.S +290 -0
- PycWB-0.17.3/cwb-core/watasm_elf64.o +0 -0
- PycWB-0.17.3/cwb-core/watavx.hh +1386 -0
- PycWB-0.17.3/cwb-core/watbranch.in +1 -0
- PycWB-0.17.3/cwb-core/watfun.hh +254 -0
- PycWB-0.17.3/cwb-core/wathash.in +1 -0
- PycWB-0.17.3/cwb-core/watplot.cc +1371 -0
- PycWB-0.17.3/cwb-core/watplot.hh +225 -0
- PycWB-0.17.3/cwb-core/watsse.hh +1303 -0
- PycWB-0.17.3/cwb-core/wattag.in +1 -0
- PycWB-0.17.3/cwb-core/waturl.in +1 -0
- PycWB-0.17.3/cwb-core/watversion.hh.in +59 -0
- PycWB-0.17.3/cwb-core/wavearray.cc +2336 -0
- PycWB-0.17.3/cwb-core/wavearray.hh +403 -0
- PycWB-0.17.3/cwb-core/wavecomplex.cc +102 -0
- PycWB-0.17.3/cwb-core/wavecomplex.hh +86 -0
- PycWB-0.17.3/cwb-core/wavecor.cc +343 -0
- PycWB-0.17.3/cwb-core/wavecor.hh +109 -0
- PycWB-0.17.3/cwb-core/wavefft.cc +665 -0
- PycWB-0.17.3/cwb-core/wavefft.hh +27 -0
- PycWB-0.17.3/cwb-core/wavelet_LinkDef.h +178 -0
- PycWB-0.17.3/cwb-core/wavelinefilter.cc +1506 -0
- PycWB-0.17.3/cwb-core/wavelinefilter.hh +234 -0
- PycWB-0.17.3/cwb-core/waverdc.cc +822 -0
- PycWB-0.17.3/cwb-core/waverdc.hh +120 -0
- PycWB-0.17.3/cwb-core/wseries.cc +2432 -0
- PycWB-0.17.3/cwb-core/wseries.hh +474 -0
- PycWB-0.17.3/cwb-core/wslice.hh +103 -0
- PycWB-0.17.3/docs/0.installation_guide.md +94 -0
- PycWB-0.17.3/docs/1.initialisation_guide.md +193 -0
- PycWB-0.17.3/docs/2.test_interactive_multistages_2G_analysis.md +209 -0
- PycWB-0.17.3/docs/3.run_pycwb_with_yaml_config.md +37 -0
- PycWB-0.17.3/docs/4.py_cwb_inet_2G.md +104 -0
- PycWB-0.17.3/docs/5.cwb2G_analyse.md +1467 -0
- PycWB-0.17.3/docs/6.wat_codes_notes.md +35 -0
- PycWB-0.17.3/docs/Makefile +20 -0
- PycWB-0.17.3/docs/diagram.py +129 -0
- PycWB-0.17.3/docs/make.bat +35 -0
- PycWB-0.17.3/docs/source/_static/.keep +0 -0
- PycWB-0.17.3/docs/source/_templates/.keep +0 -0
- PycWB-0.17.3/docs/source/conf.py +85 -0
- PycWB-0.17.3/docs/source/credit.rst +30 -0
- PycWB-0.17.3/docs/source/index.rst +103 -0
- PycWB-0.17.3/docs/source/install.rst +64 -0
- PycWB-0.17.3/docs/source/mod_cwb.rst +64 -0
- PycWB-0.17.3/docs/source/package.rst +14 -0
- PycWB-0.17.3/docs/source/schema.rst +12 -0
- PycWB-0.17.3/docs/source/tutorial_batch_inj.rst +6 -0
- PycWB-0.17.3/docs/source/tutorial_customized_wf_gen.rst +7 -0
- PycWB-0.17.3/docs/source/tutorial_injection.rst +119 -0
- PycWB-0.17.3/docs/source/tutorial_multi_injection.rst +8 -0
- PycWB-0.17.3/docs/source/tutorial_search.rst +179 -0
- PycWB-0.17.3/docs/source/tutorials.rst +16 -0
- PycWB-0.17.3/docs/source/workflow.png +0 -0
- PycWB-0.17.3/examples/autoencoder/pycwb_injection.ipynb +283 -0
- PycWB-0.17.3/examples/autoencoder/user_parameters_injection.yaml +92 -0
- PycWB-0.17.3/examples/batch_injection/generate_parameters.py +20 -0
- PycWB-0.17.3/examples/batch_injection/pycbc_inject/hyperbolicTD/__init__.py +11 -0
- PycWB-0.17.3/examples/batch_injection/pycbc_inject/hyperbolicTD/parameters.py +651 -0
- PycWB-0.17.3/examples/batch_injection/pycbc_inject/hyperbolicTD/waveform.py +1256 -0
- PycWB-0.17.3/examples/batch_injection/pycwb_injection.py +3 -0
- PycWB-0.17.3/examples/batch_injection/user_parameters_injection.yaml +86 -0
- PycWB-0.17.3/examples/benchmark/DQ/H1_cat0.txt +416 -0
- PycWB-0.17.3/examples/benchmark/DQ/H1_cat1.txt +1042 -0
- PycWB-0.17.3/examples/benchmark/DQ/H1_cat2.txt +22602 -0
- PycWB-0.17.3/examples/benchmark/DQ/H1_cat4.txt +2 -0
- PycWB-0.17.3/examples/benchmark/DQ/L1_cat0.txt +363 -0
- PycWB-0.17.3/examples/benchmark/DQ/L1_cat1.txt +1199 -0
- PycWB-0.17.3/examples/benchmark/DQ/L1_cat2.txt +29295 -0
- PycWB-0.17.3/examples/benchmark/DQ/L1_cat4.txt +4 -0
- PycWB-0.17.3/examples/benchmark/input/OPBM.period +1 -0
- PycWB-0.17.3/examples/benchmark/input/OPBM_H1.frames +3377 -0
- PycWB-0.17.3/examples/benchmark/input/OPBM_L1.frames +3363 -0
- PycWB-0.17.3/examples/benchmark/pycwb_mdc.py +3 -0
- PycWB-0.17.3/examples/benchmark/user_parameters_mdc.yaml +89 -0
- PycWB-0.17.3/examples/injection/pycwb_injection.ipynb +246 -0
- PycWB-0.17.3/examples/injection/pycwb_injection.py +3 -0
- PycWB-0.17.3/examples/injection/user_parameters_injection.yaml +92 -0
- PycWB-0.17.3/examples/multiple_injection/pycwb_injection.py +3 -0
- PycWB-0.17.3/examples/multiple_injection/user_parameters_injection.yaml +104 -0
- PycWB-0.17.3/examples/pyseobnr_injection/generate_parameters.py +22 -0
- PycWB-0.17.3/examples/pyseobnr_injection/user_parameters_injection.yaml +85 -0
- PycWB-0.17.3/examples/pyseobnr_injection/waveform_model/__init__.py +0 -0
- PycWB-0.17.3/examples/pyseobnr_injection/waveform_model/waveform.py +28 -0
- PycWB-0.17.3/prototypes/cwb_core/coherence.cc +316 -0
- PycWB-0.17.3/prototypes/cwb_core/coherence.hh +36 -0
- PycWB-0.17.3/prototypes/cwb_core/likelihood.cc +941 -0
- PycWB-0.17.3/prototypes/cwb_core/likelihood.hh +201 -0
- PycWB-0.17.3/prototypes/messenger/__init__.py +279 -0
- PycWB-0.17.3/prototypes/messenger/server.py +76 -0
- PycWB-0.17.3/prototypes/messenger/visualizition.py +0 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/.eslintrc.cjs +14 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/.gitignore +28 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/.prettierrc.json +1 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/README.md +41 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/index.html +13 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/package-lock.json +3343 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/package.json +33 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/public/favicon.ico +0 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/App.vue +45 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/base.css +74 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/cwb_icon_modern_blue_alfa.png +0 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/main.css +35 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/assets/style.css +60 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/HelloWorld.vue +43 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/TheWelcome.vue +86 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/WelcomeItem.vue +85 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/__tests__/HelloWorld.spec.js +11 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconCommunity.vue +7 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconDocumentation.vue +7 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconEcosystem.vue +7 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconSupport.vue +7 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/components/icons/IconTooling.vue +19 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/main.js +16 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/router/index.js +14 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/stores/counter.js +12 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/views/drawflow.vue +200 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/node1.vue +70 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/node2.vue +88 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/node3.vue +3 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/src/views/nodes/nodeHeader.vue +22 -0
- PycWB-0.17.3/prototypes/messenger-web-interface/vite.config.js +14 -0
- PycWB-0.17.3/prototypes/search.yaml +141 -0
- PycWB-0.17.3/pycwb/__init__.py +7 -0
- PycWB-0.17.3/pycwb/_version.py +4 -0
- PycWB-0.17.3/pycwb/config/__init__.py +1 -0
- PycWB-0.17.3/pycwb/config/config.py +192 -0
- PycWB-0.17.3/pycwb/constants/__init__.py +6 -0
- PycWB-0.17.3/pycwb/constants/project_constants.py +1 -0
- PycWB-0.17.3/pycwb/constants/user_parameters_schema.py +533 -0
- PycWB-0.17.3/pycwb/messenger/__init__.py +0 -0
- PycWB-0.17.3/pycwb/messenger/messenger.py +15 -0
- PycWB-0.17.3/pycwb/modules/__init__.py +0 -0
- PycWB-0.17.3/pycwb/modules/autoencoder/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/autoencoder/autoencoder.py +40 -0
- PycWB-0.17.3/pycwb/modules/autoencoder/cwb_autoencoder.py +189 -0
- PycWB-0.17.3/pycwb/modules/autoencoder/module.yaml +38 -0
- PycWB-0.17.3/pycwb/modules/catalog/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/catalog/catalog.py +73 -0
- PycWB-0.17.3/pycwb/modules/catalog/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/coherence/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/coherence/coherence.py +190 -0
- PycWB-0.17.3/pycwb/modules/coherence/coherence_lite.py +194 -0
- PycWB-0.17.3/pycwb/modules/coherence/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/condor/__init__.py +0 -0
- PycWB-0.17.3/pycwb/modules/condor/condor.py +88 -0
- PycWB-0.17.3/pycwb/modules/condor/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/cwb_conversions/__init__.py +4 -0
- PycWB-0.17.3/pycwb/modules/cwb_conversions/cluster.py +105 -0
- PycWB-0.17.3/pycwb/modules/cwb_conversions/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/cwb_conversions/pixel.py +41 -0
- PycWB-0.17.3/pycwb/modules/cwb_conversions/series.py +444 -0
- PycWB-0.17.3/pycwb/modules/cwb_conversions/sparse_series.py +34 -0
- PycWB-0.17.3/pycwb/modules/data_conditioning/__init__.py +3 -0
- PycWB-0.17.3/pycwb/modules/data_conditioning/data_conditioning.py +41 -0
- PycWB-0.17.3/pycwb/modules/data_conditioning/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/data_conditioning/regression.py +55 -0
- PycWB-0.17.3/pycwb/modules/data_conditioning/whitening.py +58 -0
- PycWB-0.17.3/pycwb/modules/job_segment/__init__.py +3 -0
- PycWB-0.17.3/pycwb/modules/job_segment/dq_segment.py +181 -0
- PycWB-0.17.3/pycwb/modules/job_segment/frame.py +83 -0
- PycWB-0.17.3/pycwb/modules/job_segment/job_segment.py +169 -0
- PycWB-0.17.3/pycwb/modules/job_segment/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/job_segment/plots.py +33 -0
- PycWB-0.17.3/pycwb/modules/job_segment/super_lag.py +76 -0
- PycWB-0.17.3/pycwb/modules/likelihood/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/likelihood/likelihood.py +175 -0
- PycWB-0.17.3/pycwb/modules/likelihood/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/logger/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/logger/logger.py +25 -0
- PycWB-0.17.3/pycwb/modules/logger/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/multi_resolution_wdm/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/multi_resolution_wdm/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/multi_resolution_wdm/wdm.py +80 -0
- PycWB-0.17.3/pycwb/modules/plot/__init__.py +2 -0
- PycWB-0.17.3/pycwb/modules/plot/cluster_statistics.py +21 -0
- PycWB-0.17.3/pycwb/modules/plot/event.py +21 -0
- PycWB-0.17.3/pycwb/modules/plot/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/plot/spectrogram.py +65 -0
- PycWB-0.17.3/pycwb/modules/plot_data_quality/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/plot_data_quality/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/plot_data_quality/plot.py +35 -0
- PycWB-0.17.3/pycwb/modules/plot_map/__init__.py +0 -0
- PycWB-0.17.3/pycwb/modules/plot_map/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/plot_map/world_map.py +98 -0
- PycWB-0.17.3/pycwb/modules/read_data/__init__.py +3 -0
- PycWB-0.17.3/pycwb/modules/read_data/data_check.py +63 -0
- PycWB-0.17.3/pycwb/modules/read_data/mdc.py +326 -0
- PycWB-0.17.3/pycwb/modules/read_data/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/read_data/read_data.py +190 -0
- PycWB-0.17.3/pycwb/modules/reconstruction/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/reconstruction/getMRAwaveform.py +171 -0
- PycWB-0.17.3/pycwb/modules/reconstruction/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/sparse_series/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/sparse_series/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/sparse_series/sparse_table.py +52 -0
- PycWB-0.17.3/pycwb/modules/super_cluster/__init__.py +1 -0
- PycWB-0.17.3/pycwb/modules/super_cluster/module.yaml +4 -0
- PycWB-0.17.3/pycwb/modules/super_cluster/supercluster.py +167 -0
- PycWB-0.17.3/pycwb/modules/web_viewer/__init__.py +0 -0
- PycWB-0.17.3/pycwb/modules/web_viewer/create.py +11 -0
- PycWB-0.17.3/pycwb/modules/web_viewer/module.yaml +4 -0
- PycWB-0.17.3/pycwb/search.py +236 -0
- PycWB-0.17.3/pycwb/types/__init__.py +0 -0
- PycWB-0.17.3/pycwb/types/data_quality_file.py +130 -0
- PycWB-0.17.3/pycwb/types/detector.py +14 -0
- PycWB-0.17.3/pycwb/types/job.py +143 -0
- PycWB-0.17.3/pycwb/types/network.py +525 -0
- PycWB-0.17.3/pycwb/types/network_cluster.py +563 -0
- PycWB-0.17.3/pycwb/types/network_event.py +324 -0
- PycWB-0.17.3/pycwb/types/network_pixel.py +75 -0
- PycWB-0.17.3/pycwb/types/sparse_series.py +217 -0
- PycWB-0.17.3/pycwb/types/time_frequency_series.py +144 -0
- PycWB-0.17.3/pycwb/types/wdm.py +278 -0
- PycWB-0.17.3/pycwb/types/wdm_xtalk.py +81 -0
- PycWB-0.17.3/pycwb/utils/__init__.py +0 -0
- PycWB-0.17.3/pycwb/utils/async_write.py +25 -0
- PycWB-0.17.3/pycwb/utils/check_ROOT.py +28 -0
- PycWB-0.17.3/pycwb/utils/conversions/__init__.py +0 -0
- PycWB-0.17.3/pycwb/utils/conversions/timeseries.py +17 -0
- PycWB-0.17.3/pycwb/utils/dep_check.py +93 -0
- PycWB-0.17.3/pycwb/utils/image.py +45 -0
- PycWB-0.17.3/pycwb/utils/module.py +15 -0
- PycWB-0.17.3/pycwb/utils/network.py +41 -0
- PycWB-0.17.3/pycwb/utils/skymap_coord.py +15 -0
- PycWB-0.17.3/pycwb/utils/yaml_helper.py +48 -0
- PycWB-0.17.3/pycwb/vendor/__init__.py +0 -0
- PycWB-0.17.3/pycwb/vendor/autoencoder/__init__.py +0 -0
- PycWB-0.17.3/pycwb/vendor/autoencoder/cwb_autoencoder.h5 +0 -0
- PycWB-0.17.3/pycwb/vendor/example.yaml +65 -0
- PycWB-0.17.3/pycwb/vendor/lib/__init__.py +0 -0
- PycWB-0.17.3/pycwb/vendor/wdmXTalk/OverlapCatalog16-1024.bin +0 -0
- PycWB-0.17.3/pycwb/vendor/wdmXTalk/OverlapCatalog_Lev_8_16_32_64_128_256_iNu_4_Prec_10.bin +0 -0
- PycWB-0.17.3/pycwb/vendor/wdmXTalk/__init__.py +0 -0
- PycWB-0.17.3/pycwb/vendor/web_viewer/event_dump.html +138 -0
- PycWB-0.17.3/pycwb/vendor/web_viewer/styles.css +248 -0
- PycWB-0.17.3/pycwb/vendor/web_viewer/viewer.html +163 -0
- PycWB-0.17.3/pyproject.toml +17 -0
- PycWB-0.17.3/setup.cfg +4 -0
- PycWB-0.17.3/setup.py +168 -0
- PycWB-0.17.3/tests/new_pycwb_test.py +10 -0
- PycWB-0.17.3/tests/pycwb_mdc_test.py +20 -0
- PycWB-0.17.3/tests/pycwb_test.py +20 -0
- PycWB-0.17.3/tests/user_parameters_online.yaml +68 -0
- PycWB-0.17.3/tests/wdm_test.ipynb +411 -0
PycWB-0.17.3/.gitignore
ADDED
|
@@ -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
|