CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/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 
00008 # add PAT specifics
00009 from PhysicsTools.JetMCAlgos.TauGenJets_cfi import *
00010 from PhysicsTools.JetMCAlgos.TauGenJetsDecayModeSelectorAllHadrons_cfi import *
00011 from PhysicsTools.PatAlgos.mcMatchLayer0.tauMatch_cfi import *
00012 
00013 # produce object
00014 from PhysicsTools.PatAlgos.producersLayer1.tauProducer_cfi import *
00015 
00016 makePatTaus = cms.Sequence(
00017     # reco pre-production
00018     patPFCandidateIsoDepositSelection *
00019     patPFTauIsolation *
00020     # pat specifics
00021     tauMatch *
00022     tauGenJets *
00023     tauGenJetsSelectorAllHadrons *
00024     tauGenJetMatch *
00025     # object production
00026     patTaus
00027     )