Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:18:13

0001 # Auto generated configuration file
0002 # using: 
0003 # Revision: 1.19 
0004 # Source: /local/reps/CMSSW/CMSSW/Configuration/Applications/python/ConfigBuilder.py,v 
0005 # with command line options: step3 --datatier GEN-SIM-RECO,DQMIO --conditions auto:starthi_HIon -s RAW2DIGI,L1Reco,RECO,VALIDATION,DQM --scenario HeavyIons --eventcontent RECOSIM,DQM -n 100 --no_exec
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 process = cms.Process('RECO')
0009 
0010 # import of standard configurations
0011 process.load('Configuration.StandardSequences.Services_cff')
0012 process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
0013 process.load('FWCore.MessageService.MessageLogger_cfi')
0014 process.load('Configuration.EventContent.EventContentHeavyIons_cff')
0015 process.load('SimGeneral.MixingModule.mixNoPU_cfi')
0016 process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
0017 process.load('Configuration.StandardSequences.MagneticField_38T_cff')
0018 process.load('Configuration.StandardSequences.RawToDigi_cff')
0019 process.load('Configuration.StandardSequences.L1Reco_cff')
0020 process.load('Configuration.StandardSequences.ReconstructionHeavyIons_cff')
0021 process.load('Configuration.StandardSequences.ValidationHeavyIons_cff')
0022 process.load('DQMOffline.Configuration.DQMOfflineHeavyIonsMC_cff')
0023 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0024 
0025 process.maxEvents = cms.untracked.PSet(
0026     input = cms.untracked.int32(5)
0027 )
0028 
0029 # Input source
0030 process.source = cms.Source("PoolSource",
0031     secondaryFileNames = cms.untracked.vstring(),
0032                             fileNames = cms.untracked.vstring('/store/relval/CMSSW_7_2_0_pre5/RelValHydjetQ_MinBias_2760GeV/GEN-SIM-DIGI-RAW-HLTDEBUG/STARTHI72_V1-v1/00000/CE04360B-DB2F-E411-8AA5-02163E00FEB9.root')
0033 )
0034 
0035 process.options = cms.untracked.PSet(
0036 
0037 )
0038 
0039 # Production Info
0040 process.configurationMetadata = cms.untracked.PSet(
0041     version = cms.untracked.string('$Revision: 1.19 $'),
0042     annotation = cms.untracked.string('step3 nevts:100'),
0043     name = cms.untracked.string('Applications')
0044 )
0045 
0046 # Output definition
0047 
0048 process.RECOSIMoutput = cms.OutputModule("PoolOutputModule",
0049     splitLevel = cms.untracked.int32(0),
0050     eventAutoFlushCompressedSize = cms.untracked.int32(5242880),
0051     outputCommands = process.RECOSIMEventContent.outputCommands,
0052     fileName = cms.untracked.string('step3_RAW2DIGI_L1Reco_RECO_VALIDATION_DQM.root'),
0053     dataset = cms.untracked.PSet(
0054         filterName = cms.untracked.string(''),
0055         dataTier = cms.untracked.string('GEN-SIM-RECO')
0056     )
0057 )
0058 
0059 process.DQMoutput = cms.OutputModule("DQMRootOutputModule",
0060     splitLevel = cms.untracked.int32(0),
0061     outputCommands = process.DQMEventContent.outputCommands,
0062     fileName = cms.untracked.string('step3_RAW2DIGI_L1Reco_RECO_VALIDATION_DQM_inDQM.root'),
0063     dataset = cms.untracked.PSet(
0064         filterName = cms.untracked.string(''),
0065         dataTier = cms.untracked.string('DQMIO')
0066     )
0067 )
0068 
0069 # Additional output definition
0070 
0071 # Other statements
0072 process.mix.playback = True
0073 process.mix.digitizers = cms.PSet()
0074 for a in process.aliases: delattr(process, a)
0075 process.RandomNumberGeneratorService.restoreStateLabel=cms.untracked.string("randomEngineStateProducer")
0076 from Configuration.AlCa.GlobalTag import GlobalTag
0077 process.GlobalTag = GlobalTag(process.GlobalTag, 'STARTHI72_V1::All', '')
0078 
0079 # Path and EndPath definitions
0080 process.raw2digi_step = cms.Path(process.RawToDigi)
0081 process.L1Reco_step = cms.Path(process.L1Reco)
0082 process.reconstruction_step = cms.Path(process.reconstructionHeavyIons)
0083 process.prevalidation_step = cms.Path(process.prevalidation)
0084 process.dqmoffline_step = cms.Path(process.DQMOfflineHeavyIons)
0085 process.validation_step = cms.EndPath(process.validation)
0086 process.RECOSIMoutput_step = cms.EndPath(process.RECOSIMoutput)
0087 process.DQMoutput_step = cms.EndPath(process.DQMoutput)
0088 
0089 
0090 # Schedule definition
0091 process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.prevalidation_step,process.validation_step,process.dqmoffline_step,process.RECOSIMoutput_step,process.DQMoutput_step)
0092 
0093 
0094 # Automatic addition of the customisation function from SimGeneral.MixingModule.fullMixCustomize_cff
0095 from SimGeneral.MixingModule.fullMixCustomize_cff import setCrossingFrameOn 
0096 
0097 #call to customisation function setCrossingFrameOn imported from SimGeneral.MixingModule.fullMixCustomize_cff
0098 process = setCrossingFrameOn(process)
0099 
0100 # End of customisation functions