Back to home page

Project CMSSW displayed by LXR

 
 

    


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     #--z position of the origin vertex less than lipCP
0009     lipCP = cms.double(30.0),
0010     #-- transverse component squared sum less that tipCP*tipCP
0011     tipCP = cms.double(60),
0012     chargedOnlyCP = cms.bool(False),
0013     stableOnlyCP = cms.bool(False),
0014     notConvertedOnlyCP = cms.bool(True),
0015     #311: K0, 130: K0_short, 310: K0_long
0016     pdgIdCP = cms.vint32(11, -11, 13, -13, 22, 111, 211, -211, 321, -321, 311, 130, 310),
0017     #--signal only means no PU particles
0018     signalOnlyCP = cms.bool(True),
0019     #--intime only means no OOT PU particles
0020     intimeOnlyCP = cms.bool(True),
0021     #The total number of rechits
0022     minHitCP = cms.int32(0),
0023     maxSimClustersCP = cms.int32(-1)
0024 )