/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimG4Core/CustomPhysics/test/dumpStopPoints.py
19 строк
538 B
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process('SCAN') process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring('file:PYTHIA6_Exotica_HSCP_gluino300_cfg_py_GEN_SIM_DIGI_L1_DIGI2RAW_HLT.root') ) process.rhStopDump = cms.EDAnalyzer ( "RHStopDump", stoppedFile = cms.string("stoppedPoint.txt") ) process.rhStopDumpstep = cms.Path (process. rhStopDump) process.shadule = cms.Schedule(process.rhStopDumpstep)