Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:38

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 import HLTrigger.HLTfilters.hltHighLevel_cfi
0004 ALCARECOEcalRecalElectronHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
0005     andOr = True, # choose logical OR between Triggerbits
0006     eventSetupPathsKey = 'EcalRecalElectron',
0007     throw = False # tolerate triggers stated above, but not available
0008 )
0009 
0010 from Configuration.StandardSequences.Reconstruction_Data_cff import ecalLocalRecoSequence, pfClusteringPS, pfClusteringECAL, ecalClusters
0011 from Calibration.EcalAlCaRecoProducers.ALCARECOEcalCalIsolElectron_cff import *
0012 
0013 #ecal rechits
0014 from RecoLocalCalo.Configuration.RecoLocalCalo_cff import ecalLocalRecoSequence
0015 recoECALSeq = cms.Sequence( ecalLocalRecoSequence)
0016 
0017 from RecoParticleFlow.PFClusterProducer.particleFlowCluster_cff import *
0018 rerecoPFClusteringSeq = cms.Sequence(pfClusteringPS + pfClusteringECAL)
0019 
0020 from  RecoEcal.Configuration.RecoEcal_cff import *
0021 from Calibration.EcalCalibAlgos.electronRecalibSCAssociator_cfi import *
0022 ecalClusteringSeq = cms.Sequence(ecalClusters * electronRecalibSCAssociator)
0023 
0024 
0025 #sandboxRerecoSeq = cms.Sequence(electronRecoSeq * ecalClusteringSeq)
0026 #sandboxPFRerecoSeq = cms.Sequence(electronRecoSeq * rerecoPFClusteringSeq * ecalClusteringSeq)
0027 rerecoECALSeq = cms.Sequence(recoECALSeq * rerecoPFClusteringSeq * ecalClusteringSeq)
0028 
0029 ############################################### FINAL SEQUENCES
0030 # sequences used in AlCaRecoStreams_cff.py
0031 #redo the preselection of electrons with selectorProducerSeq for recHit reducers: they use the selected objects as input
0032 seqALCARECOEcalRecalElectron = cms.Sequence(ALCARECOEcalRecalElectronHLT * rerecoECALSeq * selectorProducerSeq * ALCARECOEcalCalElectronECALSeq)
0033 
0034