File indexing completed on 2024-04-06 12:32:35
0001 import FWCore.ParameterSet.Config as cms
0002
0003 CaloParticleSelectionForEfficiency = cms.PSet(
0004 ptMinCP = cms.double(0.5),
0005 ptMaxCP = cms.double(300.),
0006 minRapidityCP = cms.double(-3.1),
0007 maxRapidityCP = cms.double(3.1),
0008
0009 lipCP = cms.double(30.0),
0010
0011 tipCP = cms.double(60),
0012 chargedOnlyCP = cms.bool(False),
0013 stableOnlyCP = cms.bool(False),
0014 notConvertedOnlyCP = cms.bool(True),
0015
0016 pdgIdCP = cms.vint32(11, -11, 13, -13, 22, 111, 211, -211, 321, -321, 311, 130, 310),
0017
0018 signalOnlyCP = cms.bool(True),
0019
0020 intimeOnlyCP = cms.bool(True),
0021
0022 minHitCP = cms.int32(0),
0023 maxSimClustersCP = cms.int32(-1)
0024 )