Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:18:54

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TEST")
0004 
0005 process.load("FWCore.MessageService.MessageLogger_cfi")
0006 process.MessageLogger.cerr.FwkReport.reportEvery = 10
0007 
0008 
0009 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(100) )
0010 
0011 
0012 # process.load("HLTriggerOffline.JetMET.RelVal_214_80_120_cff")
0013 # process.load("HLTriggerOffline.JetMET.RelVal_220pre1_80_120_cff")
0014 # process.load("HLTriggerOffline.JetMET.RelVal_220_80_120_cff")
0015 # process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_80_120_cff")
0016 # process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_fastsim_80_120_cff")
0017 # process.load("HLTriggerOffline.JetMET.RelVal_214_ttbar_cff")
0018 # process.load("HLTriggerOffline.JetMET.RelVal_220pre1_ttbar_cff")
0019 # process.load("HLTriggerOffline.JetMET.RelVal_220_ttbar_cff")
0020 # process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_ttbar_cff")
0021 process.load("HLTriggerOffline.JetMET.RelVal_220_ideal_fastsim_ttbar_cff")
0022 
0023 
0024 #process.source = cms.Source("PoolSource",
0025 #                            fileNames = cms.untracked.vstring(
0026 #    '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'
0027 #         # TTbar RelVal 2.1.0
0028 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/02F674DE-A160-DD11-A882-001617DBD5AC.root',
0029 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/04327AC0-1C61-DD11-93B8-001BFCDBD19E.root',
0030 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/06621B92-A060-DD11-B33C-000423D6CA6E.root',
0031 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/08059389-0E61-DD11-89D1-001A928116DC.root',
0032 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0830A57C-1561-DD11-9B9D-001731A28A31.root',
0033 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0C6AEA0F-0E61-DD11-BF9F-0018F3D096E0.root',
0034 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/0C74136A-1761-DD11-80D7-0018F3D09686.root',
0035 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/18D5104F-A060-DD11-8746-000423D991D4.root',
0036 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/1ED2C659-1861-DD11-857C-0017312B5F3F.root',
0037 #         '/store/relval/CMSSW_2_1_0/RelValTTbar/GEN-SIM-DIGI-RAW-HLTDEBUG-RECO/STARTUP_V4_v1/0001/1EDB2A98-0D61-DD11-9D88-003048767DDB.root'
0038 #            )
0039 #)
0040 
0041 #process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0042 #process.GlobalTag.globaltag = "START52_V4::All"
0043 
0044 process.DQMStore = cms.Service("DQMStore")
0045 
0046 #Load the Validation
0047 process.load("HLTriggerOffline.JetMET.Validation.HLTJetMETValidation_cff")
0048 
0049 #process.ppf = cms.Path(
0050 #        process.HLTJetMETValSeq
0051 #      )
0052 
0053 #Pickk your favourite Boson (23 is Z , 25 is H0 , 37 is H+)
0054 #process.JetMETMCProducer.BosonID = 25
0055 
0056 
0057 
0058 
0059 
0060 
0061 
0062