Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
JCF: update names as described in today's comment in DUNE-DAQ/daq-rel…
Browse files Browse the repository at this point in the history
  • Loading branch information
John Freeman committed Jun 17, 2024
1 parent 1b49b16 commit 7bcec59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/oksconfgen/generate_readoutOKS.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def generate_readout(
print("Generating DPDKReaderConf")
nicrec = dal.DPDKReaderConf(
f"nicrcvr-1",
template_for="FDFakeCardReader",
template_for="FDFakeCardReaderModule",
emulation_mode=1,
emulation_conf=stream_emu,
)
Expand All @@ -237,7 +237,7 @@ def generate_readout(
elif type(rog.contains[0]).__name__ == "NICInterface":
if nicrec == None:
print("Generating DPDKReaderConf")
nicrec = dal.DPDKReaderConf(f"nicrcvr-1", template_for="DPDKReader")
nicrec = dal.DPDKReaderConf(f"nicrcvr-1", template_for="DPDKReaderModule")
db.update_dal(nicrec)
datareader = nicrec
hermes_app = dal.DaqApplication(
Expand All @@ -246,8 +246,8 @@ def generate_readout(
db.update_dal(hermes_app)
elif type(rog.contains[0]).__name__ == "FelixInterface":
if flxcard == None:
print("Generating Felix DataReceiverConf")
flxcard = dal.DataReceiverConf(
print("Generating Felix DataReaderConf")
flxcard = dal.DataReaderConf(
f"flxConf-1", template_for="FelixReaderModule"
)
db.update_dal(flxcard)
Expand Down

0 comments on commit 7bcec59

Please sign in to comment.