File indexing completed on 2024-04-06 12:06:45
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("SKIM")
0004 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0005
0006
0007
0008
0009
0010 process.skimming = cms.EDFilter("BeamSplash",
0011 energycuttot = cms.untracked.double(1000.0),
0012 energycutecal = cms.untracked.double(700.0),
0013 energycuthcal = cms.untracked.double(700.0),
0014 ebrechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
0015 eerechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0016 hbherechitcollection = cms.InputTag("hbhereco")
0017 )
0018
0019 process.source = cms.Source("PoolSource",
0020 debugVerbosity = cms.untracked.uint32(0),
0021 debugFlag = cms.untracked.bool(False),
0022 fileNames = cms.untracked.vstring(
0023 '/store/data/Commissioning08/BeamHalo/RECO/StuffAlmostToP5_v1/000/061/642/10A0FE34-A67D-DD11-AD05-000423D94E1C.root'
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042 ))
0043
0044 process.configurationMetadata = cms.untracked.PSet(
0045 version = cms.untracked.string('$Revision: 1.1 $'),
0046 name = cms.untracked.string('$Source: /cvs_server/repositories/CMSSW/CMSSW/DPGAnalysis/Skims/python/BeamSplash_cfg.py,v $'),
0047 annotation = cms.untracked.string('BeamSplash skim')
0048 )
0049
0050 process.maxEvents = cms.untracked.PSet(
0051 input = cms.untracked.int32(-1)
0052 )
0053 process.out = cms.OutputModule("PoolOutputModule",
0054 fileName = cms.untracked.string('/tmp/malgeri/BeamSplash.root'),
0055 outputCommands = cms.untracked.vstring('keep *','drop *_MEtoEDMConverter_*_*'),
0056 dataset = cms.untracked.PSet(
0057 dataTier = cms.untracked.string('RECO'),
0058 filterName = cms.untracked.string('BeamSplash')),
0059 SelectEvents = cms.untracked.PSet(
0060 SelectEvents = cms.vstring('p')
0061 )
0062 )
0063
0064 process.p = cms.Path(process.skimming)
0065 process.e = cms.EndPath(process.out)
0066