Skip to content

Commit

Permalink
Introduce eras in the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunanda committed Jul 24, 2021
1 parent 08ef84d commit e763acb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# only a temporary hack, since the material description has
# been updated in release via XML and the DB is behind.
if not readGeometryFromDB:
process.load('Configuration.Geometry.GeometryExtended2026D77Reco_cff')
process.load('Configuration.Geometry.GeometryExtended2021Reco_cff')
else:
# GlobalTag and geometry via GT
process.load('Configuration.Geometry.GeometrySimDB_cff')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

import FWCore.ParameterSet.Config as cms

process = cms.Process("Geometry")
from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
process = cms.Process("Geometry",phase2_common)

readGeometryFromDB = False

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

import FWCore.ParameterSet.Config as cms

process = cms.Process("Geometry")
from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
process = cms.Process("Geometry",phase2_common)

readGeometryFromDB = False

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

import FWCore.ParameterSet.Config as cms

process = cms.Process("Geometry")
from Configuration.Eras.Modifier_run2_common_cff import run2_common
process = cms.Process("Geometry",run2_common)

readGeometryFromDB = False

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import FWCore.ParameterSet.Config as cms
from FWCore.ParameterSet.VarParsing import VarParsing

process = cms.Process("Geometry")
from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
process = cms.Process("Geometry",phase2_common)

process.load('FWCore.MessageService.MessageLogger_cfi')
process.MessageLogger.files.debugTrackingMaterialProducer = dict()
Expand Down

0 comments on commit e763acb

Please sign in to comment.