1 import FWCore.ParameterSet.Config
as cms
3 process = cms.Process(
"SKIM")
4 process.load(
"FWCore.MessageLogger.MessageLogger_cfi")
10 process.skimming = cms.EDFilter(
"BeamSplash",
11 energycuttot = cms.untracked.double(1000.0),
12 energycutecal = cms.untracked.double(700.0),
13 energycuthcal = cms.untracked.double(700.0),
14 ebrechitcollection = cms.InputTag(
"ecalRecHit",
"EcalRecHitsEB"),
15 eerechitcollection = cms.InputTag(
"ecalRecHit",
"EcalRecHitsEE"),
16 hbherechitcollection = cms.InputTag(
"hbhereco")
19 process.source = cms.Source(
"PoolSource",
20 debugVerbosity = cms.untracked.uint32(0),
21 debugFlag = cms.untracked.bool(
False),
22 fileNames = cms.untracked.vstring(
23 '/store/data/Commissioning08/BeamHalo/RECO/StuffAlmostToP5_v1/000/061/642/10A0FE34-A67D-DD11-AD05-000423D94E1C.root'
44 process.configurationMetadata = cms.untracked.PSet(
45 version = cms.untracked.string(
'$Revision: 1.1 $'),
46 name = cms.untracked.string(
'$Source: /cvs_server/repositories/CMSSW/CMSSW/DPGAnalysis/Skims/python/BeamSplash_cfg.py,v $'),
47 annotation = cms.untracked.string(
'BeamSplash skim')
50 process.maxEvents = cms.untracked.PSet(
51 input = cms.untracked.int32(-1)
53 process.out = cms.OutputModule(
"PoolOutputModule",
54 fileName = cms.untracked.string(
'/tmp/malgeri/BeamSplash.root'),
55 outputCommands = cms.untracked.vstring(
'keep *',
'drop *_MEtoEDMConverter_*_*'),
56 dataset = cms.untracked.PSet(
57 dataTier = cms.untracked.string(
'RECO'),
58 filterName = cms.untracked.string(
'BeamSplash')),
59 SelectEvents = cms.untracked.PSet(
60 SelectEvents = cms.vstring(
'p')
64 process.p = cms.Path(process.skimming)
65 process.e = cms.EndPath(process.out)