-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update morpho; use python3 for tests; update syntax for pyroot
- Loading branch information
1 parent
46502e6
commit 4d8178a
Showing
5 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule morpho
updated
19 files
+0 −1 | .gitignore | |
+21 −0 | .readthedocs.yaml | |
+5 −4 | Dockerfile | |
+5 −5 | README.md | |
+13 −5 | documentation/conf.py | |
+3 −2 | documentation/contribute.rst | |
+2 −0 | documentation/index.rst | |
+1 −1 | documentation/install.rst | |
+43 −40 | documentation/morpho1.rst | |
+1 −1 | documentation/morpho2newprocessors.rst | |
+6 −0 | documentation/requirements.txt | |
+14 −2 | documentation/validation_log.rst | |
+22 −14 | morpho/processors/IO/IOROOTProcessor.py | |
+16 −12 | morpho/processors/sampling/PyBindRooFitProcessor.py | |
+12 −0 | requirements.txt | |
+10 −20 | setup.py | |
+0 −3 | tests/IO/IO_test.py | |
+0 −1 | tests/sampling/sampling_test.py | |
+18 −5 | tests/test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
python IO_test.py | ||
python Misc_test.py | ||
python Tritium_test.py | ||
python TritiumAndEfficiencyBinner_test.py | ||
python Fake_data_generator_test.py | ||
python3 IO_test.py | ||
python3 Misc_test.py | ||
python3 Tritium_test.py | ||
python3 TritiumAndEfficiencyBinner_test.py | ||
python3 Fake_data_generator_test.py |