ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/ExtraGenReco_cff.py
Revision: 1.3
Committed: Wed Jul 11 13:36:51 2012 UTC (12 years, 9 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, HEAD
Branch point for: branch_44x
Changes since 1.2: +2 -0 lines
Log Message:
revert Muon Tree change, remove neutrinos from genjet

File Contents

# User Rev Content
1 frankma 1.1 import FWCore.ParameterSet.Config as cms
2    
3     # Gen
4     from PhysicsTools.HepMCCandAlgos.HiGenParticles_cfi import *
5     from RecoJets.Configuration.GenJetParticles_cff import *
6     from RecoHI.HiJetAlgos.HiGenJets_cff import *
7     from RecoHI.HiJetAlgos.HiGenCleaner_cff import *
8     from PhysicsTools.PatAlgos.producersHeavyIons.heavyIonProducer_cfi import heavyIon
9    
10 yilmaz 1.3 hiGenParticlesForJets.ignoreParticleIDs += cms.vuint32( 12,14,16)
11    
12 frankma 1.1 hiGenParticles.srcVector = cms.vstring('hiSignal')
13    
14 yilmaz 1.2 ak1HiGenJets = ak3HiGenJets.clone(rParam = 0.1)
15     ak2HiGenJets = ak3HiGenJets.clone(rParam = 0.2)
16     ak6HiGenJets = ak3HiGenJets.clone(rParam = 0.6)
17    
18     hiAnaGenJets = cms.Sequence(iterativeCone5HiGenJets +
19     ak1HiGenJets +
20     ak2HiGenJets +
21     ak3HiGenJets +
22     ak4HiGenJets +
23     ak5HiGenJets +
24     ak6HiGenJets
25     )
26    
27 frankma 1.1
28     hiGen = cms.Sequence(
29     heavyIon * # GenHIEventProducer
30     hiGenParticles *
31     hiGenParticlesForJets *
32     hiAnaGenJets *
33     genPartons *
34     hiPartons
35 yilmaz 1.2 )