1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
import FWCore.ParameterSet.Config as cms
process = cms.Process('B2GDQM')
## imports of standard configurations
process.load('DQMOffline.Configuration.DQMOffline_cff')
process.load('Configuration.StandardSequences.EndOfProcess_cff')
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
## --------------------------------------------------------------------
## Frontier Conditions: (adjust accordingly!!!)
##
## For CMSSW_3_8_X MC use ---> 'START38_V12::All'
## For Data (38X re-processing) use ---> 'GR_R_38X_V13::All'
## For Data (38X prompt reco) use ---> 'GR10_P_V10::All'
##
## For more details have a look at: WGuideFrontierConditions
## --------------------------------------------------------------------
##process.GlobalTag.globaltag = 'START38_V12::All'
process.GlobalTag.globaltag = 'START61_V1::All'
#process.GlobalTag.globaltag = 'START52_V4A::All'
## input file(s) for testing
process.source = cms.Source("PoolSource",
fileNames = cms.untracked.vstring(
#'/store/relval/CMSSW_4_2_3/RelValTTbar/GEN-SIM-RECO/START42_V12-v2/0062/728877FF-717B-E011-9989-00261894395B.root'
#'/store/data/Run2011A/SingleMu/AOD/PromptReco-v4/000/165/999/A2B8A207-838B-E011-B1F5-000423D94908.root'
# '/store/relval/CMSSW_4_2_3/RelValTTbar/GEN-SIM-RECO/MC_42_V12-v2/0062/60815BF5-387B-E011-805B-0018F3D0970C.root'
# '/store/relval/CMSSW_5_2_0/RelValTTbar/GEN-SIM-RECO/START52_V4A-v1/0248/14F70731-1A69-E111-B218-0018F3D096EA.root'
"/store/relval/CMSSW_6_1_0_pre3/RelValTTbar/GEN-SIM-RECO/PU_START61_V1-v1/0005/F6E9C904-720F-E211-B55F-003048D373F6.root"
)
)
## number of events
process.maxEvents = cms.untracked.PSet(
# input = cms.untracked.int32(500)
input = cms.untracked.int32(-1)
)
## apply VBTF electronID (needed for the current implementation
## of b2gSingleElectronDQMLoose and b2gSingleElectronDQMMedium)
process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
process.load("Configuration.StandardSequences.MagneticField_cff")
process.load("DQM.Physics.topElectronID_cff")
#process.b2gSingleMuonLooseTriggerDQM.setup.triggerExtras.src = cms.InputTag("TriggerResults","","REDIGI42X")
#process.b2gSingleMuonLooseTriggerDQM.preselection.trigger.src = cms.InputTag("TriggerResults","","REDIGI42X")
#process.b2gSingleMuonLooseTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_Mu15_v2'])
#process.b2gSingleMuonMediumTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_Mu15_v2'])
## output
process.output = cms.OutputModule("PoolOutputModule",
fileName = cms.untracked.string('b2gDQM_production.root'),
outputCommands = cms.untracked.vstring(
'drop *_*_*_*',
'keep *_*_*_B2GDQM',
'drop *_TriggerResults_*_B2GDQM',
'drop *_simpleEleId70cIso_*_B2GDQM',
),
splitLevel = cms.untracked.int32(0),
dataset = cms.untracked.PSet(
dataTier = cms.untracked.string(''),
filterName = cms.untracked.string('')
)
)
## load jet corrections
process.load("JetMETCorrections.Configuration.JetCorrectionServicesAllAlgos_cff")
process.prefer("ak4PFL2L3")
## check the event content
process.content = cms.EDAnalyzer("EventContentAnalyzer")
## configure message logger
process.load("FWCore.MessageLogger.MessageLogger_cfi")
process.MessageLogger.cerr.threshold = 'INFO'
process.MessageLogger.cerr.B2GSingleLeptonTriggerDQM = cms.untracked.PSet(limit = cms.untracked.int32(1))
process.b2gSingleMuonMediumTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_IsoMu17_eta2p1_TriCentralPFNoPUJet50_40_30_v1'])
process.b2gSingleElectronMediumTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_Ele25_CaloIdVT_TrkIdT_TriCentralPFNoPUJet50_40_30_v5'])
#process.SingleB2GSingleElectronTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_Ele25_CaloIdVT_CaloIsoT_TrkIdT_TrkIsoT_CentralPFNoPUJet30_BTagIPIter_v6'])
process.SingleB2GSingleMuonTriggerDQM.preselection.trigger.select = cms.vstring(['HLT_IsoMu17_eta2p1_CentralPFNoPUJet30_BTagIPIter_v1'])
#
## add it to the p path below
## path definitions
process.p = cms.Path(
#process.content *
process.simpleEleId70cIso *
process.b2gSingleMuonMediumTriggerDQM +
process.b2gSingleElectronMediumTriggerDQM +
process.SingleB2GSingleMuonTriggerDQM+
process.SingleB2GSingleElectronTriggerDQM+
process.DiMuonMu17_Mu8 +
process.DiMuonMu17_TkMu8 +
process.DiElectronDQM +
process.ElecMuonMu17Ele8 +
process.ElecMuonMu8Ele17
)
process.endjob = cms.Path(
process.endOfProcess
)
process.fanout = cms.EndPath(
process.output
)
## schedule definition
process.schedule = cms.Schedule(
process.p,
process.endjob,
process.fanout
)
|