Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:51

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 --conditions auto:phase1_2017_realistic -n 10 --era Run2_2017 --eventcontent RECOSIM,MINIAODSIM,DQM --runUnscheduled -s RAW2DIGI,L1Reco,RECO,EI,PAT,VALIDATION:@standardValidation+@miniAODValidation,DQM:@standardDQM+@miniAODDQM --datatier GEN-SIM-RECO,MINIAODSIM,DQMIO --geometry DB:Extended --filein file:step2.root --fileout file:step3.root
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 from Configuration.StandardSequences.Eras import eras
0009 
0010 process = cms.Process('RECO',eras.Run2_2017)
0011 
0012 # import of standard configurations
0013 process.load('Configuration.StandardSequences.Services_cff')
0014 process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
0015 process.load('FWCore.MessageService.MessageLogger_cfi')
0016 process.load('Configuration.EventContent.EventContent_cff')
0017 process.load('SimGeneral.MixingModule.mixNoPU_cfi')
0018 process.load('Configuration.StandardSequences.MagneticField_cff')
0019 process.load('Configuration.StandardSequences.RawToDigi_cff')
0020 process.load('Configuration.StandardSequences.L1Reco_cff')
0021 process.load('Configuration.StandardSequences.Reconstruction_cff')
0022 process.load('CommonTools.ParticleFlow.EITopPAG_cff')
0023 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0024 process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
0025 process.load("Geometry.VeryForwardGeometry.geometryRPFromDB_cfi")
0026 
0027 
0028 process.maxEvents = cms.untracked.PSet(
0029     input = cms.untracked.int32(-1)
0030 )
0031 
0032 # Input source
0033 process.source = cms.Source("PoolSource",
0034     fileNames = cms.untracked.vstring('file:GluGlu_DIGI_DIGI2RAW_2017.root'),
0035     secondaryFileNames = cms.untracked.vstring()
0036 )
0037 
0038 process.options = cms.untracked.PSet(
0039 
0040 )
0041 
0042 # Production Info
0043 process.configurationMetadata = cms.untracked.PSet(
0044     annotation = cms.untracked.string('step3 nevts:10'),
0045     name = cms.untracked.string('Applications'),
0046     version = cms.untracked.string('$Revision: 1.19 $')
0047 )
0048 
0049 # Output definition
0050 
0051 process.output = cms.OutputModule("PoolOutputModule",
0052     fileName = cms.untracked.string('file:GluGlu_RAW2DIGI_L1Reco_RECO_2017.root'),
0053     outputCommands = cms.untracked.vstring("drop *","keep PSimHits*_*_*_*","keep CTPPS*_*_*_*","keep *_*RP*_*_*",'keep *_LHCTransport_*_*',"keep *_ak4*_*_*")
0054 )
0055 
0056 # Additional output definition
0057 
0058 # Other statements
0059 process.mix.playback = True
0060 process.mix.digitizers = cms.PSet()
0061 for a in process.aliases: delattr(process, a)
0062 process.RandomNumberGeneratorService.restoreStateLabel=cms.untracked.string("randomEngineStateProducer")
0063 from Configuration.AlCa.GlobalTag import GlobalTag
0064 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:phase1_2017_realistic', '')
0065 
0066 # do not make testID for simulation - keeping the frame
0067 from EventFilter.CTPPSRawToDigi.totemRPRawToDigi_cfi import totemRPRawToDigi
0068 totemRPRawToDigi.RawToDigi.testID = cms.uint32(1)
0069 
0070 # Path and EndPath definitions
0071 process.raw2digi_step = cms.Path(process.RawToDigi)
0072 process.L1Reco_step = cms.Path(process.L1Reco)
0073 process.reconstruction_step = cms.Path(process.reconstruction)
0074 process.output_step = cms.EndPath(process.output)
0075 
0076 # Schedule definition
0077 process.schedule = cms.Schedule(process.raw2digi_step,process.L1Reco_step,process.reconstruction_step,process.output_step)
0078 
0079 # customisation of the process.
0080 
0081 # Automatic addition of the customisation function from SimGeneral.MixingModule.fullMixCustomize_cff
0082 from SimGeneral.MixingModule.fullMixCustomize_cff import setCrossingFrameOn 
0083 
0084 #call to customisation function setCrossingFrameOn imported from SimGeneral.MixingModule.fullMixCustomize_cff
0085 process = setCrossingFrameOn(process)
0086 
0087 # End of customisation functions
0088 #do not add changes to your config after this point (unless you know what you are doing)
0089 from FWCore.ParameterSet.Utilities import convertToUnscheduled
0090 process=convertToUnscheduled(process)
0091 
0092 # customisation of the process.
0093 
0094 # End of customisation functions
0095 
0096 # Customisation from command line
0097 
0098 # Add early deletion of temporary data products to reduce peak memory need
0099 from Configuration.StandardSequences.earlyDeleteSettings_cff import customiseEarlyDelete
0100 process = customiseEarlyDelete(process)
0101 # End adding early deletion