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 genMetTrue = cms.EDProducer(
0005     "GenMETProducer",
0006     src = cms.InputTag("genParticlesForMETAllVisible"),
0007     alias = cms.string('genMetTrue'), ## Alias for FWLite
0008     onlyFiducialParticles = cms.bool(False), ## Use only fiducial GenParticles
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 ##____________________________________________________________________________||