-
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.
Fixes and additions for DB payload creation
- Loading branch information
Showing
6 changed files
with
145 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from Configuration.StandardSequences.Eras import eras | ||
|
||
process = cms.Process("Demo",eras.run3_GEM) | ||
|
||
|
||
|
||
process.load('Configuration.StandardSequences.GeometryDB_cff') | ||
process.load('Configuration.StandardSequences.GeometryRecoDB_cff') | ||
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') | ||
process.XMLFromDBSource.label = cms.string('Extended') | ||
from Configuration.AlCa.GlobalTag import GlobalTag | ||
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgrade2021', '') | ||
|
||
from Configuration.AlCa.autoCond import autoCond | ||
process.load('Geometry.MuonNumbering.muonNumberingInitialization_cfi') | ||
|
||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
|
||
process.load("Alignment.CommonAlignmentProducer.FakeAlignmentSource_cfi") | ||
process.preferFakeAlign = cms.ESPrefer("FakeAlignmentSource") | ||
|
||
process.source = cms.Source("EmptySource") | ||
|
||
process.test = cms.EDAnalyzer("GEMGeometryAnalyzer") | ||
|
||
process.p = cms.Path(process.test) | ||
|
||
### TO ACTIVATE LogTrace NEED TO COMPILE IT WITH: | ||
### ----------------------------------------------------------- | ||
### --> scram b -j8 USER_CXXFLAGS="-DEDM_ML_DEBUG" | ||
### Make sure that you first cleaned your CMSSW version: | ||
### --> scram b clean | ||
### before issuing the scram command above | ||
############################################################### | ||
process.load("FWCore.MessageLogger.MessageLogger_cfi") | ||
# | ||
# | ||
process.MessageLogger.debugModules = cms.untracked.vstring("*") | ||
process.MessageLogger.cerr.enable = False | ||
process.MessageLogger.files.junk = dict() | ||
process.MessageLogger.cout = cms.untracked.PSet( | ||
enable = cms.untracked.bool(True), | ||
threshold = cms.untracked.string("DEBUG"), | ||
default = cms.untracked.PSet( limit = cms.untracked.int32(0) ), | ||
FwkReport = cms.untracked.PSet( limit = cms.untracked.int32(-1) ), | ||
# GEMGeometryBuilderFromDDD = cms.untracked.PSet( limit = cms.untracked.int32(-1) ), | ||
# GEMNumberingScheme = cms.untracked.PSet( limit = cms.untracked.int32(-1) ), | ||
) |
82 changes: 82 additions & 0 deletions
82
Geometry/GEMGeometry/test/testGEMGeometryFromLocalDB_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,82 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from Configuration.StandardSequences.Eras import eras | ||
|
||
process = cms.Process("Demo",eras.run3_GEM) | ||
|
||
|
||
|
||
process.load('Configuration.StandardSequences.GeometryDB_cff') | ||
process.load('Configuration.StandardSequences.GeometryRecoDB_cff') | ||
process.load('CondCore.CondDB.CondDB_cfi') | ||
process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') | ||
process.XMLFromDBSource.label = cms.string('Extended') | ||
from Configuration.AlCa.GlobalTag import GlobalTag | ||
process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:upgrade2021', '') | ||
|
||
from Configuration.AlCa.autoCond import autoCond | ||
process.load('Geometry.MuonNumbering.muonNumberingInitialization_cfi') | ||
|
||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
|
||
process.load("Alignment.CommonAlignmentProducer.FakeAlignmentSource_cfi") | ||
process.preferFakeAlign = cms.ESPrefer("FakeAlignmentSource") | ||
|
||
process.source = cms.Source("EmptySource") | ||
|
||
|
||
|
||
process.maxEvents = cms.untracked.PSet( | ||
input = cms.untracked.int32(1) | ||
) | ||
|
||
process.CondDB.timetype = cms.untracked.string('runnumber') | ||
process.CondDB.connect = cms.string('sqlite_file:myfile.db') | ||
process.PoolDBESSourceGeometry = cms.ESSource("PoolDBESSource", | ||
process.CondDB, | ||
toGet = cms.VPSet(cms.PSet(record = cms.string('GeometryFileRcd'),tag = cms.string('XMLFILE_Geometry_TagXX_Extended2021_mc')), | ||
cms.PSet(record = cms.string('IdealGeometryRecord'),tag = cms.string('TKRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('PEcalBarrelRcd'), tag = cms.string('EBRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('PEcalEndcapRcd'), tag = cms.string('EERECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('PEcalPreshowerRcd'),tag = cms.string('EPRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('PHcalRcd'), tag = cms.string('HCALRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('PCaloTowerRcd'), tag = cms.string('CTRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('PZdcRcd'), tag = cms.string('ZDCRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('PCastorRcd'), tag = cms.string('CASTORRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('CSCRecoGeometryRcd'),tag = cms.string('CSCRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('CSCRecoDigiParametersRcd'),tag = cms.string('CSCRECODIGI_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('DTRecoGeometryRcd'),tag = cms.string('DTRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('RPCRecoGeometryRcd'),tag = cms.string('RPCRECO_Geometry_TagXX')), | ||
cms.PSet(record = cms.string('GEMRecoGeometryRcd'),tag = cms.string('GEMRECO_Geometry_TagXX')) | ||
) | ||
) | ||
process.es_prefer_geometry = cms.ESPrefer( "PoolDBESSource", "PoolDBESSourceGeometry" ) | ||
|
||
|
||
process.test = cms.EDAnalyzer("GEMGeometryAnalyzer") | ||
|
||
process.p = cms.Path(process.test) | ||
|
||
### TO ACTIVATE LogTrace NEED TO COMPILE IT WITH: | ||
### ----------------------------------------------------------- | ||
### --> scram b -j8 USER_CXXFLAGS="-DEDM_ML_DEBUG" | ||
### Make sure that you first cleaned your CMSSW version: | ||
### --> scram b clean | ||
### before issuing the scram command above | ||
############################################################### | ||
process.load("FWCore.MessageLogger.MessageLogger_cfi") | ||
# | ||
# | ||
process.MessageLogger.debugModules = cms.untracked.vstring("*") | ||
process.MessageLogger.cerr.enable = False | ||
process.MessageLogger.files.junk = dict() | ||
process.MessageLogger.cout = cms.untracked.PSet( | ||
enable = cms.untracked.bool(True), | ||
threshold = cms.untracked.string("DEBUG"), | ||
default = cms.untracked.PSet( limit = cms.untracked.int32(0) ), | ||
FwkReport = cms.untracked.PSet( limit = cms.untracked.int32(-1) ), | ||
# GEMGeometryBuilderFromDDD = cms.untracked.PSet( limit = cms.untracked.int32(-1) ), | ||
# GEMNumberingScheme = cms.untracked.PSet( limit = cms.untracked.int32(-1) ), | ||
) |
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