Skip to content

Commit

Permalink
Update steering file for DDCaloDigi
Browse files Browse the repository at this point in the history
  • Loading branch information
Katerina Kostova committed Aug 23, 2024
1 parent 55d4ce0 commit 1c94f87
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions k4GaudiPandora/options/runDDCaloDigi.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,28 @@
calodigi = [DDCaloDigi("ECALBarrelDigi"),
DDCaloDigi("ECALEndcapDigi"),
DDCaloDigi("HCALBarrelDigi"),
DDCaloDigi("HCALEndcapDigi")]
DDCaloDigi("HCALEndcapDigi"),
DDCaloDigi("HCALRingDigi")]

ECALorHCAL = [True, True, False, False]
ECALorHCAL = [True, True, False, False, False]

inputcollections = [["ECalBarrelCollection"],
["ECalEndcapCollection"],
["HCalBarrelCollection"],
["HCalEndcapCollection"]]
["HCalEndcapCollection"],
["HCalRingCollection"]]

outputcollections = [["ECALBarrel"],
["ECALEndcap"],
["HCALBarrel"],
["HCALEndcap"]]
["HCALEndcap"],
["HCALRing"]]

relcollections = [["RelationCaloHitECALBarrel"],
["RelationCaloHitECALEndcap"],
["RelationCaloHitHCALBarrel"],
["RelationCaloHitHCALEndcap"]]
["RelationCaloHitHCALEndcap"],
["RelationCaloHitHCALRing"]]

#set properties
for calodigicol, ecalorhcal, inputcol, outputcol, relcol in zip(calodigi, ECALorHCAL, inputcollections, outputcollections, relcollections):
Expand Down Expand Up @@ -156,7 +160,8 @@
ApplicationMgr(TopAlg=[calodigi[0],
calodigi[1],
calodigi[2],
calodigi[3]],
calodigi[3],
calodigi[4]],
EvtSel="NONE",
EvtMax=-1,
ExtSvc=[EventDataSvc("EventDataSvc"), root_hist_svc],
Expand Down

0 comments on commit 1c94f87

Please sign in to comment.