Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 process = cms.Process("RESKIM")
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 process.skimming = cms.EDFilter("ECALActivity",
00015 ebrechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00016 eerechitcollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00017 EBnum = cms.untracked.int32(7),
00018 EBthresh = cms.untracked.double(0.3),
00019 EEnum = cms.untracked.int32(5),
00020 EEthresh = cms.untracked.double(0.5),
00021 ETOTnum = cms.untracked.int32(3),
00022 ETOTthresh = cms.untracked.double(0.8),
00023 applyfilter = cms.untracked.bool(True)
00024 )
00025
00026 process.source = cms.Source("PoolSource",
00027 debugVerbosity = cms.untracked.uint32(0),
00028 debugFlag = cms.untracked.bool(False),
00029 fileNames = cms.untracked.vstring(
00030 'file:/afs/cern.ch/cms/CAF/CMSCOMM/COMM_GLOBAL/bit40or41skim.root'
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 ))
00051
00052 process.configurationMetadata = cms.untracked.PSet(
00053 version = cms.untracked.string('$Revision: 1.1 $'),
00054 name = cms.untracked.string('$Source: /local/reps/CMSSW/CMSSW/DPGAnalysis/Skims/python/ECALActivity_cfg.py,v $'),
00055 annotation = cms.untracked.string('ECALActivity skim')
00056 )
00057
00058 process.maxEvents = cms.untracked.PSet(
00059 input = cms.untracked.int32(-1)
00060 )
00061 process.out = cms.OutputModule("PoolOutputModule",
00062 fileName = cms.untracked.string('ECALActivity.root'),
00063 outputCommands = cms.untracked.vstring('keep *','drop *_MEtoEDMConverter_*_*'),
00064 dataset = cms.untracked.PSet(
00065 dataTier = cms.untracked.string('RECO'),
00066 filterName = cms.untracked.string('ECALActivity')),
00067 SelectEvents = cms.untracked.PSet(
00068 SelectEvents = cms.vstring('p')
00069 )
00070 )
00071
00072 process.p = cms.Path(process.skimming)
00073 process.e = cms.EndPath(process.out)
00074