File indexing completed on 2024-04-06 12:23:58
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from PhysicsTools.PatAlgos.producersLayer1.patCandidates_cff import *
0005
0006
0007 from PhysicsTools.PatAlgos.selectionLayer1.selectedPatCandidates_cff import *
0008
0009
0010 from PhysicsTools.PatAlgos.cleaningLayer1.cleanPatCandidates_cff import *
0011
0012
0013 from PhysicsTools.PatAlgos.selectionLayer1.countPatCandidates_cff import *
0014
0015 patDefaultSequence = cms.Sequence(
0016 patCandidates *
0017 selectedPatCandidates *
0018 cleanPatCandidates *
0019 countPatCandidates
0020 )