From a7246a96397176c004a86c45278b5180982237f3 Mon Sep 17 00:00:00 2001 From: Salvatore Rappoccio Date: Mon, 23 Jun 2008 19:04:23 +0000 Subject: [PATCH] --- yaml --- r: 46393 b: "refs/heads/CMSSW_7_1_X" c: 7584a0215bd165de7b9b499de73324854ad9b3fe h: "refs/heads/CMSSW_7_1_X" i: 46391: 7983f8e6944d821265b2eb615d6d11e51cda606a v: v3 --- [refs] | 2 +- .../StarterKit/test/CompositeKitDemo_cfg.py | 78 ------------------- .../StarterKit/test/PatAnalyzerKitDemo_cfg.py | 57 -------------- .../test/PatAnalyzerSkeleton_cfg.py | 17 ---- 4 files changed, 1 insertion(+), 153 deletions(-) delete mode 100644 trunk/PhysicsTools/StarterKit/test/CompositeKitDemo_cfg.py delete mode 100644 trunk/PhysicsTools/StarterKit/test/PatAnalyzerKitDemo_cfg.py delete mode 100644 trunk/PhysicsTools/StarterKit/test/PatAnalyzerSkeleton_cfg.py diff --git a/[refs] b/[refs] index 8e974563b4428..71d3c0da8ec10 100644 --- a/[refs] +++ b/[refs] @@ -1,3 +1,3 @@ --- refs/heads/gh-pages: ac155dadd83efa75cad55c0508a57a2b9dd3d66c -"refs/heads/CMSSW_7_1_X": 8af9627908ff4ef05568ad44cfa1c97a6f09e2aa +"refs/heads/CMSSW_7_1_X": 7584a0215bd165de7b9b499de73324854ad9b3fe diff --git a/trunk/PhysicsTools/StarterKit/test/CompositeKitDemo_cfg.py b/trunk/PhysicsTools/StarterKit/test/CompositeKitDemo_cfg.py deleted file mode 100644 index 832b2d7f57fb2..0000000000000 --- a/trunk/PhysicsTools/StarterKit/test/CompositeKitDemo_cfg.py +++ /dev/null @@ -1,78 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -process = cms.Process("CompositeKit") -process.load("FWCore.MessageLogger.MessageLogger_cfi") - -process.load("PhysicsTools.StarterKit.test.RecoInput_HZZ4lRelVal_cfi") - -process.load("PhysicsTools.PatAlgos.patLayer0_cff") - -process.load("PhysicsTools.PatAlgos.patLayer1_cff") - -process.load("PhysicsTools.StarterKit.CompositeKitDemo_cfi") - -process.load("PhysicsTools.PatAlgos.patLayer1_EventContent_cff") - -process.options = cms.untracked.PSet( - wantSummary = cms.untracked.bool(True) -) -process.source = cms.Source("PoolSource", - debugVerbosity = cms.untracked.uint32(200), - debugFlag = cms.untracked.bool(True), - fileNames = cms.untracked.vstring('') -) - -process.maxEvents = cms.untracked.PSet( - input = cms.untracked.int32(200) -) -process.TFileService = cms.Service("TFileService", - fileName = cms.string('CompositeKit.root') -) - -process.zToMuMu = cms.EDFilter("NamedCandViewShallowCloneCombiner", - cut = cms.string('0.0 < mass < 20000.0'), - name = cms.string('zToMuMu'), - roles = cms.vstring('muon1', - 'muon2'), - decay = cms.string('selectedLayer1Muons@+ selectedLayer1Muons@-') -) - -process.hToZZ = cms.EDFilter("NamedCandViewCombiner", - cut = cms.string('0.0 < mass < 20000.0'), - name = cms.string('hToZZ'), - roles = cms.vstring('Z1', - 'Z2'), - decay = cms.string('zToMuMu zToMuMu') -) - -process.compositeFilter = cms.EDFilter("CandViewCountFilter", - src = cms.InputTag("hToZZ"), - minNumber = cms.uint32(1) -) - -process.EventSelection = cms.PSet( - SelectEvents = cms.untracked.PSet( - SelectEvents = cms.vstring('p') - ) -) -process.patEventContent = cms.PSet( - outputCommands = cms.untracked.vstring('drop *') -) -process.patEventSelection = cms.PSet( - SelectEvents = cms.untracked.PSet( - SelectEvents = cms.vstring('p') - ) -) -process.out = cms.OutputModule("PoolOutputModule", - process.patEventSelection, - process.patEventContent, - verbose = cms.untracked.bool(False), - fileName = cms.untracked.string('CompositeKitSkim.root') -) - -process.p = cms.Path(process.patLayer0*process.patLayer1*process.zToMuMu*process.hToZZ*process.compositeFilter*process.CompositeKitDemo) -process.outpath = cms.EndPath(process.out) -process.MessageLogger.cerr.threshold = 'INFO' -process.patEventContent.outputCommands.extend(process.patLayer1EventContent.outputCommands) -process.patEventContent.outputCommands.extend(['keep *_CompositeKitDemo_*_*', 'keep *_hToZZ_*_*']) - diff --git a/trunk/PhysicsTools/StarterKit/test/PatAnalyzerKitDemo_cfg.py b/trunk/PhysicsTools/StarterKit/test/PatAnalyzerKitDemo_cfg.py deleted file mode 100644 index 9040316a625ad..0000000000000 --- a/trunk/PhysicsTools/StarterKit/test/PatAnalyzerKitDemo_cfg.py +++ /dev/null @@ -1,57 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -process = cms.Process("StarterKit") -process.load("FWCore.MessageLogger.MessageLogger_cfi") - -process.load("PhysicsTools.StarterKit.test.RecoInput_cfi") - -process.load("PhysicsTools.PatAlgos.patLayer0_cff") - -process.load("PhysicsTools.PatAlgos.patLayer1_cff") - -process.load("PhysicsTools.StarterKit.PatAnalyzerKit_cfi") - -process.load("PhysicsTools.PatAlgos.patLayer1_EventContent_cff") - -process.options = cms.untracked.PSet( - wantSummary = cms.untracked.bool(True) -) -process.source = cms.Source("PoolSource", - debugVerbosity = cms.untracked.uint32(200), - debugFlag = cms.untracked.bool(True), - fileNames = cms.untracked.vstring('') -) - -process.maxEvents = cms.untracked.PSet( - input = cms.untracked.int32(200) -) -process.TFileService = cms.Service("TFileService", - fileName = cms.string('PatAnalyzerKitHistos.root') -) - -process.EventSelection = cms.PSet( - SelectEvents = cms.untracked.PSet( - SelectEvents = cms.vstring('p') - ) -) -process.patEventContent = cms.PSet( - outputCommands = cms.untracked.vstring('drop *') -) -process.patEventSelection = cms.PSet( - SelectEvents = cms.untracked.PSet( - SelectEvents = cms.vstring('p') - ) -) -process.out = cms.OutputModule("PoolOutputModule", - process.patEventSelection, - process.patEventContent, - verbose = cms.untracked.bool(False), - fileName = cms.untracked.string('PatAnalyzerKitSkim.root') -) - -process.p = cms.Path(process.patLayer0*process.patLayer1*process.patAnalyzerKit) -process.outpath = cms.EndPath(process.out) -process.MessageLogger.cerr.threshold = 'INFO' -process.patEventContent.outputCommands.extend(process.patLayer1EventContent.outputCommands) -process.patEventContent.outputCommands.extend(['keep *_patAnalyzerKit_*_*']) - diff --git a/trunk/PhysicsTools/StarterKit/test/PatAnalyzerSkeleton_cfg.py b/trunk/PhysicsTools/StarterKit/test/PatAnalyzerSkeleton_cfg.py deleted file mode 100644 index 6da228c977e2f..0000000000000 --- a/trunk/PhysicsTools/StarterKit/test/PatAnalyzerSkeleton_cfg.py +++ /dev/null @@ -1,17 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -process = cms.Process("VerySimplePATAnalysis") -process.load("PhysicsTools.StarterKit.PatAnalyzerSkeleton_cfi") - -process.source = cms.Source("PoolSource", - fileNames = cms.untracked.vstring('file:myPATfile.root') -) - -process.MessageLogger = cms.Service("MessageLogger") - -process.TFileService = cms.Service("TFileService", - fileName = cms.string('histo.root') -) - -process.p = cms.Path(process.verySimplePATAnalysis) -