-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from eic/221-generate-detectors-and-algorithm…
…s-flags-in-usable-formats 221 generate detectors and algorithms flags in usable formats
- Loading branch information
Showing
40 changed files
with
2,367 additions
and
393 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -150,3 +150,5 @@ lib/ | |
|
||
/tests | ||
/build | ||
|
||
src/tools/default_values_table/__pycache__/ |
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
desc = """ | ||
This script is a simple demonstration of how to run eicrecon with available digitization/reconstruction flag | ||
Currently this script is created manually (TODO automatic generation) so if flags here is outdated, please file an issue | ||
python3 full_flags_run.py input_file.edm4hep.root output_name_no_ext | ||
Script should successfully run and create files: | ||
output_name_no_ext.edm4eic.root # with output flat tree | ||
output_name_no_ext.ana.root # with histograms and other things filled by monitoring plugins | ||
""" | ||
|
||
import argparse | ||
|
||
parser = argparse.ArgumentParser(description=desc) | ||
parser.add_argument('input_file', help="Input file name") | ||
parser.add_argument('output_base_name', help="Output files names (no file extensions here)") | ||
args = parser.parse_args() | ||
|
||
flags = [ | ||
|
||
] | ||
|
||
# (!) NEXT WILL BE REPLACED BY TEMPLATE # | ||
reco_parameters_flags = [] | ||
|
||
|
||
|
||
|
Oops, something went wrong.