forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 30
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 #5 from Sam-Harper/GSIssueRecHitsToGlobal
changing the GS rec-hits reco from weights to global
- Loading branch information
Showing
12 changed files
with
38 additions
and
39 deletions.
There are no files selected for viewing
7 changes: 3 additions & 4 deletions
7
...ython/ecalMultiAndGSWeightRecHitEB_cfi.py → ...ython/ecalMultiAndGSGlobalRecHitEB_cfi.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,10 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
ecalMultiAndGSWeightRecHitEB = cms.EDProducer("CombinedRecHitCollectionProducer", | ||
ecalMultiAndGSGlobalRecHitEB = cms.EDProducer("CombinedRecHitCollectionProducer", | ||
primaryRecHits=cms.InputTag("reducedEcalRecHitsEB",processName=cms.InputTag.skipCurrentProcess()), | ||
secondaryRecHits=cms.InputTag("ecalWeightRecHitSelectedDigis","EcalRecHitsEB"), | ||
secondaryRecHits=cms.InputTag("ecalGlobalRecHitSelectedDigis","EcalRecHitsEB"), | ||
outputCollectionName=cms.string(""), | ||
outputReplacedHitsCollName =cms.string("gsMultiFit"), | ||
outputReplacingHitsCollName =cms.string("gsWeight"), | ||
|
||
outputReplacingHitsCollName =cms.string("gsGlobal"), | ||
flagsToReplaceHit=cms.vstring("kHasSwitchToGain6","kHasSwitchToGain1") | ||
) |
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
19 changes: 19 additions & 0 deletions
19
RecoEgamma/EgammaTools/python/ecalGlobalRecHitFromSelectedDigis_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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
import RecoLocalCalo.EcalRecProducers.ecalGlobalUncalibRecHit_cfi | ||
|
||
ecalGlobalUncalibRecHitSelectedDigis = RecoLocalCalo.EcalRecProducers.ecalGlobalUncalibRecHit_cfi.ecalGlobalUncalibRecHit.clone() | ||
ecalGlobalUncalibRecHitSelectedDigis.EBdigiCollection = cms.InputTag("selectDigi","selectedEcalEBDigiCollection") | ||
ecalGlobalUncalibRecHitSelectedDigis.EEdigiCollection = cms.InputTag("selectDigi","selectedEcalEEDigiCollection") | ||
|
||
import RecoLocalCalo.EcalRecProducers.ecalRecHit_cfi | ||
ecalGlobalRecHitSelectedDigis = RecoLocalCalo.EcalRecProducers.ecalRecHit_cfi.ecalRecHit.clone() | ||
ecalGlobalRecHitSelectedDigis.EEuncalibRecHitCollection = cms.InputTag("ecalGlobalUncalibRecHitSelectedDigis","EcalUncalibRecHitsEE") | ||
ecalGlobalRecHitSelectedDigis.EBuncalibRecHitCollection = cms.InputTag("ecalGlobalUncalibRecHitSelectedDigis","EcalUncalibRecHitsEB") | ||
ecalGlobalRecHitSelectedDigis.recoverEBFE = cms.bool(False) | ||
ecalGlobalRecHitSelectedDigis.recoverEEFE = cms.bool(False) | ||
ecalGlobalRecHitSelectedDigis.killDeadChannels = cms.bool(False) | ||
|
||
ecalGlobalLocalRecoFromSelectedDigis =cms.Sequence(ecalGlobalUncalibRecHitSelectedDigis* | ||
ecalGlobalRecHitSelectedDigis) | ||
|
19 changes: 0 additions & 19 deletions
19
RecoEgamma/EgammaTools/python/ecalWeightRecHitFromSelectedDigis_cff.py
This file was deleted.
Oops, something went wrong.
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