Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:09

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 
0004 trackingCertificationInfo = DQMEDHarvester("TrackingCertificationInfo",
0005     TopFolderName = cms.untracked.string("Tracking"),
0006     checkPixelFEDs = cms.bool(False),
0007     TrackingGlobalQualityPSets = cms.VPSet(
0008          cms.PSet(
0009              QT       = cms.string("Rate"),
0010          ),
0011          cms.PSet(
0012              QT       = cms.string("Chi2"),
0013          ),
0014          cms.PSet(
0015              QT       = cms.string("RecHits"),
0016          ),
0017          cms.PSet(
0018              QT       = cms.string("Seed"),
0019          ),
0020     ),
0021     TrackingLSQualityMEs = cms.VPSet(
0022          cms.PSet(
0023              QT       = cms.string("Rate"),
0024          ),
0025          cms.PSet(
0026              QT       = cms.string("Chi2"),
0027          ),
0028          cms.PSet(
0029              QT       = cms.string("RecHits"),
0030          ),
0031          cms.PSet(
0032              QT       = cms.string("Seed"),
0033          ),
0034     ),
0035 )