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
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST")
process.load("FWCore.MessageService.MessageLogger_cfi")
process.MessageLogger.cerr.FwkReport.reportEvery = 10
process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(100) )
# process.load("HLTriggerOffline.JetMET.RelVal_214_80_120_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_220pre1_80_120_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_220_80_120_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_80_120_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_fastsim_80_120_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_214_ttbar_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_220pre1_ttbar_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_220_ttbar_cff")
# process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_ttbar_cff")
process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_fastsim_ttbar_cff")
#process.source = cms.Source("PoolSource",
# fileNames = cms.untracked.vstring(
# 'root://eoscms//eos/cms/store/relval/CMSSW_5_2_2/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG/START52_V4-v3/0000/84D4C275-6C74-E111-89B0-003048F11C5C.root'
# # TTbar RelVal 2.1.0
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/02F674DE-A160-DD11-A882-001617DBD5AC.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/04327AC0-1C61-DD11-93B8-001BFCDBD19E.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/06621B92-A060-DD11-B33C-000423D6CA6E.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/08059389-0E61-DD11-89D1-001A928116DC.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0830A57C-1561-DD11-9B9D-001731A28A31.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0C6AEA0F-0E61-DD11-BF9F-0018F3D096E0.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0C74136A-1761-DD11-80D7-0018F3D09686.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/18D5104F-A060-DD11-8746-000423D991D4.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/1ED2C659-1861-DD11-857C-0017312B5F3F.root',
# '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/1EDB2A98-0D61-DD11-9D88-003048767DDB.root'
# )
#)
#process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
#process.GlobalTag.globaltag = "START52_V4::All"
process.DQMStore = cms.Service("DQMStore")
#Load the Validation
process.load("HLTriggerOffline.JetMET.Validation.HLTJetMETValidation_cff")
#process.ppf = cms.Path(
# process.HLTJetMETValSeq
# )
#Pickk your favourite Boson (23 is Z , 25 is H0 , 37 is H+)
#process.JetMETMCProducer.BosonID = 25
|