Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import FWCore.ParameterSet.Config as cms

process = cms.Process("READ")

process.source = cms.Source("PoolSource",
    fileNames = cms.untracked.vstring("file:testExistingDictionaryChecking.root")
)
process.maxEvents = cms.untracked.PSet(
    input = cms.untracked.int32(-1)
)
process.read = cms.EDAnalyzer("ExistingDictionaryTestAnalyzer",
    src = cms.InputTag("prod"),
    testVecUniqInt = cms.bool(False) # reading in plain vector<unique_ptr<int>> does not work yet
)

process.p = cms.Path(process.read)