Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • calibration/pycalibration
1 result
Show changes
......@@ -170,7 +170,7 @@ notebooks = {
"notebook":
"notebooks/Jungfrau/Jungfrau_dark_analysis_all_gains_burst_mode_NBC.ipynb", # noqa
"concurrency": {"parameter": "karabo_da",
"default concurrency": None,
"default concurrency": list(range(8)),
"cluster cores": 4},
},
"CORRECT": {
......
import os
import sys
# path into which temporary files from each run are placed
temp_path = "{}/temp/".format(os.getcwd())
temp_path = os.path.abspath("temp/")
# Path to use for calling Python. If the environment is correctly set, simply the command
python_path = "python"
# Path to use for calling iPython. If the environment is correctly set, simply the command
ipython_path = "ipython"
# Path to use for calling Jupyter. If the environment is correctly set, simply the command
jupyter_path = "jupyter"
# Path to find activate script
activate_path = ""
# Path to use for calling ipcluster. If the environment is correctly set, simply the command
ipcluster_path = "ipcluster"
# Path to use for calling Python. By default, the Python xfel-calibrate is run in.
python_path = sys.executable
# Path to store reports in
report_path = "{}/calibration_reports/".format(os.getcwd())
......