1 |
|
2 |
import FWCore.ParameterSet.Config as cms
|
3 |
|
4 |
process = cms.Process('TUNE')
|
5 |
|
6 |
process.load('CmsHi.HiGenTools.hiTrivialTuner_cfi')
|
7 |
process.load("SimGeneral.HepPDTESSource.pythiapdt_cfi")
|
8 |
|
9 |
process.ana = cms.EDAnalyzer('TuneAnalyzer')
|
10 |
|
11 |
process.source = cms.Source("PoolSource",
|
12 |
fileNames = cms.untracked.vstring('rfio:/castor/cern.ch/cms/store/relval/CMSSW_3_7_0_pre5/RelValHydjetQ_MinBias_2760GeV/GEN-SIM-RAW/MC_37Y_V4-v1/0022/1499A186-5963-DF11-8D1F-00261894385A.root')
|
13 |
|
14 |
)
|
15 |
|
16 |
process.output = cms.OutputModule("PoolOutputModule",
|
17 |
fileName = cms.untracked.string('tuned.root')
|
18 |
)
|
19 |
|
20 |
process.TFileService = cms.Service('TFileService',
|
21 |
fileName = cms.string('treefile.root')
|
22 |
)
|
23 |
|
24 |
process.p = cms.Path(process.hiTunedG4SimHits*process.ana)
|
25 |
process.e = cms.EndPath(process.output)
|
26 |
|
27 |
|
28 |
|
29 |
|
30 |
|
31 |
|
32 |
|
33 |
|