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
63
64
65
66
67
68
69
70
71
72
73
|
import FWCore.ParameterSet.Config as cms
process = cms.Process('TESTING')
process.load('Configuration.StandardSequences.Services_cff')
process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
process.load('FWCore.MessageService.MessageLogger_cfi')
process.load('Configuration.EventContent.EventContentCosmics_cff')
process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff')
process.load('Configuration.StandardSequences.EDMtoMEAtRunEnd_cff')
process.load('Configuration.StandardSequences.HarvestingCosmics_cff')
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
process.load("DQMServices.Components.MEtoEDMConverter_cfi")
process.load('HLTriggerOffline.SUSYBSM.SusyExoValidation_cff')
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(-1)
)
process.source = cms.Source("PoolSource",
#secondaryFileNames = cms.untracked.vstring(),
#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'),
#fileNames = cms.untracked.vstring('file:/hadoop/cms/store/user/owen/qcd-300to470-muenriched/post-reco-000.root')
fileNames = cms.untracked.vstring('file:/tmp/pablom/output_1000_1_M2Y.root'),
#fileNames = cms.untracked.vstring('file:/tmp/pablom/file1.root',
# 'file:/tmp/pablom/file2.root',
# 'file:/tmp/pablom/file3.root',
# 'file:/tmp/pablom/file4.root',
# 'file:/tmp/pablom/file5.root',
# 'file:/tmp/pablom/file6.root',
# 'file:/tmp/pablom/file7.root',
# 'file:/tmp/pablom/file8.root',
# 'file:/tmp/pablom/file9.root',
# 'file:/tmp/pablom/file10.root',
#)
#processingMode = cms.untracked.string('RunsAndLumis')
)
from Configuration.AlCa.GlobalTag import GlobalTag
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:startup', '')
process.out = cms.OutputModule("PoolOutputModule",
outputCommands = cms.untracked.vstring(
'drop *',
'keep *_MEtoEDMConverter_*_*'
),
fileName = cms.untracked.string('file:/tmp/pablom/caca.root'),
)
process.HLTSusyExoValSeq = cms.Sequence(process.SUSY_HLT_MET_MUON_ER)
#process.HLTSusyExoValSeq = cms.Sequence(process.SUSY_HLT_InclusiveHT_aux350 + process.SUSY_HLT_InclusiveHT_aux600)
process.run_module = cms.Path(process.HLTSusyExoValSeq+process.MEtoEDMConverter)
#process.run_module = cms.Path(process.HLTSusyExoValSeq)
#process.dqmsave_step = cms.Path(process.DQMSaver)
#process.schedule = cms.Schedule(process.run_module,process.dqmsave_step)
process.outpath = cms.EndPath(process.out)
process.schedule = cms.Schedule(process.run_module, process.outpath)
#process.analyzerpath = cms.Path(
# process.HLTSusyExoValSeq
#)
|