Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:02

0001 # Auto generated configuration file
0002 # using: 
0003 # Revision: 1.372.2.1 
0004 # Source: /local/reps/CMSSW.admin/CMSSW/Configuration/PyReleaseValidation/python/ConfigBuilder.py,v 
0005 # with command line options: reco --step RAW2DIGI,RECO --conditions GR_P_V32::All --eventcontent AOD --no_exec --data --filein file:outputPhysicsDST.root --fileout outputPhysicsDST_HLTplusAOD.root --python_filename promptReco_RAW2DIGI_AOD.py --number -1
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.EventContent_cff')
0015 process.load('Configuration.StandardSequences.GeometryDB_cff')
0016 process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff')
0017 process.load('Configuration.StandardSequences.RawToDigi_Data_cff')
0018 process.load('Configuration.StandardSequences.Reconstruction_Data_cff')
0019 process.load('Configuration.StandardSequences.EndOfProcess_cff')
0020 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0021 
0022 process.maxEvents = cms.untracked.PSet(
0023     input = cms.untracked.int32(-1)
0024 )
0025 
0026 # Input source
0027 process.source = cms.Source("PoolSource",
0028     secondaryFileNames = cms.untracked.vstring(),
0029     fileNames = cms.untracked.vstring('file:outputPhysicsDST.root')
0030 )
0031 
0032 process.options = cms.untracked.PSet(
0033 
0034 )
0035 
0036 # Production Info
0037 process.configurationMetadata = cms.untracked.PSet(
0038     version = cms.untracked.string(''),
0039     annotation = cms.untracked.string('reco nevts:-1'),
0040     name = cms.untracked.string('PyReleaseValidation')
0041 )
0042 
0043 # Output definition
0044 
0045 process.AODoutput = cms.OutputModule("PoolOutputModule",
0046     eventAutoFlushCompressedSize = cms.untracked.int32(15728640),
0047     outputCommands = process.AODEventContent.outputCommands,
0048     fileName = cms.untracked.string('outputPhysicsDST_HLTplusAOD.root'),
0049     dataset = cms.untracked.PSet(
0050         filterName = cms.untracked.string(''),
0051         dataTier = cms.untracked.string('')
0052     )
0053 )
0054 
0055 process.AODoutput.outputCommands.extend(
0056         cms.untracked.vstring(
0057        'keep *_hltActivityPhotonClusterShape_*_*',
0058        'keep *_hltActivityPhotonEcalIso_*_*',
0059        'keep *_hltActivityPhotonHcalForHE_*_*',
0060        'keep *_hltActivityPhotonHcalIso_*_*',
0061        'keep *_hltCaloJetIDPassed_*_*',
0062        'keep *_hltElectronActivityDetaDphi_*_*',
0063        'keep *_hltHitElectronActivityTrackIsol_*_*',
0064        'keep *_hltKT6CaloJets_rho*_*',
0065        'keep *_hltL3MuonCandidates_*_*',
0066        'keep *_hltL3MuonCombRelIsolations_*_*',
0067        'keep *_hltMetClean_*_*',
0068        'keep *_hltMet_*_*',
0069        'keep *_hltPixelMatchElectronsActivity_*_*',
0070        'keep *_hltPixelVertices_*_*',
0071        'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*',
0072        'keep L1GlobalTriggerReadoutRecord_hltGtDigis_*_*',
0073        'keep edmTriggerResults_*_*_*',
0074        ## RAW data                                                                                                    
0075        #'keep FEDRawDataCollection_rawDataCollector_*_*',           
0076        #'keep FEDRawDataCollection_source_*_*', 
0077        'keep triggerTriggerEvent_*_*_*',
0078        'keep *_hltL1GtObjectMap_*_*'
0079             )
0080           )
0081 
0082 
0083 # Additional output definition
0084 
0085 # Other statements
0086 process.GlobalTag.globaltag = 'GR_P_V32::All'
0087 
0088 # Path and EndPath definitions
0089 process.raw2digi_step = cms.Path(process.RawToDigi)
0090 process.reconstruction_step = cms.Path(process.reconstruction)
0091 process.endjob_step = cms.EndPath(process.endOfProcess)
0092 process.AODoutput_step = cms.EndPath(process.AODoutput)
0093 
0094 # Schedule definition
0095 process.schedule = cms.Schedule(process.raw2digi_step,process.reconstruction_step,process.endjob_step,process.AODoutput_step)
0096