CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackingCertification_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 trackingCertificationInfo = cms.EDAnalyzer("TrackingCertificationInfo",
4  TopFolderName = cms.untracked.string("Tracking"),
5  checkPixelFEDs = cms.bool(False),
6  TrackingGlobalQualityPSets = cms.VPSet(
7  cms.PSet(
8  QT = cms.string("Rate"),
9  ),
10  cms.PSet(
11  QT = cms.string("Chi2"),
12  ),
13  cms.PSet(
14  QT = cms.string("RecHits"),
15  ),
16  cms.PSet(
17  QT = cms.string("Seed"),
18  ),
19  ),
20  TrackingLSQualityMEs = cms.VPSet(
21  cms.PSet(
22  QT = cms.string("Rate"),
23  ),
24  cms.PSet(
25  QT = cms.string("Chi2"),
26  ),
27  cms.PSet(
28  QT = cms.string("RecHits"),
29  ),
30  cms.PSet(
31  QT = cms.string("Seed"),
32  ),
33  ),
34 )