-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32794 from jeongeun/recoegm112X
drop type specifications in RecoEgamma
- Loading branch information
Showing
10 changed files
with
62 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
RecoEgamma/EgammaPhotonProducers/python/cosmicConversionSequence_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from RecoEgamma.EgammaPhotonProducers.conversionSequence_cff import * | ||
conversions.scHybridBarrelProducer = cms.InputTag("cosmicSuperClusters","CosmicBarrelSuperClusters") | ||
conversions.scIslandEndcapProducer = cms.InputTag("cosmicSuperClusters","CosmicEndcapSuperClusters") | ||
conversions.bcBarrelCollection = cms.InputTag("cosmicBasicClusters","CosmicBarrelBasicClusters") | ||
conversions.bcEndcapCollection = cms.InputTag("cosmicBasicClusters","CosmicEndcapBasicClusters") | ||
conversions.recoverOneTrackCase = cms.bool(False) | ||
conversions.scHybridBarrelProducer = "cosmicSuperClusters:CosmicBarrelSuperClusters" | ||
conversions.scIslandEndcapProducer = "cosmicSuperClusters:CosmicEndcapSuperClusters" | ||
conversions.bcBarrelCollection = "cosmicBasicClusters:CosmicBarrelBasicClusters" | ||
conversions.bcEndcapCollection = "cosmicBasicClusters:CosmicEndcapBasicClusters" | ||
conversions.recoverOneTrackCase = False | ||
|
||
cosmicConversionTask = cms.Task(conversionTask) | ||
cosmicConversionSequence = cms.Sequence(cosmicConversionTask) |
9 changes: 5 additions & 4 deletions
9
RecoEgamma/EgammaPhotonProducers/python/cosmicConversionTrackSequence_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
RecoEgamma/EgammaPhotonProducers/python/cosmicPhotonSequence_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from RecoEgamma.EgammaPhotonProducers.photonSequence_cff import * | ||
photonCore.scHybridBarrelProducer = cms.InputTag("cosmicSuperClusters","CosmicBarrelSuperClusters") | ||
photonCore.scIslandEndcapProducer = cms.InputTag("cosmicSuperClusters","CosmicEndcapSuperClusters") | ||
photonCore.minSCEt = cms.double(0.0) | ||
photonCore.scHybridBarrelProducer = "cosmicSuperClusters:CosmicBarrelSuperClusters" | ||
photonCore.scIslandEndcapProducer = "cosmicSuperClusters:CosmicEndcapSuperClusters" | ||
photonCore.minSCEt = 0.0 | ||
|
||
|
||
photons.usePrimaryVertex = cms.bool(False) | ||
photons.minSCEtBarrel = cms.double(0.0) | ||
photons.minSCEtEndcap = cms.double(0.0) | ||
photons.usePrimaryVertex = False | ||
photons.minSCEtBarrel = 0.0 | ||
photons.minSCEtEndcap = 0.0 | ||
|
||
cosmicPhotonTask = cms.Task(photonCore,photons) | ||
cosmicPhotonSequence = cms.Sequence(cosmicPhotonTask) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters