Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't use deprecated properties, fix algorithm name #212

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions FCCee/FullSim/ALLEGRO/ALLEGRO_o1_v03/run_digi_reco.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@
from k4FWCore import IOSvc
from Configurables import EventDataSvc
io_svc = IOSvc("IOSvc")
io_svc.input = inputfile
io_svc.output = outputfile
io_svc.Input = inputfile
io_svc.Output = outputfile
ExtSvc += [EventDataSvc("EventDataSvc")]

# GDML dump of detector model
Expand All @@ -124,7 +124,7 @@
# Tracking
# Create tracks from gen particles
from Configurables import TracksFromGenParticles
tracksFromGenParticles = TracksFromGenParticles("TracksFromGenParticles",
tracksFromGenParticles = TracksFromGenParticles("CreateTracksFromGenParticles",
InputGenParticles = ["MCParticles"],
OutputTracks = ["TracksFromGenParticles"],
OutputMCRecoTrackParticleAssociation = ["TracksFromGenParticlesAssociation"],
Expand Down
4 changes: 2 additions & 2 deletions FCCee/FullSim/IDEA/IDEA_o1_v03/run_digi_reco.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Loading the input SIM file, defining output file
#from k4FWCore import IOSvc
#io_svc = IOSvc("IOSvc")
#io_svc.input = "IDEA_sim.root"
#io_svc.output = "IDEA_sim_digi_reco.root"
#io_svc.Input = "IDEA_sim.root"
#io_svc.Output = "IDEA_sim_digi_reco.root"

# For now still use the old IO service
from Configurables import k4DataSvc, PodioInput
Expand Down