From 4d4ac6b18ef7677b21df9c55cfe0dfc10f31c488 Mon Sep 17 00:00:00 2001 From: Ianna Osborne Date: Mon, 4 Apr 2016 15:06:16 +0200 Subject: [PATCH] * Remove obsolete customizations --- .../Geometry/python/constantsHCALPostLS2.py | 5 ---- .../Geometry/python/constantsPostLS2.py | 14 --------- .../python/constantsTrackerPostLS2.py | 14 --------- .../Geometry/python/localDBGeometry.py | 30 ------------------- 4 files changed, 63 deletions(-) delete mode 100644 Configuration/Geometry/python/constantsHCALPostLS2.py delete mode 100644 Configuration/Geometry/python/constantsPostLS2.py delete mode 100644 Configuration/Geometry/python/constantsTrackerPostLS2.py delete mode 100644 Configuration/Geometry/python/localDBGeometry.py diff --git a/Configuration/Geometry/python/constantsHCALPostLS2.py b/Configuration/Geometry/python/constantsHCALPostLS2.py deleted file mode 100644 index a9ffff15dd9bd..0000000000000 --- a/Configuration/Geometry/python/constantsHCALPostLS2.py +++ /dev/null @@ -1,5 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -def customise(process): - - return process diff --git a/Configuration/Geometry/python/constantsPostLS2.py b/Configuration/Geometry/python/constantsPostLS2.py deleted file mode 100644 index daca682378d4b..0000000000000 --- a/Configuration/Geometry/python/constantsPostLS2.py +++ /dev/null @@ -1,14 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -import Geometry.TrackerGeometryBuilder.trackerSLHCGeometryConstants_cfi as trackerGeometryConstants_cfi - -def customise(process): - - process.trackerGeometry.trackerGeometryConstants = cms.PSet(trackerGeometryConstants_cfi.trackerGeometryConstants) - process.idealForDigiTrackerGeometry.trackerGeometryConstants = cms.PSet(trackerGeometryConstants_cfi.trackerGeometryConstants) - - process.trackerNumberingGeometry.fromDDD = cms.bool( True ) - process.trackerNumberingGeometry.layerNumberPXB = cms.uint32(18) - process.trackerNumberingGeometry.totalBlade = cms.uint32(56) - - return process diff --git a/Configuration/Geometry/python/constantsTrackerPostLS2.py b/Configuration/Geometry/python/constantsTrackerPostLS2.py deleted file mode 100644 index daca682378d4b..0000000000000 --- a/Configuration/Geometry/python/constantsTrackerPostLS2.py +++ /dev/null @@ -1,14 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -import Geometry.TrackerGeometryBuilder.trackerSLHCGeometryConstants_cfi as trackerGeometryConstants_cfi - -def customise(process): - - process.trackerGeometry.trackerGeometryConstants = cms.PSet(trackerGeometryConstants_cfi.trackerGeometryConstants) - process.idealForDigiTrackerGeometry.trackerGeometryConstants = cms.PSet(trackerGeometryConstants_cfi.trackerGeometryConstants) - - process.trackerNumberingGeometry.fromDDD = cms.bool( True ) - process.trackerNumberingGeometry.layerNumberPXB = cms.uint32(18) - process.trackerNumberingGeometry.totalBlade = cms.uint32(56) - - return process diff --git a/Configuration/Geometry/python/localDBGeometry.py b/Configuration/Geometry/python/localDBGeometry.py deleted file mode 100644 index 55b7a0657ad3e..0000000000000 --- a/Configuration/Geometry/python/localDBGeometry.py +++ /dev/null @@ -1,30 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -def customiseDBRecords(process): - - process.PoolDBESSourceGeometry = cms.ESSource("PoolDBESSource", - process.CondDBSetup, - timetype = cms.string('runnumber'), - toGet = cms.VPSet( - #cms.PSet(record = cms.string('GeometryFileRcd'), tag = cms.string('XMLFILE_Geometry_Extended_61YV5_mc')), - cms.PSet(record = cms.string('PEcalBarrelRcd'), tag = cms.string('EBRECO_Geometry_61YV5')), - cms.PSet(record = cms.string('PEcalEndcapRcd'), tag = cms.string('EERECO_Geometry_61YV5')), - cms.PSet(record = cms.string('PEcalPreshowerRcd'), tag = cms.string('EPRECO_Geometry_61YV5')), - cms.PSet(record = cms.string('PHcalRcd'), tag = cms.string('HCALRECO_Geometry_61YV5')), - cms.PSet(record = cms.string('PCaloTowerRcd'), tag = cms.string('CTRECO_Geometry_61YV5')), - cms.PSet(record = cms.string('PZdcRcd'), tag = cms.string('ZDCRECO_Geometry_61YV5')), - cms.PSet(record = cms.string('PCastorRcd'), tag = cms.string('CASTORRECO_Geometry_61YV5')) -## cms.PSet(record = cms.string('CSCRecoGeometryRcd'), tag = cms.string('CSCRECO_Geometry_61YV5')), -## cms.PSet(record = cms.string('CSCRecoDigiParametersRcd'),tag = cms.string('CSCRECODIGI_Geometry_61YV5')), -## cms.PSet(record = cms.string('DTRecoGeometryRcd'), tag = cms.string('DTRECO_Geometry_61YV5')), -## cms.PSet(record = cms.string('IdealGeometryRecord'), tag = cms.string('TKRECO_Geometry_61YV5')), -## cms.PSet(record = cms.string('PGeometricDetExtraRcd'), tag = cms.string('TKExtra_Geometry_61YV5')), -## cms.PSet(record = cms.string('PZdcRcd'), tag = cms.string('ZDCRECO_Geometry_61YV5')), -## cms.PSet(record = cms.string('RPCRecoGeometryRcd'), tag = cms.string('RPCRECO_Geometry_61YV5')) - ), - connect = cms.string('sqlite_file:myfile.db') - ) - - process.es_prefer_geometry = cms.ESPrefer( "PoolDBESSource", "PoolDBESSourceGeometry" ) - - return process