Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import FWCore.ParameterSet.Config as cms

# DQM Environment
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
dqmEnv = DQMEDAnalyzer('DQMEventInfo',
    # put your subsystem name here (this goes into the foldername)
    subSystemFolder = cms.untracked.string('YourSubsystem'),
    # set the window for eventrate calculation (in minutes)
    eventRateWindow = cms.untracked.double(0.5),
    # define folder to store event info (default: EventInfo)
    eventInfoFolder = cms.untracked.string('EventInfo'),
    # use the Global Tag of the last (!) HLT processing
    showHLTGlobalTag = cms.untracked.bool(False)
)