File indexing completed on 2023-03-17 11:09:54
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process('B2GDQM')
0004
0005
0006 process.load('DQMOffline.Configuration.DQMOffline_cff')
0007 process.load('Configuration.StandardSequences.EndOfProcess_cff')
0008 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 process.GlobalTag.globaltag = 'START61_V1::All'
0021
0022
0023
0024 process.source = cms.Source("PoolSource",
0025 fileNames = cms.untracked.vstring(
0026
0027
0028
0029
0030 "/store/relval/CMSSW_6_1_0_pre3/RelValTTbar/GEN-SIM-RECO/PU_START61_V1-v1/0005/F6E9C904-720F-E211-B55F-003048D373F6.root"
0031 )
0032 )
0033
0034
0035 process.maxEvents = cms.untracked.PSet(
0036
0037 input = cms.untracked.int32(-1)
0038 )
0039
0040
0041
0042 process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
0043 process.load("Configuration.StandardSequences.MagneticField_cff")
0044 process.load("DQM.Physics.topElectronID_cff")
0045
0046
0047
0048
0049
0050
0051
0052 process.output = cms.OutputModule("PoolOutputModule",
0053 fileName = cms.untracked.string('b2gDQM_production.root'),
0054 outputCommands = cms.untracked.vstring(
0055 'drop *_*_*_*',
0056 'keep *_*_*_B2GDQM',
0057 'drop *_TriggerResults_*_B2GDQM',
0058 'drop *_simpleEleId70cIso_*_B2GDQM',
0059 ),
0060 splitLevel = cms.untracked.int32(0),
0061 dataset = cms.untracked.PSet(
0062 dataTier = cms.untracked.string(''),
0063 filterName = cms.untracked.string('')
0064 )
0065 )
0066
0067
0068 process.load("JetMETCorrections.Configuration.JetCorrectionServicesAllAlgos_cff")
0069 process.prefer("ak4PFL2L3")
0070
0071
0072 process.content = cms.EDAnalyzer("EventContentAnalyzer")
0073
0074
0075 process.load("FWCore.MessageLogger.MessageLogger_cfi")
0076 process.MessageLogger.cerr.threshold = 'INFO'
0077 process.MessageLogger.cerr.B2GSingleLeptonTriggerDQM = cms.untracked.PSet(limit = cms.untracked.int32(1))
0078
0079
0080
0081 process.b2gSingleMuonMediumTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_IsoMu17_eta2p1_TriCentralPFNoPUJet50_40_30_v1'])
0082 process.b2gSingleElectronMediumTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_Ele25_CaloIdVT_TrkIdT_TriCentralPFNoPUJet50_40_30_v5'])
0083
0084 process.SingleB2GSingleMuonTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_IsoMu17_eta2p1_CentralPFNoPUJet30_BTagIPIter_v1'])
0085
0086
0087
0088
0089 process.p = cms.Path(
0090
0091 process.simpleEleId70cIso *
0092 process.b2gSingleMuonMediumTriggerDQM +
0093 process.b2gSingleElectronMediumTriggerDQM +
0094 process.SingleB2GSingleMuonTriggerDQM+
0095 process.SingleB2GSingleElectronTriggerDQM+
0096 process.DiMuonMu17_Mu8 +
0097 process.DiMuonMu17_TkMu8 +
0098 process.DiElectronDQM +
0099 process.ElecMuonMu17Ele8 +
0100 process.ElecMuonMu8Ele17
0101 )
0102 process.endjob = cms.Path(
0103 process.endOfProcess
0104 )
0105 process.fanout = cms.EndPath(
0106 process.output
0107 )
0108
0109
0110 process.schedule = cms.Schedule(
0111 process.p,
0112 process.endjob,
0113 process.fanout
0114 )