ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/HiGenTools/test/runTuner.py
Revision: 1.1
Committed: Tue May 25 13:47:45 2010 UTC (14 years, 11 months ago) by yilmaz
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Error occurred while calculating annotation data.
Log Message:
Tools for running & validation

File Contents

# Content
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