Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-06-25 22:34:53

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # DQM Environment
0004 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0005 dqmEnv = DQMEDAnalyzer('DQMEventInfo',
0006     # put your subsystem name here (this goes into the foldername)
0007     subSystemFolder = cms.untracked.string('YourSubsystem'),
0008     # set the window for eventrate calculation (in minutes)
0009     eventRateWindow = cms.untracked.double(0.5),
0010     # define folder to store event info (default: EventInfo)
0011     eventInfoFolder = cms.untracked.string('EventInfo'),
0012     # use the Global Tag of the last (!) HLT processing
0013     showHLTGlobalTag = cms.untracked.bool(False)
0014 )
0015