Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 trackingParticleRefSelector = cms.EDFilter("TrackingParticleRefSelector",
0004     src = cms.InputTag("mix","MergedTrackTruth"),
0005     chargedOnly = cms.bool(True),
0006     pdgId = cms.vint32(),
0007     tip = cms.double(3.5),
0008     signalOnly = cms.bool(True),
0009     intimeOnly = cms.bool(False),
0010     stableOnly = cms.bool(False),
0011     minRapidity = cms.double(-2.4),
0012     lip = cms.double(30.0),
0013     ptMin = cms.double(0.9),
0014     ptMax = cms.double(1e100),
0015     maxRapidity = cms.double(2.4),
0016     minHit = cms.int32(0),
0017     minPhi = cms.double(-3.2),
0018     maxPhi = cms.double(3.2),
0019     invertRapidityCut = cms.bool(False)
0020 )
0021 
0022 from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2
0023 premix_stage2.toModify(trackingParticleRefSelector, src = "mixData:MergedTrackTruth")