-
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 #31160 from bsunanda/Run3-hcx263
Run3-hcx263 Remove unwanted DDD reference fro the code and test the used scripts
- Loading branch information
Showing
8 changed files
with
60 additions
and
18 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
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
...t/python/runHcalRecNumberingTester_cfg.py → ...on/runHcalRecNumberingDD4hepTester_cfg.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
23 changes: 23 additions & 0 deletions
23
Geometry/HcalCommonData/test/python/runHcalRecNumberingDDDTester_cfg.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,23 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from Configuration.Eras.Era_Run3_cff import Run3 | ||
|
||
process = cms.Process("HcalRecNumberingTest",Run3) | ||
|
||
process.load('Configuration.Geometry.GeometryExtended2021Reco_cff') | ||
#process.load('Configuration.Geometry.GeometryExtended2026D41Reco_cff') | ||
process.load('FWCore.MessageService.MessageLogger_cfi') | ||
|
||
if 'MessageLogger' in process.__dict__: | ||
process.MessageLogger.categories.append('HcalGeom') | ||
|
||
process.source = cms.Source("EmptySource") | ||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
|
||
process.hpa = cms.EDAnalyzer("HcalRecNumberingTester") | ||
|
||
process.Timing = cms.Service("Timing") | ||
process.SimpleMemoryCheck = cms.Service("SimpleMemoryCheck") | ||
|
||
process.p1 = cms.Path(process.hpa) |
8 changes: 4 additions & 4 deletions
8
...t/python/runHcalSimNumberingTester_cfg.py → ...on/runHcalSimNumberingDD4hepTester_cfg.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
25 changes: 25 additions & 0 deletions
25
Geometry/HcalCommonData/test/python/runHcalSimNumberingDDDTester_cfg.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,25 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from Configuration.Eras.Era_Run3_cff import Run3 | ||
|
||
process = cms.Process("HcalSimNumberingTest",Run3) | ||
|
||
#process.load('Geometry.HcalCommonData.testPhase2GeometryFine_cff') | ||
#process.load('Geometry.HcalCommonData.hcalParameters_cff') | ||
#process.load('Geometry.HcalCommonData.hcalSimulationParameters_cff') | ||
process.load('Configuration.Geometry.GeometryExtended2021_cff') | ||
process.load('FWCore.MessageService.MessageLogger_cfi') | ||
|
||
if 'MessageLogger' in process.__dict__: | ||
process.MessageLogger.categories.append('HcalGeom') | ||
|
||
process.source = cms.Source("EmptySource") | ||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
|
||
process.hpa = cms.EDAnalyzer("HcalSimNumberingTester") | ||
|
||
process.Timing = cms.Service("Timing") | ||
process.SimpleMemoryCheck = cms.Service("SimpleMemoryCheck") | ||
|
||
process.p1 = cms.Path(process.hpa) |