/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoPPS/Configuration/test/raw_data_test.py
57 строк
2 KB
Jan Kaspar
replace ctpps_2016 with ctpps modifier, where desirable
19 мар 2021, 11:47
19 мар 2021, 11:47
518d281
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from Configuration.Eras.Modifier_ctpps_cff import ctpps process = cms.Process("CTPPSReconstructionChainTest", ctpps) # minimum of logs process.MessageLogger = cms.Service("MessageLogger", statistics = cms.untracked.vstring(), destinations = cms.untracked.vstring('cout'), cout = cms.untracked.PSet( threshold = cms.untracked.string('WARNING') ) ) # raw data source process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring( # run 274199, fill 4961, 29 May 2016 (before TS2) '/store/data/Run2016B/DoubleEG/RAW/v2/000/274/199/00000/04985451-9B26-E611-BEB9-02163E013859.root', #'root://eostotem.cern.ch//eos/totem/user/j/jkaspar/04C8034A-9626-E611-9B6E-02163E011F93.root' # run 283877, fill 5442, 23 Oct 2016 (after TS2) '/store/data/Run2016H/HLTPhysics/RAW/v1/000/283/877/00000/F28F8896-999B-E611-93D8-02163E013706.root', # test file for 2017 mapping (vertical RPs only) 'root://eostotem.cern.ch//eos/totem/data/ctpps/run290874.root' ), inputCommands = cms.untracked.vstring( 'drop *', 'keep FEDRawDataCollection_*_*_*' ) ) process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(8000) ) # raw-to-digi conversion process.load("EventFilter.CTPPSRawToDigi.ctppsRawToDigi_cff") # RP reconstruction chain with standard settings process.load("RecoPPS.Configuration.recoCTPPS_cff") process.p = cms.Path( process.ctppsRawToDigi * process.recoCTPPS ) # output configuration from RecoPPS.Configuration.RecoPPS_EventContent_cff import RecoPPSAOD process.output = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string("file:./AOD.root"), outputCommands = RecoPPSAOD.outputCommands ) process.outpath = cms.EndPath(process.output)