/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CalibTracker/SiStripCommon/python/theBigNtupleMC_cfi.py
31 строка
1 KB
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from CalibTracker.SiStripCommon.ShallowEventDataProducer_cfi import * from CalibTracker.SiStripCommon.ShallowClustersProducer_cfi import * from CalibTracker.SiStripCommon.ShallowTrackClustersProducer_cfi import * from CalibTracker.SiStripCommon.ShallowRechitClustersProducer_cfi import * from CalibTracker.SiStripCommon.ShallowSimhitClustersProducer_cfi import * from CalibTracker.SiStripCommon.ShallowTracksProducer_cfi import * from CalibTracker.SiStripCommon.ShallowSimTracksProducer_cfi import * shallowTree = cms.EDAnalyzer("ShallowTree", outputCommands = cms.untracked.vstring( 'drop *', 'keep *_shallowEventRun_*_*', 'keep *_shallowClusters_*_*', 'keep *_shallowRechitClusters_*_*', 'keep *_shallowTracks_*_*', 'keep *_shallowTrackClusters_*_*', 'keep *_shallowSimhitClusters_*_*', 'keep *_shallowSimTracks_*_*' )) theBigNtuple = cms.Sequence( (shallowEventRun + shallowClusters + shallowRechitClusters + shallowSimhitClusters + shallowTrackClusters + shallowTracks + shallowSimTracks) * shallowTree )