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
00010 process.skimming = cms.EDFilter("BeamSplash",
00011 energycuttot = cms.untracked.double(1000.0),
00012 energycutecal = cms.untracked.double(700.0),
00013 energycuthcal = cms.untracked.double(700.0),
00014 ebrechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00015 eerechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00016 hbherechitcollection = cms.InputTag("hbhereco")
00017 )
00018
00019 process.source = cms.Source("PoolSource",
00020 debugVerbosity = cms.untracked.uint32(0),
00021 debugFlag = cms.untracked.bool(False),
00022 fileNames = cms.untracked.vstring(
00023 '/store/data/Commissioning08/BeamHalo/RECO/StuffAlmostToP5_v1/000/061/642/10A0FE34-A67D-DD11-AD05-000423D94E1C.root'
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 ))
00043
00044 process.configurationMetadata = cms.untracked.PSet(
00045 version = cms.untracked.string('$Revision: 1.1 $'),
00046 name = cms.untracked.string('$Source: /cvs_server/repositories/CMSSW/CMSSW/DPGAnalysis/Skims/python/BeamSplash_cfg.py,v $'),
00047 annotation = cms.untracked.string('BeamSplash skim')
00048 )
00049
00050 process.maxEvents = cms.untracked.PSet(
00051 input = cms.untracked.int32(-1)
00052 )
00053 process.out = cms.OutputModule("PoolOutputModule",
00054 fileName = cms.untracked.string('/tmp/malgeri/BeamSplash.root'),
00055 outputCommands = cms.untracked.vstring('keep *','drop *_MEtoEDMConverter_*_*'),
00056 dataset = cms.untracked.PSet(
00057 dataTier = cms.untracked.string('RECO'),
00058 filterName = cms.untracked.string('BeamSplash')),
00059 SelectEvents = cms.untracked.PSet(
00060 SelectEvents = cms.vstring('p')
00061 )
00062 )
00063
00064 process.p = cms.Path(process.skimming)
00065 process.e = cms.EndPath(process.out)
00066