CMS 3D CMS Logo

RecoMET_Cosmics_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ##____________________________________________________________________________||
6 
7 hcalnoise.fillTracks = False
8 
9 CSCHaloData.CosmicMuonLabel = cms.InputTag("muons")
10 
11 ##____________________________________________________________________________||
12 metrecoCosmics = cms.Sequence(
13  caloMet+
14  caloMetBE+
15  caloMetBEFO+
16  muonMETValueMapProducer+
17  caloMetM +
18  hcalnoise+
19  BeamHaloId
20  )
21 
22 ##____________________________________________________________________________||
23 metrecoCosmics_woBeamHaloId = cms.Sequence(
24  caloMet+
25  caloMetBE+
26  caloMetBEFO+
27  muonMETValueMapProducer+
28  caloMetM +
29  hcalnoise
30  )
31 
32 ##____________________________________________________________________________||
33 metrecoCosmics_woHcalNoise = cms.Sequence(
34  caloMet+
35  caloMetBE+
36  caloMetBEFO+
37  muonMETValueMapProducer+
38  caloMetM +
39  BeamHaloId
40 )
41 
42 ##____________________________________________________________________________||