File indexing completed on 2024-04-06 12:25:59
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006
0007 process = cms.Process("TEST")
0008
0009 process.load("Configuration.StandardSequences.GeometryDB_cff")
0010 process.load("Configuration.StandardSequences.MagneticField_cff")
0011 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0012
0013 process.load("Configuration.StandardSequences.Reconstruction_cff")
0014 process.load("Configuration.StandardSequences.EndOfProcess_cff")
0015
0016
0017
0018 process.GlobalTag.globaltag = 'auto:phase1_2022_realistic'
0019
0020
0021
0022 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) )
0023
0024 process.options = cms.untracked.PSet( SkipEvent = cms.untracked.vstring("ProductNotFound") )
0025 process.options = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) )
0026 process.source = cms.Source("PoolSource",
0027 fileNames = cms.untracked.vstring(
0028 "/store/relval/CMSSW_6_0_1_PostLS1v1-PU_POSTLS161_V10/RelValSingleMuPt100_UPGpostls1/GEN-SIM-DIGI-RAW/v1/00000/38F76FF5-0126-E211-BAA2-002618943971.root"
0029 )
0030 )
0031
0032
0033
0034 process.CSCGeometryESModule.useGangedStripsInME1a = False
0035
0036
0037
0038
0039
0040 process.csc2DRecHits.readBadChannels = cms.bool(False)
0041
0042 process.csc2DRecHits.CSCUseGasGainCorrection = cms.bool(False)
0043
0044
0045
0046 process.csc2DRecHits.wireDigiTag = cms.InputTag("simMuonCSCDigis","MuonCSCWireDigi")
0047 process.csc2DRecHits.stripDigiTag = cms.InputTag("simMuonCSCDigis","MuonCSCStripDigi")
0048
0049
0050
0051
0052
0053 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0054
0055 process.MessageLogger.debugModules = cms.untracked.vstring("*")
0056 process.MessageLogger.cerr.enable = False
0057 process.MessageLogger.files.junk = dict()
0058 process.MessageLogger.cout = cms.untracked.PSet(
0059 enable = cms.untracked.bool(True),
0060 threshold = cms.untracked.string("DEBUG"),
0061 default = cms.untracked.PSet( limit = cms.untracked.int32(0) ),
0062 FwkReport = cms.untracked.PSet( limit = cms.untracked.int32(-1) )
0063
0064 , CSCRecHit = cms.untracked.PSet( limit = cms.untracked.int32(-1) )
0065
0066
0067
0068
0069 )
0070
0071
0072
0073
0074 process.reco = cms.Path(process.csc2DRecHits)
0075 process.endjob = cms.EndPath(process.endOfProcess)
0076
0077
0078 process.schedule = cms.Schedule(process.reco, process.endjob)