Skip to content

Commit 1d98500

Browse files
author
Johannes Junggeburth
committed
Blub
1 parent a608571 commit 1d98500

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

Examples/Scripts/Python/muon_hough.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ def runHoughFromCsv(inDir: str, nEvents: int):
7676
"--input",
7777
help="Path to the script's input. By default it's assumed that a ROOT n-tuple is parsed. Otherwise, it's also possible to parse a CSV directory",
7878
)
79-
p.add_argument(
80-
"--isCSV",
81-
default=False,
82-
action="store_true",
83-
help="Flag toggling that the input is a CSV directory",
84-
)
8579
p.add_argument("--nEvents", default=100, help="Number of events to run", type=int)
8680

8781
args = p.parse_args()

Plugins/Json/src/TrackingGeometryJsonConverter.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1075,8 +1075,7 @@ Acts::TrackingGeometryJsonConverter::trackingVolumeFromJson(
10751075

10761076
// ---------------------------------------------------
10771077
for (const auto& [surfaceId, record] : surfaceRecords) {
1078-
auto surface = Acts::SurfaceJsonConverter::fromJson(
1079-
record.payload);
1078+
auto surface = Acts::SurfaceJsonConverter::fromJson(record.payload);
10801079
surfacePointers.emplace(surfaceId, surface);
10811080
}
10821081

0 commit comments

Comments
 (0)