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
|
# WARNING:
# I tried running this configuration when I upgraded it as part of the CMSSW migration
# to use reco::JetCorrector instead of the deprecated ::JetCorrector (November 2022).
# I hit errors with the input files not existing. Python will parse the configuration
# and it visually looks OK to me (but I am not a JetCorrector expert...).
# Whoever tries this next should be aware the JetCorrectors were never successfully
# tested in this configuration and there may be other problems that have been there for a
# long time... I did not try to fix problems unrelated to JetCorrections.
# At the very least this will need new input files.
import FWCore.ParameterSet.Config as cms
process = cms.Process('DIJETANALYSIS')
process.TFileService = cms.Service("TFileService",
fileName = cms.string("dijetanalyzer.root")
)
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.StandardSequences.Services_cff')
process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
process.load("Configuration.StandardSequences.MagneticField_cff")
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
from Configuration.AlCa.autoCond import autoCond
process.GlobalTag.globaltag=autoCond['run1_mc']
#load the response corrections calculator
process.load('Calibration.HcalCalibAlgos.diJetAnalyzer_cfi')
process.load('JetMETCorrections.Configuration.CorrectedJetProducers_cff')
# run over files
process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring(
'/store/relval/CMSSW_7_3_0/RelValQCD_Pt_80_120_13/GEN-SIM-RECO/MCRUN2_73_V9_71XGENSIM_FIXGT-v1/00000/8E758AAA-4DA2-E411-8068-003048FFCB96.root',
'/store/relval/CMSSW_7_3_0/RelValQCD_Pt_80_120_13/GEN-SIM-RECO/MCRUN2_73_V9_71XGENSIM_FIXGT-v1/00000/CE0DAE28-56A2-E411-AEFF-003048FFD79C.root',
'/store/relval/CMSSW_7_3_0/RelValQCD_Pt_80_120_13/GEN-SIM-RECO/MCRUN2_73_V9_71XGENSIM_FIXGT-v1/00000/D4D21D16-56A2-E411-A0C4-0026189438E2.root'
))
#print readFiles
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
process.MessageLogger.cerr.FwkReport.reportEvery=cms.untracked.int32(1000)
process.options = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) )
# Load pfNoPileUP
#process.load("CommonTools.ParticleFlow.pfNoPileUp_cff")
#process.load("CommonTools.ParticleFlow.PF2PAT_cff")
#from RecoJets.JetProducers.ak5PFJets_cfi import *
#process.ak5PFJetsCHS = ak5PFJets.clone(
# src = cms.InputTag("pfNoPileUp")
# )
#process.load('HcalClosureTest.Analyzers.calcrespcorr_CHSJECs_cff')
# timing
#process.Timing = cms.Service('Timing')
#process.p = cms.Path(process.pfNoPileUpSequence+process.PF2PAT+process.ak5PFJetsCHS+process.calcrespcorrdijets)
process.p = cms.Path(process.diJetAnalyzer, process.ak4PFCHSL1FastL2L3CorrectorTask)
|