ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/python/MitMHT_cfi.py
Revision: 1.3
Committed: Sun Mar 22 08:49:00 2009 UTC (16 years, 1 month ago) by loizides
Content type: text/x-python
Branch: MAIN
CVS Tags: Mit_014a, Mit_014, Mit_014pre3, Mit_014pre2, Mit_014pre1, Mit_013d, Mit_013c, Mit_013b, Mit_013a, Mit_013, Mit_013pre1, Mit_012i, Mit_012h, Mit_012g, Mit_012f, Mit_012e, Mit_012d, Mit_012c, Mit_012b, Mit_012a, Mit_012, Mit_011a, Mit_011, Mit_010a, Mit_010, Mit_009c, Mit_009b, Mit_009a, Mit_009, Mit_008
Changes since 1.2: +31 -31 lines
Log Message:
Cleanup. Moved MitProd dependent python files in MitEdm to MitProd. Removed old set of fillers. Intention is to keep three top level MitTreeFiller_template files for RECO, AOD and CRAFT data.

File Contents

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