CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTJetMETValidation_cfg.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 process = cms.Process("TEST")
4 
5 process.load("FWCore.MessageService.MessageLogger_cfi")
6 process.MessageLogger.cerr.FwkReport.reportEvery = 10
7 
8 
9 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(100) )
10 
11 
12 # process.load("HLTriggerOffline.JetMET.RelVal_214_80_120_cff")
13 # process.load("HLTriggerOffline.JetMET.RelVal_220pre1_80_120_cff")
14 # process.load("HLTriggerOffline.JetMET.RelVal_220_80_120_cff")
15 # process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_80_120_cff")
16 # process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_fastsim_80_120_cff")
17 # process.load("HLTriggerOffline.JetMET.RelVal_214_ttbar_cff")
18 # process.load("HLTriggerOffline.JetMET.RelVal_220pre1_ttbar_cff")
19 # process.load("HLTriggerOffline.JetMET.RelVal_220_ttbar_cff")
20 # process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_ttbar_cff")
21 process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_fastsim_ttbar_cff")
22 
23 
24 #process.source = cms.Source("PoolSource",
25 # fileNames = cms.untracked.vstring(
26 # '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'
27 # # TTbar RelVal 2.1.0
28 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/02F674DE-A160-DD11-A882-001617DBD5AC.root',
29 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/04327AC0-1C61-DD11-93B8-001BFCDBD19E.root',
30 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/06621B92-A060-DD11-B33C-000423D6CA6E.root',
31 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/08059389-0E61-DD11-89D1-001A928116DC.root',
32 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0830A57C-1561-DD11-9B9D-001731A28A31.root',
33 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0C6AEA0F-0E61-DD11-BF9F-0018F3D096E0.root',
34 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0C74136A-1761-DD11-80D7-0018F3D09686.root',
35 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/18D5104F-A060-DD11-8746-000423D991D4.root',
36 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/1ED2C659-1861-DD11-857C-0017312B5F3F.root',
37 # '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/1EDB2A98-0D61-DD11-9D88-003048767DDB.root'
38 # )
39 #)
40 
41 #process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
42 #process.GlobalTag.globaltag = "START52_V4::All"
43 
44 process.DQMStore = cms.Service("DQMStore")
45 
46 #Load the Validation
47 process.load("HLTriggerOffline.JetMET.Validation.HLTJetMETValidation_cff")
48 
49 #process.ppf = cms.Path(
50 # process.HLTJetMETValSeq
51 # )
52 
53 #Pickk your favourite Boson (23 is Z , 25 is H0 , 37 is H+)
54 #process.JetMETMCProducer.BosonID = 25
55 
56 
57 
58 
59 
60 
61 
62