├── .clang-format ├── .gitignore ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── README.md ├── example └── test.ipynb ├── figures ├── example.jpg └── example2.jpg ├── include ├── config.h ├── myAlloc.h ├── myDatatypes.h ├── myFileIO.h ├── myLog.h ├── myOptparser.h ├── mySpherical.h ├── myUtils.h ├── newFactorizedWaveform.h ├── newFactorizedWaveformPrec.h ├── pBHRingdown.h ├── pCore.h ├── pDebug.h ├── pEnergyFlux.h ├── pFactorizedWaveform.h ├── pHamiltonian.h ├── pHamiltonianDerivatives.h ├── pInitialCondition.h ├── pInitialConditionExact.h ├── pMemory.h ├── pNQCcorrection.h ├── pPrec.h ├── pPrecHam.h ├── pPrecRRForce.h ├── pPrecUtils.h ├── pPrecWaveform.h ├── pRK4pdeIntegrator.h ├── pStructs.h └── pUtils.h ├── pySEOBNREPHM ├── __init__.py ├── ctype_structs.py ├── detector │ ├── __init__.py │ ├── detector.py │ └── psd │ │ ├── AplusDesign.txt │ │ ├── ET-0000A-18_ETDSensitivityCurveTxtFile.txt │ │ ├── ET-D-1-0000A-18.txt │ │ ├── ET-D-2-0000A-18.txt │ │ ├── ET-D-3-0000A-18.txt │ │ ├── LIGO-P1200087-v18-aLIGO_DESIGN.txt │ │ ├── LIGO-P1600143-v18-CE.txt │ │ ├── LIGO-P1600143-v18-CE_Pessimistic.txt │ │ ├── LIGO-P1600143-v18-CE_Wideband.txt │ │ ├── LIGO-P1600143-v18-ET_D.txt │ │ ├── LIGO-T0900288-v3-ZERO_DET_high_P.txt │ │ ├── LIGOHanford_O3PSD-1241571618-21600.txt │ │ ├── LIGOLivingston_O3PSD-1241571618-21600.txt │ │ ├── Virgo_O3PSD-1241571618-21600.txt │ │ ├── ZERO_DET_high_P.txt │ │ ├── aligo_O3actual_H1.txt │ │ ├── aligo_O3actual_L1.txt │ │ ├── aligo_O4high.txt │ │ ├── aligo_O4low.txt │ │ ├── avirgo_O3actual.txt │ │ ├── avirgo_O4high_NEW.txt │ │ ├── avirgo_O5high_NEW.txt │ │ ├── avirgo_O5low_NEW.txt │ │ ├── cosmic_explorer.txt │ │ ├── cosmic_explorer_20km.txt │ │ ├── cosmic_explorer_20km_pm.txt │ │ ├── cosmic_explorer_40km_lf.txt │ │ ├── kagra_128Mpc.txt │ │ ├── kagra_25Mpc.txt │ │ └── kagra_80Mpc.txt ├── lib │ └── libEOB.so ├── mcmc.py ├── mcmc_bilby.py ├── mode_collector.py ├── pyUtils.py ├── pycbc_plugin.py └── waveform.py ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── src ├── interface.c ├── main.c ├── myAlloc.c ├── myFileIO.c ├── myLog.c ├── myOptparser.c ├── mySpherical.c ├── myUtils.c ├── newFactorizedWaveform.c ├── newFactorizedWaveformPrec.c ├── pBHRingdown.c ├── pCore.c ├── pDebug.c ├── pEnergyFlux.c ├── pEvolve.c ├── pFactorizedWaveform.c ├── pHamiltonian.c ├── pHamiltonianDerivatives.c ├── pInitialCondition.c ├── pInitialConditionExact.c ├── pMemory.c ├── pNQCcorrection.c ├── pPrec.c ├── pPrecHam.c ├── pPrecRRForce.c ├── pPrecUtils.c ├── pPrecWaveform.c ├── pRK4pdeIntegrator.c └── pUtils.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/README.md -------------------------------------------------------------------------------- /example/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/example/test.ipynb -------------------------------------------------------------------------------- /figures/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/figures/example.jpg -------------------------------------------------------------------------------- /figures/example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/figures/example2.jpg -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/config.h -------------------------------------------------------------------------------- /include/myAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/myAlloc.h -------------------------------------------------------------------------------- /include/myDatatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/myDatatypes.h -------------------------------------------------------------------------------- /include/myFileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/myFileIO.h -------------------------------------------------------------------------------- /include/myLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/myLog.h -------------------------------------------------------------------------------- /include/myOptparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/myOptparser.h -------------------------------------------------------------------------------- /include/mySpherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/mySpherical.h -------------------------------------------------------------------------------- /include/myUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/myUtils.h -------------------------------------------------------------------------------- /include/newFactorizedWaveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/newFactorizedWaveform.h -------------------------------------------------------------------------------- /include/newFactorizedWaveformPrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/newFactorizedWaveformPrec.h -------------------------------------------------------------------------------- /include/pBHRingdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pBHRingdown.h -------------------------------------------------------------------------------- /include/pCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pCore.h -------------------------------------------------------------------------------- /include/pDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pDebug.h -------------------------------------------------------------------------------- /include/pEnergyFlux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pEnergyFlux.h -------------------------------------------------------------------------------- /include/pFactorizedWaveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pFactorizedWaveform.h -------------------------------------------------------------------------------- /include/pHamiltonian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pHamiltonian.h -------------------------------------------------------------------------------- /include/pHamiltonianDerivatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pHamiltonianDerivatives.h -------------------------------------------------------------------------------- /include/pInitialCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pInitialCondition.h -------------------------------------------------------------------------------- /include/pInitialConditionExact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pInitialConditionExact.h -------------------------------------------------------------------------------- /include/pMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pMemory.h -------------------------------------------------------------------------------- /include/pNQCcorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pNQCcorrection.h -------------------------------------------------------------------------------- /include/pPrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pPrec.h -------------------------------------------------------------------------------- /include/pPrecHam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pPrecHam.h -------------------------------------------------------------------------------- /include/pPrecRRForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pPrecRRForce.h -------------------------------------------------------------------------------- /include/pPrecUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pPrecUtils.h -------------------------------------------------------------------------------- /include/pPrecWaveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pPrecWaveform.h -------------------------------------------------------------------------------- /include/pRK4pdeIntegrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pRK4pdeIntegrator.h -------------------------------------------------------------------------------- /include/pStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pStructs.h -------------------------------------------------------------------------------- /include/pUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/include/pUtils.h -------------------------------------------------------------------------------- /pySEOBNREPHM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/__init__.py -------------------------------------------------------------------------------- /pySEOBNREPHM/ctype_structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/ctype_structs.py -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/__init__.py -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/detector.py -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/AplusDesign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/AplusDesign.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/ET-0000A-18_ETDSensitivityCurveTxtFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/ET-0000A-18_ETDSensitivityCurveTxtFile.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/ET-D-1-0000A-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/ET-D-1-0000A-18.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/ET-D-2-0000A-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/ET-D-2-0000A-18.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/ET-D-3-0000A-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/ET-D-3-0000A-18.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGO-P1200087-v18-aLIGO_DESIGN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGO-P1200087-v18-aLIGO_DESIGN.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-CE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-CE.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-CE_Pessimistic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-CE_Pessimistic.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-CE_Wideband.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-CE_Wideband.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-ET_D.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGO-P1600143-v18-ET_D.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGO-T0900288-v3-ZERO_DET_high_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGO-T0900288-v3-ZERO_DET_high_P.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGOHanford_O3PSD-1241571618-21600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGOHanford_O3PSD-1241571618-21600.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/LIGOLivingston_O3PSD-1241571618-21600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/LIGOLivingston_O3PSD-1241571618-21600.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/Virgo_O3PSD-1241571618-21600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/Virgo_O3PSD-1241571618-21600.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/ZERO_DET_high_P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/ZERO_DET_high_P.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/aligo_O3actual_H1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/aligo_O3actual_H1.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/aligo_O3actual_L1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/aligo_O3actual_L1.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/aligo_O4high.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/aligo_O4high.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/aligo_O4low.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/aligo_O4low.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/avirgo_O3actual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/avirgo_O3actual.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/avirgo_O4high_NEW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/avirgo_O4high_NEW.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/avirgo_O5high_NEW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/avirgo_O5high_NEW.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/avirgo_O5low_NEW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/avirgo_O5low_NEW.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/cosmic_explorer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/cosmic_explorer.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/cosmic_explorer_20km.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/cosmic_explorer_20km.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/cosmic_explorer_20km_pm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/cosmic_explorer_20km_pm.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/cosmic_explorer_40km_lf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/cosmic_explorer_40km_lf.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/kagra_128Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/kagra_128Mpc.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/kagra_25Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/kagra_25Mpc.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/detector/psd/kagra_80Mpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/detector/psd/kagra_80Mpc.txt -------------------------------------------------------------------------------- /pySEOBNREPHM/lib/libEOB.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/lib/libEOB.so -------------------------------------------------------------------------------- /pySEOBNREPHM/mcmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/mcmc.py -------------------------------------------------------------------------------- /pySEOBNREPHM/mcmc_bilby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/mcmc_bilby.py -------------------------------------------------------------------------------- /pySEOBNREPHM/mode_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/mode_collector.py -------------------------------------------------------------------------------- /pySEOBNREPHM/pyUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/pyUtils.py -------------------------------------------------------------------------------- /pySEOBNREPHM/pycbc_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/pycbc_plugin.py -------------------------------------------------------------------------------- /pySEOBNREPHM/waveform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/pySEOBNREPHM/waveform.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | black 2 | flake8 3 | isort 4 | pre-commit 5 | blacken-docs 6 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/setup.py -------------------------------------------------------------------------------- /src/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/interface.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/main.c -------------------------------------------------------------------------------- /src/myAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/myAlloc.c -------------------------------------------------------------------------------- /src/myFileIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/myFileIO.c -------------------------------------------------------------------------------- /src/myLog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/myLog.c -------------------------------------------------------------------------------- /src/myOptparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/myOptparser.c -------------------------------------------------------------------------------- /src/mySpherical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/mySpherical.c -------------------------------------------------------------------------------- /src/myUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/myUtils.c -------------------------------------------------------------------------------- /src/newFactorizedWaveform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/newFactorizedWaveform.c -------------------------------------------------------------------------------- /src/newFactorizedWaveformPrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/newFactorizedWaveformPrec.c -------------------------------------------------------------------------------- /src/pBHRingdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pBHRingdown.c -------------------------------------------------------------------------------- /src/pCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pCore.c -------------------------------------------------------------------------------- /src/pDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pDebug.c -------------------------------------------------------------------------------- /src/pEnergyFlux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pEnergyFlux.c -------------------------------------------------------------------------------- /src/pEvolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pEvolve.c -------------------------------------------------------------------------------- /src/pFactorizedWaveform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pFactorizedWaveform.c -------------------------------------------------------------------------------- /src/pHamiltonian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pHamiltonian.c -------------------------------------------------------------------------------- /src/pHamiltonianDerivatives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pHamiltonianDerivatives.c -------------------------------------------------------------------------------- /src/pInitialCondition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pInitialCondition.c -------------------------------------------------------------------------------- /src/pInitialConditionExact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pInitialConditionExact.c -------------------------------------------------------------------------------- /src/pMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pMemory.c -------------------------------------------------------------------------------- /src/pNQCcorrection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pNQCcorrection.c -------------------------------------------------------------------------------- /src/pPrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pPrec.c -------------------------------------------------------------------------------- /src/pPrecHam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pPrecHam.c -------------------------------------------------------------------------------- /src/pPrecRRForce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pPrecRRForce.c -------------------------------------------------------------------------------- /src/pPrecUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pPrecUtils.c -------------------------------------------------------------------------------- /src/pPrecWaveform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pPrecWaveform.c -------------------------------------------------------------------------------- /src/pRK4pdeIntegrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pRK4pdeIntegrator.c -------------------------------------------------------------------------------- /src/pUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shallyn/pyWaveformGenerator/HEAD/src/pUtils.c --------------------------------------------------------------------------------