Skip to content

Commit

Permalink
append input collections instead of replace?
Browse files Browse the repository at this point in the history
  • Loading branch information
Zehvogel committed Nov 16, 2023
1 parent e823a3a commit a668aa8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion k4MarlinWrapper/examples/clicRec_e4h_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@


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

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

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

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

PseudoRecoProc = MarlinProcessorWrapper("PseudoReco")
Expand Down

0 comments on commit a668aa8

Please sign in to comment.