Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ActivateDecaysBlock = cms.PSet(
0004     ActivateDecays = cms.PSet(
0005         ActivateDecays = cms.bool(True),
0006         # Maximum angle to associate a charged daughter to a charged mother
0007         # Mostly done to associate muons to decaying pions
0008         DistCut = cms.double(0.02)
0009     )
0010 )
0011