Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:51:18

0001 #
0002 #  Example python configuration file for running ScalersRecover
0003 #  This file examines run 136035            (w.badgett)
0004 #
0005 
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 process = cms.Process("ScalersRecover")
0009 
0010 process.load("FWCore.MessageService.MessageLogger_cfi")
0011 
0012 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
0013 
0014 #
0015 # Query the DBS to find out the file names, given a run number and
0016 #   the MinBias RECO stream.   Make sure that the file containing
0017 #   lumi sections 1 and 2 comes first in the list!   Note that the
0018 #   trigger scalers record is generally one lumi section out of phase
0019 #   with the event data.
0020 #
0021 process.source = cms.Source("PoolSource",
0022   fileNames = cms.untracked.vstring(
0023     '/store/data/Run2010A/MinimumBias/RECO/v1/000/136/035/FA28577B-C365-DF11-952F-001617E30CC8.root',
0024     '/store/data/Run2010A/MinimumBias/RECO/v1/000/136/035/DCA60B3F-A565-DF11-A9B6-0030487CAF5E.root',
0025     '/store/data/Run2010A/MinimumBias/RECO/v1/000/136/035/06F7F82C-AA65-DF11-B3AC-0030487A3DE0.root'
0026   )
0027 )
0028 
0029 process.ScalersRecover = cms.EDAnalyzer('ScalersRecover')
0030 
0031 
0032 process.p = cms.Path(process.ScalersRecover)