Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ParticleFilterBlock = cms.PSet(
0004     ParticleFilter = cms.PSet(
0005         # Allow *ALL* protons with energy > protonEMin
0006         protonEMin = cms.double(5000.0),
0007         # Particles must have abs(eta) < etaMax (if close enough to 0,0,0)
0008         etaMax = cms.double(5.3),
0009         # Charged particles with pT < pTMin (GeV/c) are not simulated
0010         chargedPtMin = cms.double(0.1),
0011         # Particles must have energy greater than EMin [GeV]
0012         EMin = cms.double(0.1),
0013         # the two following variables define the volume enclosed by the calorimeters
0014         # radius of the ECAL barrel inner surface
0015         rMax = cms.double(129.),
0016         # half-length of the ECAL endcap inner surface
0017         zMax = cms.double(317.),
0018         # List of invisible particles (abs of pdgid)
0019         invisibleParticles = cms.vint32()
0020         )
0021     )