/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FastSimulation/Validation/test/TrackRecoAndValidation_FullSim_cfg.py
123 строки
5 KB
Andrea Bocci
Drop obsolete file GlobalTag_condDBv2.py
12 авг 2020, 18:46
Не верифицирован
12 авг 2020, 18:46
da7cbe7
Код
Авторство
О чём код?
# Auto generated configuration file # using: # Revision: 1.19 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v # with command line options: step3 --customise SLHCUpgradeSimulations/Configuration/postLS1Customs.customisePostLS1 --conditions auto:run2_mc -s RAW2DIGI,RECO,VALIDATION --datatier DQMIO -n 10 --magField 38T_PostLS1 --eventcontent DQM --no_exec import FWCore.ParameterSet.Config as cms process = cms.Process('RECO') # import of standard configurations process.load('Configuration.StandardSequences.Services_cff') process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi') process.load('FWCore.MessageService.MessageLogger_cfi') process.load('Configuration.EventContent.EventContent_cff') process.load('SimGeneral.MixingModule.mixNoPU_cfi') process.load('Configuration.StandardSequences.GeometryRecoDB_cff') process.load('Configuration.StandardSequences.MagneticField_cff') process.load('Configuration.StandardSequences.RawToDigi_cff') process.load('Configuration.StandardSequences.Reconstruction_cff') process.load('Configuration.StandardSequences.Validation_cff') process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) ) # Input source process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring('file:GENSIMDIGIRAW.root'), secondaryFileNames = cms.untracked.vstring() ) process.options = cms.untracked.PSet( ) # Production Info process.configurationMetadata = cms.untracked.PSet( annotation = cms.untracked.string('step3 nevts:10'), name = cms.untracked.string('Applications'), version = cms.untracked.string('$Revision: 1.19 $') ) # Output definition process.DQMoutput = cms.OutputModule("DQMRootOutputModule", dataset = cms.untracked.PSet( dataTier = cms.untracked.string('DQMIO'), filterName = cms.untracked.string('') ), fileName = cms.untracked.string('TrackRecoAndValidation_inDQM.root'), outputCommands = process.DQMEventContent.outputCommands, splitLevel = cms.untracked.int32(0) ) process.RECOSIMoutput = cms.OutputModule( "PoolOutputModule", dataset = cms.untracked.PSet( dataTier = cms.untracked.string('GEN-SIM-RECO'), filterName = cms.untracked.string('') ), eventAutoFlushCompressedSize = cms.untracked.int32(5242880), fileName = cms.untracked.string('step3_RAW2DIGI_L1Reco_RECO_EI_VALIDATION_DQM.root'), #outputCommands = process.RECOSIMEventContent.outputCommands, splitLevel = cms.untracked.int32(0) ) # Additional output definition # Other statements process.mix.playback = True process.mix.digitizers = cms.PSet() for a in process.aliases: delattr(process, a) process.RandomNumberGeneratorService.restoreStateLabel=cms.untracked.string("randomEngineStateProducer") from Configuration.AlCa.GlobalTag import GlobalTag process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_mc', '') # Path and EndPath definitions process.raw2digi_step = cms.Path(process.RawToDigi) process.reconstruction_step = cms.Path(process.reconstruction) process.prevalidation_step = cms.Path(process.prevalidation) process.validation_step = cms.EndPath(process.validation) process.DQMoutput_step = cms.EndPath(process.DQMoutput) process.RECOSIMoutput_step = cms.EndPath(process.RECOSIMoutput) # Schedule definition process.schedule = cms.Schedule(process.raw2digi_step,process.reconstruction_step,process.prevalidation_step,process.validation_step,process.RECOSIMoutput_step,process.DQMoutput_step) # customisation of the process. # Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.postLS1Customs from SLHCUpgradeSimulations.Configuration.postLS1Customs import customisePostLS1 #call to customisation function customisePostLS1 imported from SLHCUpgradeSimulations.Configuration.postLS1Customs process = customisePostLS1(process) # Automatic addition of the customisation function from SimGeneral.MixingModule.fullMixCustomize_cff from SimGeneral.MixingModule.fullMixCustomize_cff import setCrossingFrameOn #call to customisation function setCrossingFrameOn imported from SimGeneral.MixingModule.fullMixCustomize_cff process = setCrossingFrameOn(process) # End of customisation functions # BEGIN MODIFICATIONS # replace the reconstruction sequence with tracking only # note: tracking depends on local calorimeter reconstruction and standalone muon reconstruction process.reconstruction = cms.Sequence( process.offlineBeamSpot *process.calolocalreco *process.muonlocalreco *process.standalonemuontracking *process.trackerlocalreco *process.MeasurementTrackerEventPreSplitting *process.siPixelClusterShapeCachePreSplitting *process.trackingGlobalReco) # redefine validation paths process.prevalidation = cms.Sequence(process.tracksPreValidation) process.validation = cms.Sequence(process.trackingTruthValid + process.tracksValidation) # END MODIFICATIONS