Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:15

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 
0004 #Client:
0005 sipixelEDAClientP5 = DQMEDHarvester("SiPixelEDAClient",
0006     EventOffsetForInit = cms.untracked.int32(10),
0007     ActionOnLumiSection = cms.untracked.bool(True), ## do not set to False, otherwise Summary histos not filled!
0008     ActionOnRunEnd = cms.untracked.bool(True),
0009     HighResolutionOccupancy = cms.untracked.bool(True),
0010     NoiseRateCutValue = cms.untracked.double(-1.), ## set negative if no noisy pixel list should be produced
0011     NEventsForNoiseCalculation = cms.untracked.int32(500),
0012     UseOfflineXMLFile = cms.untracked.bool(False),
0013     Tier0Flag = cms.untracked.bool(False),
0014     DoHitEfficiency = cms.untracked.bool(False)
0015 )
0016 
0017 #DataCertification:
0018 sipixelDaqInfo = DQMEDHarvester("SiPixelDaqInfo")
0019 sipixelDcsInfo = DQMEDHarvester("SiPixelDcsInfo")
0020 sipixelCertification = DQMEDHarvester("SiPixelCertification")
0021 
0022 #Predefined Sequences:
0023 PixelP5DQMClient = cms.Sequence(sipixelEDAClientP5)
0024 PixelP5DQMClientWithDataCertification = cms.Sequence(sipixelEDAClientP5+
0025                                                           sipixelDaqInfo+
0026                               sipixelDcsInfo)