Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: key4hep/k4MarlinWrapper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a668aa8e96a279f39f21adb48fca270c33f4ea36
Choose a base ref
..
head repository: key4hep/k4MarlinWrapper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e823a3af70e75d86d1c8eb2c260f4b6170bad11f
Choose a head ref
2 changes: 1 addition & 1 deletion k4MarlinWrapper/examples/clicRec_e4h_input.py
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@


inp = PodioInput('InputReader')
inp.collections += [
inp.collections = [
'MCParticles',
'VertexBarrelCollection',
'VertexEndcapCollection',
2 changes: 1 addition & 1 deletion k4MarlinWrapper/examples/event_display.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@
evtsvc.input = ''

inp = PodioInput('InputReader')
inp.collections += [
inp.collections = [
'MCParticles',
'VertexBarrelCollection',
'VertexEndcapCollection',
2 changes: 1 addition & 1 deletion test/gaudi_opts/fccRec_e4h_input.py
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@
evtsvc.input = 'tops_edm4hep.root'

inp = PodioInput('InputReader')
inp.collections += [
inp.collections = [
'MCParticles',
'VertexBarrelCollection',
'VertexEndcapCollection',
2 changes: 1 addition & 1 deletion test/gaudi_opts/test_global_converter_maps.py
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@
)

podioInput = PodioInput("InputReader")
podioInput.collections += ["MCParticles"]
podioInput.collections = ["MCParticles"]
podioInput.OutputLevel = INFO

PseudoRecoProc = MarlinProcessorWrapper("PseudoReco")