CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/PhysicsTools/PatAlgos/python/producersLayer1/tauProducer_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # prepare reco information
00004 from PhysicsTools.PatAlgos.recoLayer0.pfCandidateIsoDepositSelection_cff import *
00005 from PhysicsTools.PatAlgos.recoLayer0.tauIsolation_cff import *
00006 #from PhysicsTools.PatAlgos.recoLayer0.tauDiscriminators_cff import *
00007 # CV: do **not** load PhysicsTools/PatAlgos/python/recoLayer0/tauJetCorrections_cff
00008 #     in order to avoid triggering FileInPath to SQLlite file
00009 #       CondFormats/JetMETObjects/data/TauJec11_V1.db
00010 #    (which is not included in all _4_2_x/4_3_x/4_4_x CMSSW releases yet)
00011 #from PhysicsTools.PatAlgos.recoLayer0.tauJetCorrections_cff import *
00012 
00013 # add PAT specifics
00014 from PhysicsTools.JetMCAlgos.TauGenJets_cfi import *
00015 from PhysicsTools.JetMCAlgos.TauGenJetsDecayModeSelectorAllHadrons_cfi import *
00016 from PhysicsTools.PatAlgos.mcMatchLayer0.tauMatch_cfi import *
00017 
00018 # produce object
00019 from PhysicsTools.PatAlgos.producersLayer1.tauProducer_cfi import *
00020 
00021 makePatTaus = cms.Sequence(
00022     # reco pre-production
00023     patPFCandidateIsoDepositSelection *
00024     patPFTauIsolation *
00025     #patTauJetCorrections *
00026     # pat specifics
00027     tauMatch *
00028     tauGenJets *
00029     tauGenJetsSelectorAllHadrons *
00030     tauGenJetMatch *
00031     # object production
00032     patTaus
00033 )