Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update aliases of MET collections #4712

Merged
merged 4 commits into from Jul 25, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion RecoMET/METProducers/python/PFClusterMET_cfi.py
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
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
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
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
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
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
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
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