ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/python/MitMHT_cfi.py
Revision: 1.4
Committed: Wed Jun 23 15:01:17 2010 UTC (14 years, 10 months ago) by bendavid
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_032, Mit_031, Mit_025c_branch2, Mit_025c_branch1, Mit_030, Mit_029c, Mit_029b, Mit_030_pre1, Mit_029a, Mit_029, Mit_029_pre1, Mit_028a, Mit_025c_branch0, Mit_028, Mit_027a, Mit_027, Mit_026, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, Mit_020d, TMit_020d, Mit_020c, Mit_021, Mit_021pre2, Mit_021pre1, Mit_020b, Mit_020a, Mit_020, Mit_020pre1, Mit_018, Mit_017, Mit_017pre3, Mit_017pre2, Mit_017pre1, Mit_016, Mit_015b, Mit_015a, Mit_015, Mit_014e, Mit_014d, Mit_014c, Mit_014b, HEAD
Branch point for: Mit_025c_branch
Changes since 1.3: +32 -30 lines
Log Message:
Minor fixes for 37x compatibility

File Contents

# Content
1 # $Id: MitMHT_cfi.py,v 1.3 2009/03/22 08:49:00 loizides Exp $
2
3 import FWCore.ParameterSet.Config as cms
4
5 htMetSC5 = cms.EDProducer("METProducer",
6 src = cms.InputTag("L2L3CorJetSC5Calo"),
7 METType = cms.string('MET'),
8 alias = cms.string('HTMETSC5'),
9 noHF = cms.bool(False),
10 globalThreshold = cms.double(5.0),
11 InputType = cms.string('CaloJetCollection')
12 )
13
14 htMetSC7 = cms.EDProducer("METProducer",
15 src = cms.InputTag("L2L3CorJetSC7Calo"),
16 METType = cms.string('MET'),
17 alias = cms.string('HTMETSC7'),
18 noHF = cms.bool(False),
19 globalThreshold = cms.double(5.0),
20 InputType = cms.string('CaloJetCollection')
21 )
22
23 htMetIC5 = cms.EDProducer("METProducer",
24 src = cms.InputTag("L2L3CorJetIC5Calo"),
25 METType = cms.string('MET'),
26 alias = cms.string('HTMETIC5'),
27 noHF = cms.bool(False),
28 globalThreshold = cms.double(5.0),
29 InputType = cms.string('CaloJetCollection')
30 )
31
32 htMetKT4 = cms.EDProducer("METProducer",
33 src = cms.InputTag("L2L3CorJetKT4Calo"),
34 METType = cms.string('MET'),
35 alias = cms.string('HTMETKT4'),
36 noHF = cms.bool(False),
37 globalThreshold = cms.double(5.0),
38 InputType = cms.string('CaloJetCollection')
39 )
40
41 htMetKT6 = cms.EDProducer("METProducer",
42 src = cms.InputTag("L2L3CorJetKT6Calo"),
43 METType = cms.string('MET'),
44 alias = cms.string('HTMETKT6'),
45 noHF = cms.bool(False),
46 globalThreshold = cms.double(5.0),
47 InputType = cms.string('CaloJetCollection')
48 )
49
50 htMetIC5JPT = cms.EDProducer("METProducer",
51 src = cms.InputTag("L2L3CorJetIC5JPT"),
52 METType = cms.string('MET'),
53 alias = cms.string('HTMETIC5JPT'),
54 noHF = cms.bool(False),
55 globalThreshold = cms.double(5.0),
56 InputType = cms.string('CaloJetCollection')
57 )
58
59 #deprecated
60
61 #import JetMETCorrections.Type1MET.MetMuonCorrections_cff
62
63 #corMHTGlobalMuonsSC5 = JetMETCorrections.Type1MET.MetMuonCorrections_cff.corMetGlobalMuons.clone()
64 #JetMETCorrections.Type1MET.uncorMETInputTag = htMetSC5
65
66 #corMHTGlobalMuonsSC7 = JetMETCorrections.Type1MET.MetMuonCorrections_cff.corMetGlobalMuons.clone()
67 #JetMETCorrections.Type1MET.uncorMETInputTag = htMetSC7
68
69 #corMHTGlobalMuonsIC5 = JetMETCorrections.Type1MET.MetMuonCorrections_cff.corMetGlobalMuons.clone()
70 #JetMETCorrections.Type1MET.uncorMETInputTag = htMetIC5
71
72 #corMHTGlobalMuonsKT4 = JetMETCorrections.Type1MET.MetMuonCorrections_cff.corMetGlobalMuons.clone()
73 #JetMETCorrections.Type1MET.uncorMETInputTag = htMetKT4
74
75 #corMHTGlobalMuonsKT6 = JetMETCorrections.Type1MET.MetMuonCorrections_cff.corMetGlobalMuons.clone()
76 #JetMETCorrections.Type1MET.uncorMETInputTag = htMetKT6
77
78 #corMHTGlobalMuonsIC5JPT = JetMETCorrections.Type1MET.MetMuonCorrections_cff.corMetGlobalMuons.clone()
79 #JetMETCorrections.Type1MET.uncorMETInputTag = htMetIC5JPT
80
81 #MitMHT = cms.Sequence(htMetSC5*
82 #htMetSC7*
83 #htMetIC5*
84 #htMetKT4*
85 #htMetKT6*
86 #htMetIC5JPT*
87 #corMHTGlobalMuonsSC5*
88 #corMHTGlobalMuonsSC7*
89 #corMHTGlobalMuonsIC5*
90 #corMHTGlobalMuonsKT4*
91 #corMHTGlobalMuonsKT6*
92 #corMHTGlobalMuonsIC5JPT)