1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("TEST4F")
process.maxEvents.input = 3
process.source = cms.Source("PoolSource",
fileNames = cms.untracked.vstring('file:testSlimmingTest3F.root'),
secondaryFileNames = cms.untracked.vstring('file:testSlimmingTest3B.root')
)
process.testABEF = cms.EDAnalyzer("ThinningTestAnalyzer",
parentTag = cms.InputTag('thinningThingProducerABE'),
thinnedTag = cms.InputTag('thinningThingProducerABEF'),
associationTag = cms.InputTag('thinningThingProducerABEF'),
trackTag = cms.InputTag('trackOfThingsProducerF'),
parentWasDropped = cms.bool(True),
thinnedSlimmedCount = cms.int32(1),
refSlimmedCount = cms.int32(1),
expectedParentContent = cms.vint32(range(6,11)),
expectedThinnedContent = cms.vint32(range(6,9)),
expectedIndexesIntoParent = cms.vuint32(range(0,3)),
expectedValues = cms.vint32(range(6,9)),
)
process.p = cms.Path(
process.testABEF
)
|