1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
trackingCertificationInfo = DQMEDHarvester("TrackingCertificationInfo",
TopFolderName = cms.untracked.string("Tracking"),
checkPixelFEDs = cms.bool(False),
TrackingGlobalQualityPSets = cms.VPSet(
cms.PSet(
QT = cms.string("Rate"),
),
cms.PSet(
QT = cms.string("Chi2"),
),
cms.PSet(
QT = cms.string("RecHits"),
),
cms.PSet(
QT = cms.string("Seed"),
),
),
TrackingLSQualityMEs = cms.VPSet(
cms.PSet(
QT = cms.string("Rate"),
),
cms.PSet(
QT = cms.string("Chi2"),
),
cms.PSet(
QT = cms.string("RecHits"),
),
cms.PSet(
QT = cms.string("Seed"),
),
),
)
|