Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ##____________________________________________________________________________||
0004 genMetCalo = cms.EDProducer(
0005     "GenMETProducer",
0006     src = cms.InputTag("genCandidatesForMET"),
0007     alias = cms.string('genMetCalo'), ## Alias for FWLite
0008     onlyFiducialParticles = cms.bool(True), ## Use Only Fiducial Gen Particles
0009     globalThreshold = cms.double(0.0), ## Global Threshold for input objects
0010     usePt   = cms.bool(True), ## using Pt instead Et
0011     applyFiducialThresholdForFractions   = cms.bool(False),
0012     )
0013 
0014 ##____________________________________________________________________________||
0015