forked from acts-project/acts
-
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
Showing
386 changed files
with
8,936 additions
and
3,731 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
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
Binary file modified
BIN
-59 Bytes
(100%)
CI/physmon/reference/trackfinding_ttbar_pu200/performance_ckf.root
Binary file not shown.
Binary file modified
BIN
+10 Bytes
(100%)
CI/physmon/reference/trackfinding_ttbar_pu200/performance_ckf_ambi.root
Binary file not shown.
Binary file modified
BIN
-38 Bytes
(100%)
...smon/reference/trackfinding_ttbar_pu200/performance_vertexing_amvf_gauss_notime_hist.root
Binary file not shown.
Binary file modified
BIN
-120 Bytes
(100%)
CI/physmon/reference/trackfinding_ttbar_pu200/performance_vertexing_amvf_grid_time_hist.root
Binary file not shown.
Binary file modified
BIN
+239 Bytes
(100%)
CI/physmon/reference/trackfinding_ttbar_pu200/tracksummary_ckf_hist.root
Binary file not shown.
Binary file added
BIN
+184 KB
CI/physmon/reference/trackrefitting_gsf/performance_trackrefitting.root
Binary file not shown.
Binary file added
BIN
+195 KB
CI/physmon/reference/trackrefitting_kf/performance_trackrefitting.root
Binary file not shown.
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,34 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import tempfile | ||
from pathlib import Path | ||
import shutil | ||
|
||
import acts | ||
from truth_tracking_gsf_refitting import runRefittingGsf | ||
|
||
from physmon_common import makeSetup | ||
|
||
setup = makeSetup() | ||
|
||
with tempfile.TemporaryDirectory() as temp: | ||
s = acts.examples.Sequencer( | ||
events=10000, | ||
numThreads=-1, | ||
logLevel=acts.logging.INFO, | ||
) | ||
|
||
tp = Path(temp) | ||
runRefittingGsf( | ||
trackingGeometry=setup.trackingGeometry, | ||
field=setup.field, | ||
digiConfigFile=setup.digiConfig, | ||
outputDir=tp, | ||
s=s, | ||
) | ||
|
||
s.run() | ||
|
||
perf_file = tp / "performance_gsf_refit.root" | ||
assert perf_file.exists(), "Performance file not found" | ||
shutil.copy(perf_file, setup.outdir / "performance_trackrefitting.root") |
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,34 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import tempfile | ||
from pathlib import Path | ||
import shutil | ||
|
||
import acts | ||
from truth_tracking_kalman_refitting import runRefittingKf | ||
|
||
from physmon_common import makeSetup | ||
|
||
setup = makeSetup() | ||
|
||
with tempfile.TemporaryDirectory() as temp: | ||
s = acts.examples.Sequencer( | ||
events=10000, | ||
numThreads=-1, | ||
logLevel=acts.logging.INFO, | ||
) | ||
|
||
tp = Path(temp) | ||
runRefittingKf( | ||
trackingGeometry=setup.trackingGeometry, | ||
field=setup.field, | ||
digiConfigFile=setup.digiConfig, | ||
outputDir=tp, | ||
s=s, | ||
) | ||
|
||
s.run() | ||
|
||
perf_file = tp / "performance_kf_refit.root" | ||
assert perf_file.exists(), "Performance file not found" | ||
shutil.copy(perf_file, setup.outdir / "performance_trackrefitting.root") |
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.