5 def generateOptions(counter, cmask, invmask, sampling_period, startatevent, storeresultsat, family):
6 cmask =
map(int, cmask)
7 invmask =
map(int, invmask)
8 sampling_period =
map(int, sampling_period)
9 startatevent = int(startatevent)
11 from Configurables
import ApplicationMgr, AuditorSvc, PerfMonAuditor
13 app.AuditAlgorithms = 1
16 pfaud.EVENT0 = counter[0]
17 pfaud.SP0 = sampling_period[0]
18 pfaud.INV0 = int(invmask[0])
19 pfaud.CMASK0 = int(cmask[0])
20 pfaud.EVENT1 = counter[1]
21 pfaud.SP1 = sampling_period[1]
22 pfaud.INV1 = int(invmask[1])
23 pfaud.CMASK1 = int(cmask[1])
24 pfaud.EVENT2 = counter[2]
25 pfaud.SP2 = sampling_period[2]
26 pfaud.INV2 = int(invmask[2])
27 pfaud.CMASK2 = int(cmask[2])
28 pfaud.EVENT3 = counter[3]
29 pfaud.SP3 = sampling_period[3]
30 pfaud.INV3 = int(invmask[3])
31 pfaud.CMASK3 = int(cmask[3])
35 pfaud.PREFIX =
"%s_%s" % (storeresultsat,
"S" if sampling_period[0] > 0
else "C")
36 pfaud.SAMPLE = int(sampling_period[0] > 0)
37 pfaud.START_AT_EVENT = startatevent