CMS 3D CMS Logo

muIsoResultM2C_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # -*-TCL-*-
6 muIsoResultM2C = cms.EDProducer("MuIsoCandidateResultProducer",
7  IsolatorByDepositR03,
8  VetoPSet = cms.PSet(
9  SelectAll = cms.bool(True)
10  ),
11  BeamSpotLabel = cms.InputTag("offlineBeamSpot"),
12  RemoveOtherVetos = cms.bool(True),
13  InputMuIsoDeposits = cms.VPSet(cms.PSet(
14  UnweightedInputTkDeps
15  ),
16  cms.PSet(
17  UnweightedInputTowEcalDeps
18  ),
19  cms.PSet(
20  UnweightedInputTowHcalDeps
21  )),
22  BeamlineOption = cms.string('BeamSpotFromEvent')
23 )
24 
25 
26