-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation / poetry improvements and fixes #773
Open
sjoerd-bouma
wants to merge
12
commits into
develop
Choose a base branch
from
poetry/improve-optional-deps
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
66942b8
add instructions to install development version with pip
sjoerd-bouma 89e0105
improve installation of optional dependencies
sjoerd-bouma 1ab79e5
improve and update some installation documentation
sjoerd-bouma 3c54d3a
update documentation of optional dependencies
sjoerd-bouma 5293ae7
Merge branch 'develop' of github.com:nu-radio/NuRadioMC into poetry/i…
sjoerd-bouma e0d5e61
add missing pre_trigger_times to trigger subclass docstrings
sjoerd-bouma a9b2787
reduce toctree maxdepth for API documentation
sjoerd-bouma bada1f9
add some more documentation for db_mongo_read
sjoerd-bouma 78af870
tidy up times.rst somewhat
sjoerd-bouma 2dba3b8
remove unused debug argument
sjoerd-bouma be43926
Merge branch 'develop' of github.com:nu-radio/NuRadioMC into poetry/i…
sjoerd-bouma b703b62
improve documentation of trigger times
sjoerd-bouma File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -213,8 +213,11 @@ def __init__(self, run_table_path=None, load_run_table=True, log_level=logging.N | |
self.logger.warn("No connect to RunTable database could be established. " | ||
"Runs can not be filtered.") | ||
except ImportError: | ||
self.logger.warn("Import of run table failed. Runs can not be filtered.! \n" | ||
"You can get the interface from GitHub: [email protected]:RNO-G/rnog-runtable.git") | ||
self.logger.warn( | ||
"import run_table failed. You can still use readRNOGData, but runs can not be filtered. " | ||
"To install the run table, run\n\n" | ||
"\tpip install git+ssh://[email protected]/RNO-G/rnog-runtable.git\n" | ||
) | ||
else: | ||
# some users may mistakenly try to pass the .root files to __init__ | ||
# we check for this and raise a (hopefully) helpful error message | ||
|
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
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The absolute time of the trigger with respect to the beginning of the event sounds like a contradiction by itself to me. If it relative to e.g., the
station_time
orevent_time
I would specify this.