15 def add_svd_dqm_dose(path, offlineZSShaperDigits, **params):
16 """Adds the six default instances of SVDDQMDose to the given path.
18 The argument offlineZSShaperDigits shall be the name of the
19 collection of digits to be used by the module (usually it will be
20 zero-suppressed digits with SVDZeroSuppressionEmulator and
23 Extra parameters will be passed to all instances of SVDDQMDose.
26 'SVDDQMDose', offlineZSShaperDigits=offlineZSShaperDigits, eventTypeFilter=1,
27 histogramDirectoryName=
"SVDDoseHERInjPois", **params).set_name(
"SVDDQMDose_HERInjPois")
29 'SVDDQMDose', offlineZSShaperDigits=offlineZSShaperDigits, eventTypeFilter=2,
30 histogramDirectoryName=
"SVDDoseLERInjPois", **params).set_name(
"SVDDQMDose_LERInjPois")
32 'SVDDQMDose', offlineZSShaperDigits=offlineZSShaperDigits, eventTypeFilter=4,
33 histogramDirectoryName=
"SVDDoseNoInjPois", **params).set_name(
"SVDDQMDose_NoInjPois")
34 params[
'trgTypes'] = []
36 'SVDDQMDose', offlineZSShaperDigits=offlineZSShaperDigits, eventTypeFilter=1,
37 histogramDirectoryName=
"SVDDoseHERInjAll", **params).set_name(
"SVDDQMDose_HERInjAll")
39 'SVDDQMDose', offlineZSShaperDigits=offlineZSShaperDigits, eventTypeFilter=2,
40 histogramDirectoryName=
"SVDDoseLERInjAll", **params).set_name(
"SVDDQMDose_LERInjAll")
42 'SVDDQMDose', offlineZSShaperDigits=offlineZSShaperDigits, eventTypeFilter=4,
43 histogramDirectoryName=
"SVDDoseNoInjAll", **params).set_name(
"SVDDQMDose_NoInjAll")