-
Notifications
You must be signed in to change notification settings - Fork 129
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
podio::DataSource #309
Merged
Merged
podio::DataSource #309
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
b6d1734
Integrating EDM4hep RDataSource
kjvbrt 264899a
Add legacy reader
kjvbrt 93fd3ac
Split off legacy reader
kjvbrt a2172d0
Protecting collection retrieval by mutex
kjvbrt 58292c8
Add source test
kjvbrt 96600f5
Updated man pages
kjvbrt 33a357f
Renaming Source na DataSource
kjvbrt ca7e91e
Adding source test for run stages
kjvbrt ccd3671
Add tests for the standalone mode
kjvbrt da73dbb
Adding test files per process for histmaker
kjvbrt 616a827
Adding selector by size and sorter by pT
kjvbrt 2187e48
Few more analyzers
kjvbrt a61b6cf
Putting back things omitted from run_analysis.py
kjvbrt 1530e5e
Adding e4hsource in LD_LIBRARY_PATH for managed tests
kjvbrt 285a170
Making building of the source optional
kjvbrt e1aa165
Removed legacy support
kjvbrt 9d74103
Separated analyzers using Collections into independent headers
kjvbrt 258813c
Reimplementing analyzers needed for the stage1 of the example analysis
kjvbrt 311379b
Adjusitng test input files
kjvbrt 27dcbbd
Moving recoParticle definition
kjvbrt 97db64b
Changes to use podio::ROOTDataSource
kjvbrt b1b76c3
using podio::DataSource
kjvbrt ce2981f
Adjusting stages source example
kjvbrt 005ac4e
Adding C++ analysis tests
kjvbrt 53f3402
Updating examples
kjvbrt 7bd35ce
Formatting
kjvbrt d1aad33
Removing e4hsource
kjvbrt c2aa199
Adjust clang-format check
kjvbrt eb6dffe
Formatting
kjvbrt 026ff54
Using PodioSource namespace
kjvbrt c0eb383
Adding .cache to .gitignore
kjvbrt 26240f1
Formatting
kjvbrt 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
Renaming Source na DataSource
- Loading branch information
commit 33a357fef2acdb070dde668a1aee308a805aa22b
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
File renamed without changes.
File renamed without changes.
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.
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.
Can the virtual functions here be marked with either
final
oroverride
, just so that the compiler has a chance to detect mismatches here?