forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #79 from cms-sw/CMSSW_6_2_X_SLHC
Cmssw 6 2 x slhc
- Loading branch information
Showing
18 changed files
with
227 additions
and
78 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
Fireworks/Geometry/python/dumpFWRecoGeometry2019WithGem_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,34 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
process = cms.Process("DUMP") | ||
process.load('Configuration.Geometry.GeometryExtended2019_cff') | ||
process.load('Configuration.Geometry.GeometryExtended2019Reco_cff') | ||
|
||
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') | ||
from Configuration.AlCa.GlobalTag import GlobalTag | ||
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgrade2019', '') | ||
|
||
process.add_(cms.ESProducer("FWRecoGeometryESProducer")) | ||
|
||
#Adding Timing service: | ||
process.Timing = cms.Service("Timing") | ||
process.options = cms.untracked.PSet( | ||
wantSummary = cms.untracked.bool(True) | ||
) | ||
|
||
process.source = cms.Source("EmptySource") | ||
|
||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
process.dump = cms.EDAnalyzer("DumpFWRecoGeometry", | ||
level = cms.untracked.int32(1) | ||
) | ||
|
||
process.p = cms.Path(process.dump) | ||
|
||
# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.combinedCustoms | ||
from SLHCUpgradeSimulations.Configuration.combinedCustoms import cust_2019WithGem | ||
|
||
#call to customisation function cust_2019WithGem imported from SLHCUpgradeSimulations.Configuration.combinedCustoms | ||
process = cust_2019WithGem(process) |
35 changes: 35 additions & 0 deletions
35
Fireworks/Geometry/python/dumpFWRecoGeometry2023Muon_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,35 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
process = cms.Process("DUMP") | ||
process.load('Configuration.Geometry.GeometryExtended2023MuonReco_cff') | ||
process.load('Configuration.Geometry.GeometryExtended2023Muon_cff') | ||
|
||
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') | ||
from Configuration.AlCa.GlobalTag import GlobalTag | ||
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgradePLS3', '') | ||
|
||
process.add_(cms.ESProducer("FWRecoGeometryESProducer")) | ||
|
||
#Adding Timing service: | ||
process.Timing = cms.Service("Timing") | ||
process.options = cms.untracked.PSet( | ||
wantSummary = cms.untracked.bool(True) | ||
) | ||
|
||
process.source = cms.Source("EmptySource") | ||
|
||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
process.dump = cms.EDAnalyzer("DumpFWRecoGeometry", | ||
level = cms.untracked.int32(1) | ||
) | ||
|
||
process.p = cms.Path(process.dump) | ||
|
||
# Automatic addition of the customisation function from SLHCUpgradeSimulations.Configuration.combinedCustoms | ||
from SLHCUpgradeSimulations.Configuration.combinedCustoms import cust_2023Muon | ||
|
||
#call to customisation function cust_2023Muon imported from SLHCUpgradeSimulations.Configuration.combinedCustoms | ||
process = cust_2023Muon(process) | ||
|
20 changes: 20 additions & 0 deletions
20
Fireworks/Geometry/python/dumpSimGeometry2019WithGem_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,20 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
process = cms.Process("DUMP") | ||
process.load('Configuration.Geometry.GeometryExtended2019Reco_cff') | ||
process.load('Configuration.Geometry.GeometryExtended2019_cff') | ||
|
||
process.source = cms.Source("EmptySource") | ||
|
||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
|
||
process.add_(cms.ESProducer("TGeoMgrFromDdd", | ||
verbose = cms.untracked.bool(False), | ||
level = cms.untracked.int32(14) | ||
)) | ||
|
||
process.dump = cms.EDAnalyzer("DumpSimGeometry") | ||
|
||
process.p = cms.Path(process.dump) |
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,20 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
process = cms.Process("DUMP") | ||
process.load('Configuration.Geometry.GeometryExtended2023MuonReco_cff') | ||
process.load('Configuration.Geometry.GeometryExtended2023Muon_cff') | ||
|
||
process.source = cms.Source("EmptySource") | ||
|
||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
|
||
process.add_(cms.ESProducer("TGeoMgrFromDdd", | ||
verbose = cms.untracked.bool(False), | ||
level = cms.untracked.int32(14) | ||
)) | ||
|
||
process.dump = cms.EDAnalyzer("DumpSimGeometry") | ||
|
||
process.p = cms.Path(process.dump) |
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
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
Oops, something went wrong.