Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 slimmedMETs = cms.EDProducer("PATMETSlimmer",
0004    src = cms.InputTag("patMETs"),                
0005    rawVariation   = cms.InputTag("patPFMet"),
0006    t1Uncertainties  = cms.InputTag("patPFMetT1%s"),
0007    t01Variation = cms.InputTag("patPFMetT0pcT1"),
0008    t1SmearedVarsAndUncs = cms.InputTag("patPFMetT1Smear%s"),
0009    
0010    tXYUncForRaw=cms.InputTag("patPFMetTxy"),
0011    tXYUncForT1=cms.InputTag("patPFMetT1Txy"),
0012    tXYUncForT01=cms.InputTag("patPFMetT0pcT1Txy"),
0013    tXYUncForT1Smear=cms.InputTag("patPFMetT1SmearTxy"),
0014    tXYUncForT01Smear=cms.InputTag("patPFMetT0pcT1SmearTxy"),
0015   
0016    #caloMET, will be used for the beginning of ata takin by the JetMET people
0017    caloMET = cms.InputTag("patCaloMet"),
0018 
0019    #adding CHS and Track MET for the Jet/MET studies
0020    chsMET = cms.InputTag("patCHSMet"),
0021    trkMET = cms.InputTag("patTrkMet"),
0022 
0023    #adding DeepMET variants
0024    addDeepMETs = cms.bool(False),
0025    deepMETResolutionTune = cms.InputTag("deepMETsResolutionTune"),
0026    deepMETResponseTune = cms.InputTag("deepMETsResponseTune"),
0027 
0028    #switch to read the type0 correction from the existing slimmedMET
0029    #when running on top of miniAOD (type0 cannot be redone at the miniAOD level
0030    runningOnMiniAOD = cms.bool(False)
0031 
0032 )
0033