Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:10:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process('TESTING')
0004 
0005 process.load('Configuration.StandardSequences.Services_cff')
0006 process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
0007 process.load('FWCore.MessageService.MessageLogger_cfi')
0008 process.load('Configuration.EventContent.EventContentCosmics_cff')
0009 process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
0010 process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff')
0011 process.load('Configuration.StandardSequences.EDMtoMEAtRunEnd_cff')
0012 process.load('Configuration.StandardSequences.HarvestingCosmics_cff')
0013 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0014 
0015 process.load("DQMServices.Components.MEtoEDMConverter_cfi")
0016 
0017 process.load('HLTriggerOffline.SUSYBSM.SusyExoValidation_cff')
0018 
0019 process.maxEvents = cms.untracked.PSet(
0020     input = cms.untracked.int32(-1)
0021 )
0022 
0023 process.source = cms.Source("PoolSource",
0024     #secondaryFileNames = cms.untracked.vstring(),
0025     #fileNames = cms.untracked.vstring('file:/home/users/jgran/hltDQM/CMSSW_7_1_7/src/HLTriggerOffline/SUSYBSM/qcd-pt-300to470-muenriched-edm-file1-reco-test10evts-1a.root'),
0026     #fileNames = cms.untracked.vstring('file:/hadoop/cms/store/user/owen/qcd-300to470-muenriched/post-reco-000.root')
0027     fileNames = cms.untracked.vstring('file:/tmp/pablom/output_1000_1_M2Y.root'),
0028     #fileNames = cms.untracked.vstring('file:/tmp/pablom/file1.root',
0029     #                                  'file:/tmp/pablom/file2.root',
0030     #                                  'file:/tmp/pablom/file3.root',
0031     #                                  'file:/tmp/pablom/file4.root',
0032     #                                  'file:/tmp/pablom/file5.root',
0033     #                                  'file:/tmp/pablom/file6.root',
0034     #                                  'file:/tmp/pablom/file7.root',
0035     #                                  'file:/tmp/pablom/file8.root',
0036     #                                  'file:/tmp/pablom/file9.root',
0037     #                                  'file:/tmp/pablom/file10.root',
0038     #) 
0039 
0040 
0041     #processingMode = cms.untracked.string('RunsAndLumis')
0042 )
0043 
0044 
0045 
0046 from Configuration.AlCa.GlobalTag import GlobalTag
0047 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:startup', '')
0048 
0049 process.out = cms.OutputModule("PoolOutputModule",
0050     outputCommands = cms.untracked.vstring(
0051         'drop *',
0052         'keep *_MEtoEDMConverter_*_*'
0053     ),
0054     fileName = cms.untracked.string('file:/tmp/pablom/caca.root'),
0055 )
0056 
0057 
0058 process.HLTSusyExoValSeq = cms.Sequence(process.SUSY_HLT_MET_MUON_ER)
0059 #process.HLTSusyExoValSeq = cms.Sequence(process.SUSY_HLT_InclusiveHT_aux350 + process.SUSY_HLT_InclusiveHT_aux600)
0060 
0061 process.run_module = cms.Path(process.HLTSusyExoValSeq+process.MEtoEDMConverter)
0062 #process.run_module = cms.Path(process.HLTSusyExoValSeq)
0063 #process.dqmsave_step = cms.Path(process.DQMSaver)
0064 #process.schedule = cms.Schedule(process.run_module,process.dqmsave_step)
0065 process.outpath = cms.EndPath(process.out)
0066 process.schedule = cms.Schedule(process.run_module, process.outpath)
0067 
0068 #process.analyzerpath = cms.Path(
0069 #    process.HLTSusyExoValSeq 
0070 #)
0071 
0072 
0073