ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/python/jetConfig_cff.py
Revision: 1.5
Committed: Wed Jun 9 14:34:17 2010 UTC (14 years, 10 months ago) by amagnan
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
clean up histogram code, moved to analysis in UserCode/amagnan

File Contents

# Content
1 ########################################
2 #### Created 07-Apr-09
3 #### by A.-M. Magnan
4 #### a.magnan@imperial.ac.uk
5 #### from TauAnalysis globalV00-00-03
6 ########################################
7
8 import FWCore.ParameterSet.Config as cms
9 import copy
10
11
12 ######################################################################################
13 #### Flavour ID
14 ######################################################################################
15 from PhysicsTools.PatAlgos.mcMatchLayer0.jetFlavourId_cff import *
16
17 # default PAT sequence for jet flavour identification
18 patCaloJetFlavourId = cms.Sequence(patJetPartons *
19 patJetPartonAssociation * patJetFlavourAssociation)
20
21 ######################################################################################
22 #### MC matching : genjet and parton
23 ######################################################################################
24 from PhysicsTools.PatAlgos.mcMatchLayer0.jetMatch_cfi import *
25
26 patCaloJetMatch = cms.Sequence(patJetPartonMatch
27 *patJetGenJetMatch
28 )
29
30 ######################################################################################
31 #### jet-tracks charge
32 ######################################################################################
33 from PhysicsTools.PatAlgos.recoLayer0.jetTracksCharge_cff import *
34
35 ## Compute JET Charge
36 caloJetCharge = copy.deepcopy(patJetCharge)
37 caloJetCharge.src = cms.InputTag("ak5JetTracksAssociatorAtVertex")
38
39 patCaloJetTracksCharge = cms.Sequence(caloJetCharge
40 )
41
42
43
44 ######################################################################################
45 #### PAT sequence
46 ######################################################################################
47
48 patLayer0CaloJets = cms.Sequence(
49 patCaloJetFlavourId
50 *patCaloJetTracksCharge
51 *patCaloJetMatch
52 )
53