CMS 3D CMS Logo

DQMEventInfo_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # DQM Environment
4 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
5 dqmEnv = DQMEDAnalyzer('DQMEventInfo',
6  # put your subsystem name here (this goes into the foldername)
7  subSystemFolder = cms.untracked.string('YourSubsystem'),
8  # set the window for eventrate calculation (in minutes)
9  eventRateWindow = cms.untracked.double(0.5),
10  # define folder to store event info (default: EventInfo)
11  eventInfoFolder = cms.untracked.string('EventInfo')
12 )
13