Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:27

0001 import FWCore.ParameterSet.Config as cms
0002 process = cms.Process("test")
0003 
0004 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) )
0005 process.source = cms.Source(
0006     'PoolSource',
0007 # CSA14 RECO
0008 #    fileNames = cms.untracked.vstring('root://eoscms.cern.ch//eos/cms/store/relval/CMSSW_7_0_5/RelValTTbar_13/GEN-SIM-RECO/POSTLS170_V6-v3/00000/0423767B-B5DD-E311-A1E0-02163E00E5B5.root') 
0009 # 720 RECO
0010     fileNames = cms.untracked.vstring('root://eoscms.cern.ch//store/relval/CMSSW_7_5_0_pre4/RelValTTbar_13/GEN-SIM-RECO/MCRUN2_75_V1-v1/00000/469C34DB-12F6-E411-B012-0025905B855C.root')
0011 # PHYS14 mAOD
0012 #    fileNames = cms.untracked.vstring('root://xrootd.unl.edu//store/mc/Phys14DR/TTJets_MSDecaysCKM_central_Tune4C_13TeV-madgraph-tauola/MINIAODSIM/PU30bx50_PHYS14_25_V1-v1/00000/003B6371-8D81-E411-8467-003048F0E826.root')
0013 # PHYS14 mAOD local
0014 #    fileNames = cms.untracked.vstring('file:/data/schoef/local/TTJets_MSDecaysCKM_central_Tune4C_13TeV-madgraph-tauola_MINIAODSIM_PU20bx25_PHYS14_25_V1-v1.root')
0015     )
0016 
0017 
0018 process.load('Configuration.StandardSequences.Services_cff')
0019 #process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0020 #process.GlobalTag.globaltag = 'MCRUN2_75_V1'
0021 process.load('JetMETCorrections.Type1MET.correctionTermsPfMetMult_cff')
0022 
0023 process.out = cms.OutputModule("PoolOutputModule",
0024      #verbose = cms.untracked.bool(True),
0025 #     SelectEvents   = cms.untracked.PSet( SelectEvents = cms.vstring('p') ),
0026      fileName = cms.untracked.string('histo.root'),
0027      outputCommands = cms.untracked.vstring('keep *_*_*_test','keep recoPFMETs_*_*_*') 
0028 )
0029 process.load('JetMETCorrections.Type1MET.correctedMet_cff')
0030 process.load('JetMETCorrections.Type1MET.correctionTermsPfMetType1Type2_cff')
0031 #
0032 # RUN!
0033 #
0034 process.run = cms.Path(
0035   process.correctionTermsPfMetMult
0036 #  *process.correctionTermsPfMetType1Type2
0037 #  *process.pfMetT0rt
0038 #  *process.pfMetT0rtT1
0039 #  *process.pfMetT0rtT1T2
0040 #  *process.pfMetT0rtT2
0041 #  *process.pfMetT0pc
0042 #  *process.pfMetT0pcT1
0043 #  *process.pfMetT1
0044 #  *process.pfMetT1T2
0045   *process.pfMetTxy
0046 #  *process.pfMetT0rtTxy
0047 #  *process.pfMetT0rtT1Txy
0048 #  *process.pfMetT0rtT1T2Txy
0049 #  *process.pfMetT0pcTxy
0050 #  *process.pfMetT0pcT1Txy
0051 #  *process.pfMetT0pcT1T2Txy
0052 #  *process.pfMetT1Txy
0053 #  *process.pfMetT1T2Txy
0054 )
0055 
0056 process.outpath = cms.EndPath(process.out)