00001 import FWCore.ParameterSet.Config as cms 00002 import DPGAnalysis.Skims.HCALHighEnergyCombinedPath_cff 00003 00004 process = cms.Process("SKIM") 00005 00006 process.extend(DPGAnalysis.Skims.HCALHighEnergyCombinedPath_cff) 00007 00008 process.source = cms.Source("PoolSource", 00009 fileNames = cms.untracked.vstring( 00010 '/store/data/Commissioning08/Cosmics/RECO/v1/000/067/122/D424EBA5-55A0-DD11-A8BF-000423D9853C.root', 00011 '/store/data/Commissioning08/Cosmics/RECO/v1/000/067/122/C67EDF0D-49A0-DD11-9403-001617DBD332.root'), 00012 secondaryFileNames = cms.untracked.vstring( 00013 '/store/data/Commissioning08/Cosmics/RAW/v1/000/067/122/6E2601EC-3FA0-DD11-BA50-000423D986A8.root', 00014 '/store/data/Commissioning08/Cosmics/RAW/v1/000/067/122/C240B0B2-47A0-DD11-A6AD-001617C3B654.root') 00015 ) 00016 00017 process.configurationMetadata = cms.untracked.PSet( 00018 version = cms.untracked.string('$Revision: 1.4 $'), 00019 name = cms.untracked.string('$Source: /cvs_server/repositories/CMSSW/CMSSW/DPGAnalysis/Skims/python/HCALHighEnergy_cfg.py,v $'), 00020 annotation = cms.untracked.string('CRAFT HCALHighEnergy skim') 00021 ) 00022 00023 process.maxEvents = cms.untracked.PSet( 00024 input = cms.untracked.int32(-1) 00025 ) 00026 00027 process.out = cms.OutputModule("PoolOutputModule", 00028 outputCommands = cms.untracked.vstring('keep *','drop *_MEtoEDMConverter_*_*'), 00029 SelectEvents = cms.untracked.PSet( 00030 SelectEvents = cms.vstring("HCALHighEnergyPath") 00031 ), 00032 dataset = cms.untracked.PSet( 00033 dataTier = cms.untracked.string('RAW-RECO'), 00034 filterName = cms.untracked.string('HCALHighEnergy')), 00035 fileName = cms.untracked.string('HCALHighEnergy_filter.root') 00036 ) 00037 00038 process.p = cms.EndPath(process.out)