Skip to content

Commit

Permalink
Merge pull request #4712 from TaiSakuma/metdev-72X-140720_01
Browse files Browse the repository at this point in the history
Update aliases of MET collections
  • Loading branch information
ktf committed Jul 25, 2014
2 parents a14ceec + 2bcd73d commit 1c4bcf3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/PFClusterMET_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
pfClusterMet = cms.EDProducer(
"PFClusterMETProducer",
src = cms.InputTag("pfClusterRefsForJets"),
alias = cms.string('PFClusterMET'),
alias = cms.string('pfClusterMet'),
globalThreshold = cms.double(0.0),
)

Expand Down
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/PFMET_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
pfMet = cms.EDProducer(
"PFMETProducer",
src = cms.InputTag("particleFlow"),
alias = cms.string('PFMET'),
alias = cms.string('pfMet'),
globalThreshold = cms.double(0.0),
calculateSignificance = cms.bool(False),
)
Expand Down
3 changes: 2 additions & 1 deletion RecoMET/METProducers/python/TCMET_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
##____________________________________________________________________________||
tcMet = cms.EDProducer(
"TCMETProducer",
alias = cms.string('TCMET'),
alias = cms.string('tcMet'),
electronVetoCone = cms.bool(True),
electronInputTag = cms.InputTag("gedGsfElectrons"),
muonInputTag = cms.InputTag("muons"),
Expand Down Expand Up @@ -65,6 +65,7 @@

##____________________________________________________________________________||
tcMetWithPFclusters = tcMet.clone()
tcMetWithPFclusters.alias = cms.string('tcMetWithPFclusters')
tcMetWithPFclusters.usePFClusters = cms.bool(True)

##____________________________________________________________________________||
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/genMetCaloAndNonPrompt_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
genMetCaloAndNonPrompt = cms.EDProducer(
"GenMETProducer",
src = cms.InputTag("genParticlesForJets"),
alias = cms.string('GenMETCaloAndNonPrompt'), ## Alias for FWLite
alias = cms.string('genMetCaloAndNonPrompt'), ## Alias for FWLite
onlyFiducialParticles = cms.bool(True), ## use only fiducial GenParticles
globalThreshold = cms.double(0.0), ## Global Threshold for input objects
usePt = cms.bool(True), ## using Pt instead Et
Expand Down
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/genMetCalo_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
genMetCalo = cms.EDProducer(
"GenMETProducer",
src = cms.InputTag("genCandidatesForMET"),
alias = cms.string('GenMETCalo'), ## Alias for FWLite
alias = cms.string('genMetCalo'), ## Alias for FWLite
onlyFiducialParticles = cms.bool(True), ## Use Only Fiducial Gen Particles
globalThreshold = cms.double(0.0), ## Global Threshold for input objects
usePt = cms.bool(True), ## using Pt instead Et
Expand Down
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/genMetFromGenJets_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

METType = cms.string('MET'), ## Output MET type

alias = cms.string('GenMETIC5'), ## Alias for FWLite
alias = cms.string('genMetIC5GenJets'), ## Alias for FWLite

noHF = cms.bool(False), ## do not exclude HF

Expand Down
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/genMetTrue_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
genMetTrue = cms.EDProducer(
"GenMETProducer",
src = cms.InputTag("genParticlesForMETAllVisible"),
alias = cms.string('GenMETAllVisible'), ## Alias for FWLite
alias = cms.string('genMetTrue'), ## Alias for FWLite
onlyFiducialParticles = cms.bool(False), ## Use only fiducial GenParticles
globalThreshold = cms.double(0.0), ## Global Threshold for input objects
usePt = cms.bool(True), ## using Pt instead Et
Expand Down
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/pfChMet_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
pfChMet = cms.EDProducer(
"PFMETProducer",
src = cms.InputTag("particleFlowForChargedMET"),
alias = cms.string('PFCHMET'),
alias = cms.string('pfChMet'),
globalThreshold = cms.double(0.0),
calculateSignificance = cms.bool(False),
)
Expand Down

0 comments on commit 1c4bcf3

Please sign in to comment.