Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # make patCandidates
0004 from PhysicsTools.PatAlgos.producersLayer1.patCandidates_cff import *
0005 
0006 # make selectedPatCandidates
0007 from PhysicsTools.PatAlgos.selectionLayer1.selectedPatCandidates_cff import *
0008 
0009 # make cleanPatCandidates
0010 from PhysicsTools.PatAlgos.cleaningLayer1.cleanPatCandidates_cff import *
0011 
0012 # count cleanPatCandidates (including total number of leptons)
0013 from PhysicsTools.PatAlgos.selectionLayer1.countPatCandidates_cff import *
0014 
0015 patDefaultSequence = cms.Sequence(
0016     patCandidates *
0017     selectedPatCandidates *
0018     cleanPatCandidates *
0019     countPatCandidates
0020 )