ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/PFJetAnalyzer_cff.py
Revision: 1.1
Committed: Tue Sep 20 19:45:06 2011 UTC (13 years, 7 months ago) by yilmaz
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_85, HiForest_V02_84, HiForest_V02_83, HiForest_V02_82, HiForest_V02_81, HiForest_V02_80, HiForest_V02_79, HiForest_V02_78, HiForest_V02_77, HiForest_V02_76, HiForest_V02_75, HiForest_V02_74, HiForest_V02_73, HiForest_V02_72, HiForest_V02_71, HiForest_V02_70, HiForest_V02_69, HiForest_V02_68, HiForest_V02_67, HiForest_V02_66, HiForest_V02_65, HiForest_V02_64, HiForest_V02_63, HiForest_V02_62, HiForest_V02_61, HiForest_V02_60, HiForest_V02_59, HiForest_V02_58, HiForest_V02_57, HiForest_V02_56, HiForest_V02_55, HiForest_V02_54, HiForest_V02_53, HiForest_V02_52, HiForest_V02_51, HiForest_V02_50, HiForest_V02_49, HiForest_V02_48, HiForest_V02_47, HiForest_V02_46, HiForest_V02_45, HiForest_V02_44, HiForest_V02_43, HiForest_V02_42, HiForest_V02_41, HiForest_V02_40, HiForest_V02_39, HiForest_V02_38, HiForest_V02_37, HiForest_V02_36, HiForest_V02_35, HiForest_V02_34, HiForest_V02_33, HiForest_V02_32, HiForest_V02_31, HiForest_V02_30, HiForest_V02_27, HiForest_V02_26, QM_2012, HiForest_V02_25, HiForest_V02_24, HiForest_V02_23, HiForest_V02_22, HiForest_V02_21, HiForest_V02_20, HiForest_V02_19, HiForest_V02_18, HiForest_V02_17, HiForest_V02_16, HiForest_V02_15, HiForest_V02_14, HiForest_V02_13, HiForest_V02_12, HiForest_V02_11, HiForest_V02_10, HiForest_V02_09, HiForest_V02_08, HiForest_V02_07, HiForest_V02_06, HiForest_V02_05, HiForest_V02_04, HiForest_V02_03, HiForest_V02_02, HiForest_V02_01, HiForest_V02_00, hi44X_02, hi413_03, hi413_02, hi441_1, hi441_0, hi413_11, hi413_10, hi413_09, HEAD
Branch point for: branch_44x
Log Message:
combining all analyzers

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 PFJetAnalyzer = cms.EDAnalyzer("PFJetAnalyzer",
4 jetTag1 = cms.InputTag("icPu5patJets"),
5 jetTag2 = cms.InputTag("akPu5PFpatJets"),
6 jetTag3 = cms.InputTag("akPu4PFpatJets"),
7 jetTag4 = cms.InputTag("akPu3PFpatJets"),
8 recoJetTag1 = cms.InputTag("iterativeConePu5CaloJets"),
9 recoJetTag2 = cms.InputTag("akPu5PFJets"),
10 recoJetTag3 = cms.InputTag("akPu4PFJets"),
11 recoJetTag4 = cms.InputTag("akPu3PFJets"),
12 genJetTag1 = cms.InputTag("iterativeCone5HiGenJets"),
13 genJetTag2 = cms.InputTag("ak5HiGenJets"),
14 genJetTag3 = cms.InputTag("ak4HiGenJets"),
15 genJetTag4 = cms.InputTag("ak3HiGenJets"),
16 pfCandidatesTag = cms.InputTag("particleFlow",""),
17 trackTag = cms.InputTag("hiGoodTracks"),
18 vertexTag = cms.InputTag("hiSelectedVertex"),
19 isMC = cms.untracked.bool(True),
20 genParticleThresh = cms.double(0.5),
21 genParticleTag = cms.InputTag("hiGenParticles"),
22 eventInfoTag = cms.InputTag("generator"),
23 useCentrality = cms.untracked.bool(False),
24 hasSimInfo = cms.untracked.bool(False),
25 SimTracks = cms.InputTag("mergedtruth","MergedTrackTruth"),
26 L1gtReadout = cms.InputTag("gtDigis"),
27 hltTrgResults = cms.untracked.string("TriggerResults::HLT"),
28 hltTrgNames = cms.untracked.vstring('HLT_HIMinBiasHfOrBSC_Core',
29 'HLT_Jet20_v1',
30 'HLT_Jet40_v1',
31 'HLT_Jet60_v1')
32 )
33
34
35
36
37 # Paths
38
39 PFJetAnalyzerSequence = cms.Sequence(PFJetAnalyzer
40 )
41
42
43