-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51cd724
commit eeff293
Showing
3 changed files
with
123 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
src.executors package | ||
===================== | ||
|
||
Submodules | ||
---------- | ||
|
||
src.executors.base module | ||
------------------------- | ||
|
||
.. automodule:: src.executors.base | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
src.executors.dask module | ||
------------------------- | ||
|
||
.. automodule:: src.executors.dask | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
src.executors.futures module | ||
---------------------------- | ||
|
||
.. automodule:: src.executors.futures | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
src.executors.sequential module | ||
------------------------------- | ||
|
||
.. automodule:: src.executors.sequential | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: src.executors | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,53 @@ | ||
src package | ||
=========== | ||
|
||
Subpackages | ||
----------- | ||
|
||
.. toctree:: | ||
:maxdepth: 4 | ||
|
||
src.executors | ||
|
||
Submodules | ||
---------- | ||
|
||
src.benchmark module | ||
-------------------- | ||
|
||
.. automodule:: src.benchmark | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
src.data\_loader module | ||
----------------------- | ||
|
||
.. automodule:: src.data_loader | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
src.time\_profiler module | ||
------------------------- | ||
|
||
.. automodule:: src.time_profiler | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
src.uproot\_processor module | ||
---------------------------- | ||
|
||
.. automodule:: src.uproot_processor | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Module contents | ||
--------------- | ||
|
||
.. automodule:: src | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
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,25 @@ | ||
|
||
column_presets = { | ||
# "full_event": { | ||
# # the bechmark will limit this to actual total number of columns | ||
# "method": "n_columns", | ||
# "values": 100000 | ||
# }, | ||
"main_collections": { | ||
"method": "collections", | ||
"values": ["Jet", "Photon", "Tau", "Electron", "Muon"] | ||
}, | ||
"muons_only": { | ||
"method": "collections", | ||
"values": ["Muon"] | ||
}, | ||
"hmm_columns": { | ||
"method": "column_list", | ||
"values": [ | ||
"run", "luminosityBlock", "HLT_IsoMu24", "PV_npvsGood", "fixedGridRhoFastjetAll", | ||
"Muon_pt", "Muon_eta", "Muon_phi", "Muon_mass", "Muon_charge", "Muon_pfRelIso04_all", "Muon_mediumId", "Muon_ptErr", | ||
"Electron_pt", "Electron_eta", "Electron_mvaFall17V2Iso_WP90", | ||
"Jet_pt", "Jet_eta", "Jet_phi", "Jet_mass", | ||
] | ||
} | ||
} |