CMS 3D CMS Logo

alcahbhemuon_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # producer for alcahbhemuon (HCAL with muons)
4 HBHEMuonProd = cms.EDProducer("AlCaHBHEMuonProducer",
5  BeamSpotLabel = cms.InputTag("offlineBeamSpot"),
6  VertexLabel = cms.InputTag("offlinePrimaryVertices"),
7  EBRecHitLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
8  EERecHitLabel = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
9  HBHERecHitLabel = cms.InputTag("hbhereco"),
10  MuonLabel = cms.InputTag("muons"),
11  MinimumMuonP = cms.double(10.0),
12  )
13