Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:49

0001 #
0002 #! /bin/env cmsRun
0003 
0004 import FWCore.ParameterSet.Config as cms
0005 
0006 process = cms.Process("dqmAnalyzer")
0007 #keep the logging output to a nice level
0008 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0009 
0010 process.load("RecoBTag.Configuration.RecoBTag_cff")
0011 
0012 process.load("DQMServices.Core.DQM_cfg")
0013 
0014 process.load("DQMOffline.RecoB.dqmAnalyzer_cff")
0015 
0016 process.maxEvents = cms.untracked.PSet(
0017     input = cms.untracked.int32(1000)
0018 )
0019 process.source = cms.Source("PoolSource",
0020     fileNames = cms.untracked.vstring()
0021 )
0022 
0023 process.plots = cms.Path(process.bTagPlots)
0024 process.PoolSource.fileNames = ['/store/relvall/2008/5/4/RelVal-RelValTTbar-1209247429-IDEAL_V1-2nd/0000/044390E5-EF19-DD11-BD58-000423D98DC4.root', '/store/relvall/2008/5/4/RelVal-RelValTTbar-1209247429-IDEAL_V1-2nd/0000/20E9690D-F019-DD11-9DF6-001617E30D38.root', '/store/relvall/2008/5/4/RelVal-RelValTTbar-1209247429-IDEAL_V1-2nd/0000/3C694447-3F1A-DD11-9766-0016177CA7A0.root']
0025 
0026