Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 process = cms.Process("SKIM")
00004 process.load("FWCore.MessageLogger.MessageLogger_cfi")
00005
00006
00007
00008
00009 process.options = cms.untracked.PSet(
00010 wantSummary = cms.untracked.bool(True)
00011 )
00012
00013
00014
00015 process.load('L1TriggerConfig.L1GtConfigProducers.L1GtTriggerMaskTechTrigConfig_cff')
00016 process.load('HLTrigger/HLTfilters/hltLevel1GTSeed_cfi')
00017
00018 process.L1T1=process.hltLevel1GTSeed.clone()
00019 process.L1T1.L1TechTriggerSeeding = cms.bool(True)
00020 process.L1T1.L1SeedsLogicalExpression = cms.string('(40 OR 41) AND NOT (36 OR 37 OR 38 OR 39)')
00021
00022
00023
00024 process.bscnobeamhalo = cms.Path(process.L1T1)
00025
00026
00027 process.source = cms.Source("PoolSource",
00028 fileNames = cms.untracked.vstring(
00029 '/store/data/BeamCommissioning09/MinimumBias/RECO/v2/000/123/596/7E34865F-45E2-DE11-896A-000423D98F98.root',
00030 '/store/data/BeamCommissioning09/MinimumBias/RECO/v2/000/123/596/7E34865F-45E2-DE11-896A-000423D98F98.root'
00031 ),
00032 secondaryFileNames = cms.untracked.vstring(
00033 '/store/data/BeamCommissioning09/MinimumBias/RAW/v1/000/123/596/BC0F7A9A-39E2-DE11-A501-000423D99660.root',
00034 '/store/data/BeamCommissioning09/MinimumBias/RAW/v1/000/123/596/D6AB55BC-3AE2-DE11-8F92-000423D999CA.root'
00035 ))
00036
00037 process.configurationMetadata = cms.untracked.PSet(
00038 version = cms.untracked.string('$Revision: 1.1 $'),
00039 name = cms.untracked.string('$Source: /local/reps/CMSSW/CMSSW/DPGAnalysis/Skims/python/bscnobeamhalo_cfg.py,v $'),
00040 annotation = cms.untracked.string('BSC skim')
00041 )
00042
00043 process.maxEvents = cms.untracked.PSet(
00044 input = cms.untracked.int32(-1)
00045 )
00046
00047
00048
00049 process.out = cms.OutputModule("PoolOutputModule",
00050 fileName = cms.untracked.string('/tmp/malgeri/bscnobeamhalo.root'),
00051 outputCommands = cms.untracked.vstring('keep *','drop *_MEtoEDMConverter_*_*'),
00052 dataset = cms.untracked.PSet(
00053 dataTier = cms.untracked.string('RAW-RECO'),
00054 filterName = cms.untracked.string('bscnobeamhalo')),
00055 SelectEvents = cms.untracked.PSet(
00056 SelectEvents = cms.vstring('bscnobeamhalo')
00057 )
00058 )
00059
00060 process.e = cms.EndPath(process.out)
00061