ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/rechitanalyzer_cfi.py
Revision: 1.4
Committed: Fri May 25 11:12:16 2012 UTC (12 years, 11 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, HEAD
Branch point for: branch_44x
Changes since 1.3: +17 -0 lines
Log Message:
up

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 rechitanalyzer = cms.EDAnalyzer("RecHitTreeProducer",
4 EBRecHitSrc = cms.untracked.InputTag("ecalRecHit","EcalRecHitsEB"),
5 EERecHitSrc = cms.untracked.InputTag("ecalRecHit","EcalRecHitsEE"),
6 BasicClusterSrc1 = cms.untracked.InputTag("islandBasicClusters","islandBarrelBasicClusters"),
7 hcalHFRecHitSrc = cms.untracked.InputTag("hfreco"),
8 hcalHBHERecHitSrc = cms.untracked.InputTag("hbhereco"),
9 towersSrc = cms.untracked.InputTag("towerMaker"),
10 JetSrc = cms.untracked.InputTag("iterativeConePu5CaloJets"),
11 useJets = cms.untracked.bool(True),
12 doBasicClusters = cms.untracked.bool(False),
13 doTowers = cms.untracked.bool(True),
14 doEcal = cms.untracked.bool(True),
15 doHcal = cms.untracked.bool(True),
16 hasVtx = cms.untracked.bool(True),
17 doFastJet = cms.untracked.bool(False),
18 FastJetTag = cms.untracked.InputTag("kt4CaloJets"),
19 doEbyEonly = cms.untracked.bool(False),
20 HFtowerMin = cms.untracked.double(3),
21 HFlongMin = cms.untracked.double(0.5),
22 HFshortMin = cms.untracked.double(0.85)
23 )
24
25 pfTowers = rechitanalyzer.clone(
26 doEcal = cms.untracked.bool(False),
27 doHcal = cms.untracked.bool(False),
28 hasVtx = cms.untracked.bool(False),
29 doFastJet = cms.untracked.bool(False),
30 towersSrc = cms.untracked.InputTag("PFTowers"),
31 TowerTreePtMin = cms.untracked.double(-99)
32 )
33
34
35 rechitanalyzer.HBHETreePtMin = cms.untracked.double(15)
36 rechitanalyzer.HFTreePtMin = cms.untracked.double(15)
37 rechitanalyzer.EBTreePtMin = cms.untracked.double(15)
38 rechitanalyzer.EETreePtMin = cms.untracked.double(15)
39 rechitanalyzer.TowerTreePtMin = cms.untracked.double(15)
40 rechitanalyzer.doHF = cms.untracked.bool(True)