Skip to content
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
2 changes: 1 addition & 1 deletion test/mock-workflow/G4Stage1.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local generators = import 'SinglesGen.libsonnet';
{
largeant: {
plugin: 'largeant',
duration_usec: 15662051,
duration_usec: 156, # Typical: 15662051
inputs: [f + "/MCTruths" for f in std.objectFields(generators)],
outputs: ["ParticleAncestryMap", "Assns", "SimEnergyDeposits", "AuxDetHits", "MCParticles"],
}
Expand Down
4 changes: 2 additions & 2 deletions test/mock-workflow/G4Stage2.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ local g4stage1 = import 'G4Stage1.libsonnet';
{
IonAndScint: {
plugin: 'ion_and_scint',
duration_usec: 5457973,
duration_usec: 546, # Typical: 5457973
inputs: [f + "/SimEnergyDeposits" for f in std.objectFields(g4stage1)],
outputs: ["SimEnergyDeposits", "SimEnergyDeposits_priorSCE"],
},
PDFastSim: {
plugin: 'pd_fast_sim',
duration_usec: 69, #69681950,
duration_usec: 69, # Typical: 69681950
inputs: ['SimEnergyDeposits_priorSCE'],
outputs: ['SimPhotonLites', 'OpDetBacktrackerRecords'],
}
Expand Down
2 changes: 1 addition & 1 deletion test/mock-workflow/SinglesGen.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
cosmicgenerator: {
plugin: "MC_truth_algorithm",
duration_usec: 4926215,
duration_usec: 492, # Typical: 4926215
inputs: ["id"],
outputs: ["MCTruths"]
},
Expand Down
Loading