CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQMServices/Components/python/DQMEventInfo_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # DQM Environment
00004 dqmEnv = cms.EDAnalyzer("DQMEventInfo",
00005     # put your subsystem name here (this goes into the foldername)
00006     subSystemFolder = cms.untracked.string('YourSubsystem'),
00007     # set the window for eventrate calculation (in minutes)
00008     eventRateWindow = cms.untracked.double(0.5),
00009     # define folder to store event info (default: EventInfo)
00010     eventInfoFolder = cms.untracked.string('EventInfo')
00011 )
00012