File indexing completed on 2023-03-17 10:39:19
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006
0007 process = cms.Process( "LaserAlignmentEventFilterTest" )
0008
0009
0010 process.source = cms.Source( "PoolSource",
0011 fileNames = cms.untracked.vstring(
0012 '/store/data/Run2010A/TestEnables/RAW/v1/000/140/124/56E00D1B-308F-DF11-BE54-001D09F24691.root'
0013 ),
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035 )
0036
0037 process.maxEvents = cms.untracked.PSet(
0038 input = cms.untracked.int32( 10 )
0039 )
0040
0041
0042 process.MessageLogger = cms.Service("MessageLogger",
0043 cerr = cms.untracked.PSet(
0044 threshold = cms.untracked.string('ERROR')
0045 ),
0046 cout = cms.untracked.PSet(
0047 enable = cms.untracked.bool(True),
0048 threshold = cms.untracked.string('INFO')
0049 ),
0050 debugModules = cms.untracked.vstring('LaserAlignmentEventFilter')
0051 )
0052
0053
0054 process.load( "Configuration.StandardSequences.FrontierConditions_GlobalTag_cff" )
0055
0056 process.GlobalTag.globaltag = cms.string('GR_R_37X_V6::All')
0057
0058
0059 process.load('Alignment.LaserAlignment.LaserAlignmentEventFilter_cfi')
0060
0061 process.p = cms.Path( process.LaserAlignmentEventFilter )
0062