CMS 3D CMS Logo

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