CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecoMET_Cosmics_cff.py
Go to the documentation of this file.
2 
3 # Name: RecoMET.cff
4 # Original Author: R.Cavanaugh
5 # Date: 05.11.2006
6 # Notes: CaloMET.cfi assumes that a product with label "caloTowers" is
7 # already written into the event.
8 # Modification by F. Ratnikov and R. Remington
9 # Date: 10/21/08
10 # Addition of MET significance by F.Blekman
11 # Date: 10/23/08
12 # Addition of HCAL noise by JP Chou
13 # Date: 3/26/09
14 
17 
18 tcMet.trackInputTag = 'ctfWithMaterialTracksP5LHCNavigation'
19 tcMet.isCosmics = True
20 
21 hcalnoise.fillTracks = False
22 
23 CSCHaloData.CosmicMuonLabel = cms.InputTag("muons")
24 
25 metrecoCosmics = cms.Sequence(
26  met+
27  metNoHF+
28  metHO+
29  metNoHFHO+
30  calotoweroptmaker+
31  metOpt+
32  metOptNoHF+
33  calotoweroptmakerWithHO+
34  metOptHO+metOptNoHFHO+
35  htMetSC5+
36  htMetSC7+
37  htMetKT4+
38  htMetKT6+
39  htMetIC5+
40  muonMETValueMapProducer+
41  corMetGlobalMuons+
42  muonTCMETValueMapProducer+
43  tcMet+
44  hcalnoise+
45  BeamHaloId
46  )
47 
48 metrecoCosmics_woBeamHaloId = cms.Sequence(
49  met+
50  metNoHF+
51  metHO+
52  metNoHFHO+
53  calotoweroptmaker+
54  metOpt+
55  metOptNoHF+
56  calotoweroptmakerWithHO+
57  metOptHO+metOptNoHFHO+
58  htMetSC5+
59  htMetSC7+
60  htMetKT4+
61  htMetKT6+
62  htMetIC5+
63  muonMETValueMapProducer+
64  corMetGlobalMuons+
65  muonTCMETValueMapProducer+
66  tcMet+
67  hcalnoise
68  )
69 
70 metrecoCosmics_woHcalNoise = cms.Sequence(
71  met+
72  metNoHF+
73  metHO+
74  metNoHFHO+
75  calotoweroptmaker+
76  metOpt+
77  metOptNoHF+
78  calotoweroptmakerWithHO+
79  metOptHO+metOptNoHFHO+
80  htMetSC5+
81  htMetSC7+
82  htMetKT4+
83  htMetKT6+
84  htMetIC5+
85  muonMETValueMapProducer+
86  corMetGlobalMuons+
87  muonTCMETValueMapProducer+
88  tcMet+
89  BeamHaloId
90 )
91 
92 
93 
94 
95